/** Shopify CDN: Minification failed

Line 32:0 All "@import" rules must come first

**/
/* ==========================================================================
   MYPAPILLON THEME STYLES (Based on mokuppapilon.png)
   ========================================================================== */

:root {
  --mp-primary: #1e4a24;
  --mp-primary-dark: #16381b;
  --mp-primary-light: #2c6333;
  --mp-primary-accent: #52983b;
  --mp-gold: #c29958;
  --mp-bg-warm: #f6f4ee;
  --mp-bg-sand: #ece7db;
  --mp-card-bg: #ffffff;
  --mp-text-main: #1d251e;
  --mp-text-muted: #667067;
  --mp-border-color: #e5e9e5;
  --mp-radius-sm: 6px;
  --mp-radius-md: 10px;
  --mp-radius-lg: 16px;
  --mp-radius-full: 9999px;
  --mp-shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
  --mp-shadow-card: 0 6px 18px rgba(0, 0, 0, 0.06);
  --mp-font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

body, html {
  font-family: var(--mp-font-family);
  color: var(--mp-text-main);
  background-color: #fdfdfd;
}

/* --------------------------------------------------------------------------
   1. TOP ANNOUNCEMENT / TRUST BAR
   -------------------------------------------------------------------------- */
.mp-top-bar {
  background-color: var(--mp-primary);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0.75rem 0;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mp-top-bar__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.mp-top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #f0fdf4;
  white-space: nowrap;
}

.mp-top-bar__item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}

@media screen and (max-width: 989px) {
  .mp-top-bar {
    display: none; /* In mobile mockup, top bar is hidden or condensed */
  }
}

/* --------------------------------------------------------------------------
   2. MAIN HEADER (DESKTOP)
   -------------------------------------------------------------------------- */
.mp-header-desktop {
  background-color: #ffffff;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--mp-border-color);
}

.mp-header-desktop__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
}

/* Logo */
.mp-brand-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  color: var(--mp-primary);
}

.mp-brand-logo__icon {
  width: 46px;
  height: 46px;
  color: var(--mp-primary);
}

.mp-brand-logo__text {
  display: flex;
  flex-direction: column;
}

.mp-brand-logo__name {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--mp-primary);
  line-height: 1.1;
  text-transform: uppercase;
}

.mp-brand-logo__tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: #4b5563;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* Header Search */
.mp-header-search {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}

.mp-header-search__form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.mp-header-search__input {
  width: 100%;
  padding: 1.1rem 5.5rem 1.1rem 1.8rem;
  font-size: 1.35rem;
  font-family: inherit;
  border: 1.5px solid #d1d5db;
  border-radius: var(--mp-radius-sm);
  outline: none;
  background-color: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--mp-text-main);
}

.mp-header-search__input:focus {
  border-color: var(--mp-primary);
  box-shadow: 0 0 0 3px rgba(30, 74, 36, 0.1);
}

.mp-header-search__input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.mp-header-search__button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: 44px;
  background-color: var(--mp-primary);
  border: none;
  border-radius: 4px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.mp-header-search__button:hover {
  background-color: var(--mp-primary-light);
}

.mp-header-search__button svg {
  width: 18px;
  height: 18px;
}

/* Header User Actions */
.mp-header-actions {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.mp-header-action-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #374151;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}

.mp-header-action-item:hover {
  color: var(--mp-primary);
}

.mp-header-action-item svg {
  width: 20px;
  height: 20px;
}

.mp-header-action-item__badge {
  background-color: var(--mp-primary);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  left: 12px;
}

/* --------------------------------------------------------------------------
   3. NAVIGATION BAR (DESKTOP)
   -------------------------------------------------------------------------- */
.mp-nav-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--mp-border-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.mp-nav-bar__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* All Categories Button */
.mp-all-categories-btn {
  background-color: var(--mp-primary);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  padding: 1.2rem 2.2rem;
  border-radius: var(--mp-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s;
  position: relative;
}

.mp-all-categories-btn:hover {
  background-color: var(--mp-primary-light);
}

/* Nav Menu Links */
.mp-nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}

.mp-nav-menu__item {
  position: relative;
}

.mp-nav-menu__link {
  display: inline-block;
  padding: 1.4rem 0.4rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #374151;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.mp-nav-menu__link:hover,
.mp-nav-menu__link.active {
  color: var(--mp-primary);
}

.mp-nav-menu__link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--mp-primary);
  border-radius: 3px 3px 0 0;
}

/* --------------------------------------------------------------------------
   4. MOBILE HEADER
   -------------------------------------------------------------------------- */
.mp-header-mobile {
  display: none;
}

@media screen and (max-width: 989px) {
  .mp-header-desktop,
  .mp-nav-bar {
    display: none;
  }

  .mp-header-mobile {
    display: block;
    background-color: #ffffff;
  }

  .mp-header-mobile__top {
    background-color: var(--mp-primary);
    padding: 1.2rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mp-header-mobile__toggle {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
  }

  .mp-header-mobile__toggle svg {
    width: 26px;
    height: 26px;
  }

  .mp-header-mobile__logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    text-decoration: none;
  }

  .mp-header-mobile__logo svg {
    width: 32px;
    height: 32px;
    color: #a3e635; /* Lime accent like mockup */
  }

  .mp-header-mobile__logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.1;
    color: #ffffff;
  }

  .mp-header-mobile__logo-sub {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #d1fae5;
  }

  .mp-header-mobile__cart {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem;
  }

  .mp-header-mobile__cart svg {
    width: 26px;
    height: 26px;
  }

  .mp-header-mobile__cart-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #ffffff;
    color: var(--mp-primary);
    font-size: 1rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mp-header-mobile__search {
    padding: 1rem 1.6rem;
    background-color: #f8fafc;
    border-bottom: 1px solid var(--mp-border-color);
  }
}

/* --------------------------------------------------------------------------
   5. HERO BANNER
   -------------------------------------------------------------------------- */
.mp-hero-section {
  background-color: var(--mp-bg-warm);
  background-image: radial-gradient(#e7ded0 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 4rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}

.mp-hero__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.mp-hero__subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.mp-hero__title {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--mp-primary);
  margin: 0 0 1.6rem 0;
  text-transform: uppercase;
}

.mp-hero__title span {
  display: block;
}

.mp-hero__description {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 2.8rem;
  font-weight: 500;
}

/* 4 Checklist Features */
.mp-hero__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 2rem;
  margin-bottom: 3.5rem;
}

.mp-hero__feature-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
}

.mp-hero__feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #dcfce7;
  color: var(--mp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mp-hero__feature-icon svg {
  width: 13px;
  height: 13px;
  stroke-width: 3px;
}

/* Hero CTA Buttons */
.mp-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.mp-btn-primary {
  background-color: var(--mp-primary);
  color: #ffffff !important;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1.4rem 3.2rem;
  border-radius: var(--mp-radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: 2px solid var(--mp-primary);
  box-shadow: 0 4px 14px rgba(30, 74, 36, 0.25);
  cursor: pointer;
}

.mp-btn-primary:hover {
  background-color: var(--mp-primary-light);
  border-color: var(--mp-primary-light);
  transform: translateY(-1px);
}

.mp-btn-secondary {
  background-color: #ffffff;
  color: #1f2937 !important;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1.4rem 2.8rem;
  border-radius: var(--mp-radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: 1.5px solid #9ca3af;
  cursor: pointer;
}

.mp-btn-secondary:hover {
  border-color: var(--mp-primary);
  color: var(--mp-primary) !important;
  background-color: #f9fafb;
}

/* Hero Visual / Product Image */
.mp-hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: var(--mp-radius-lg);
  overflow: visible;
}

.mp-hero__main-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--mp-radius-lg);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}

/* 100% Semulajadi Badge */
.mp-hero__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 84px;
  height: 84px;
  background-color: var(--mp-primary);
  border: 3px solid #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 8px;
  animation: mp-pulse 3s infinite ease-in-out;
}

.mp-hero__badge-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 2px;
}

.mp-hero__badge-text {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@keyframes mp-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Dots for mobile hero */
.mp-hero__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.mp-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
}

.mp-hero__dot.active {
  background-color: var(--mp-primary);
  width: 22px;
  border-radius: 4px;
}

@media screen and (max-width: 989px) {
  .mp-hero-section {
    padding: 2.5rem 0 3.5rem 0;
  }

  .mp-hero__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .mp-hero__subtitle {
    font-size: 1.3rem;
  }

  .mp-hero__title {
    font-size: 2.8rem;
  }

  .mp-hero__description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .mp-hero__features {
    display: none;
  }

  .mp-hero__actions {
    justify-content: center;
  }

  .mp-btn-secondary {
    display: none;
  }

  .mp-btn-primary {
    width: 100%;
    max-width: 280px;
    padding: 1.2rem 2rem;
  }

  .mp-hero__dots {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   6. TRUST FEATURES BAR (FLOATING STRIP)
   -------------------------------------------------------------------------- */
.mp-trust-section {
  position: relative;
  margin-top: -3.5rem;
  z-index: 10;
  padding: 0 2rem;
}

.mp-trust__container {
  max-width: 1320px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: var(--mp-radius-lg);
  box-shadow: var(--mp-shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 2.4rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mp-trust__item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0.5rem 1rem;
}

.mp-trust__item:not(:last-child) {
  border-right: 1px solid #f1f5f9;
}

.mp-trust__icon {
  width: 42px;
  height: 42px;
  color: var(--mp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mp-trust__icon svg {
  width: 32px;
  height: 32px;
}

.mp-trust__info {
  display: flex;
  flex-direction: column;
}

.mp-trust__title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 2px 0;
}

.mp-trust__subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  margin: 0;
}

@media screen and (max-width: 989px) {
  .mp-trust-section {
    margin-top: 1.5rem;
    padding: 0 1.2rem;
  }

  .mp-trust__container {
    padding: 1.6rem 1rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    border-radius: var(--mp-radius-md);
  }

  .mp-trust__item {
    flex-direction: column;
    text-align: center;
    padding: 0.4rem 0.2rem;
    gap: 0.6rem;
  }

  .mp-trust__item:not(:last-child) {
    border-right: none;
  }

  .mp-trust__icon svg {
    width: 24px;
    height: 24px;
  }

  .mp-trust__title {
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .mp-trust__subtitle {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   7. POPULAR CATEGORIES (KATEGORI POPULAR)
   -------------------------------------------------------------------------- */
.mp-categories-section {
  padding: 6rem 0 4rem 0;
}

.mp-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.mp-section-icon {
  width: 28px;
  height: 28px;
  color: var(--mp-primary);
  margin: 0 auto 0.6rem auto;
}

.mp-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #111827;
  text-transform: uppercase;
  margin: 0;
}

.mp-categories__grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.mp-category-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.mp-category-card__image-box {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border-radius: var(--mp-radius-lg);
  overflow: hidden;
  background-color: #f1f5f9;
  box-shadow: var(--mp-shadow-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mp-category-card:hover .mp-category-card__image-box {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mp-category-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mp-category-card:hover .mp-category-card__image {
  transform: scale(1.05);
}

.mp-category-card__label-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: #1f2937;
  padding: 0.6rem 1.4rem;
  border-radius: var(--mp-radius-sm);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mp-category-card__btn {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  background-color: #f3f4f6;
  border-radius: var(--mp-radius-sm);
  font-size: 1.3rem;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  width: 100%;
}

.mp-category-card:hover .mp-category-card__btn {
  background-color: #e5e7eb;
  color: var(--mp-primary);
}

@media screen and (max-width: 989px) {
  .mp-categories-section {
    padding: 3.5rem 0 2rem 0;
  }

  .mp-section-title {
    font-size: 1.8rem;
  }

  .mp-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
    padding: 0 1.2rem;
  }

  .mp-category-card__btn {
    display: none;
  }

  .mp-category-card__label-badge {
    bottom: 8px;
    left: 8px;
    right: 8px;
    text-align: center;
    background-color: rgba(30, 74, 36, 0.88);
    color: #ffffff;
    font-size: 1.05rem;
    padding: 0.5rem 0.8rem;
  }
}

/* --------------------------------------------------------------------------
   8. BEST SELLER PRODUCTS WITH TABS (PRODUK TERLARIS)
   -------------------------------------------------------------------------- */
.mp-bestseller-section {
  padding: 4rem 0 6rem 0;
}

.mp-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.mp-tab-btn {
  padding: 0.7rem 2.2rem;
  font-size: 1.35rem;
  font-weight: 600;
  border-radius: var(--mp-radius-full);
  border: 1px solid #e5e7eb;
  background-color: #f3f4f6;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.mp-tab-btn.active,
.mp-tab-btn:hover {
  background-color: var(--mp-primary);
  color: #ffffff;
  border-color: var(--mp-primary);
}

.mp-products-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

/* Product Card */
.mp-product-card {
  background-color: #ffffff;
  border-radius: var(--mp-radius-lg);
  border: 1px solid var(--mp-border-color);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mp-shadow-card);
}

.mp-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--mp-radius-sm);
  text-transform: uppercase;
}

.mp-badge-bestseller {
  background-color: var(--mp-primary);
  color: #ffffff;
}

.mp-badge-discount {
  background-color: #dc2626;
  color: #ffffff;
}

.mp-badge-new {
  background-color: #16a34a;
  color: #ffffff;
}

.mp-product-card__wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}

.mp-product-card__wishlist:hover {
  color: #dc2626;
  background-color: #ffffff;
  transform: scale(1.1);
}

.mp-product-card__image-wrap {
  width: 100%;
  padding-top: 100%;
  position: relative;
  margin-bottom: 1.4rem;
  border-radius: var(--mp-radius-md);
  overflow: hidden;
  background-color: #f8fafc;
}

.mp-product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.mp-product-card__category {
  font-size: 1.15rem;
  color: #9ca3af;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

.mp-product-card__title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mp-product-card__title:hover {
  color: var(--mp-primary);
}

.mp-product-card__price-box {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-top: auto;
  margin-bottom: 1.2rem;
}

.mp-product-card__price-current {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--mp-primary);
}

.mp-product-card__price-original {
  font-size: 1.3rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.mp-product-card__btn {
  background-color: #f3f4f6;
  color: var(--mp-primary);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 1rem;
  border-radius: var(--mp-radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
}

.mp-product-card__btn:hover {
  background-color: var(--mp-primary);
  color: #ffffff;
}

@media screen and (max-width: 989px) {
  .mp-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 0 1.2rem;
  }

  .mp-product-card {
    padding: 1rem;
  }

  .mp-product-card__title {
    font-size: 1.25rem;
  }

  .mp-product-card__price-current {
    font-size: 1.45rem;
  }
}
