/* =====================================================
   DF IMPORTS — Design System
   ===================================================== */

:root {
  /* Palette */
  --bg-page:        #F7F4EF;
  --bg-surface:     #FFFFFF;
  --text-primary:   #1A1714;
  --text-secondary: #6B655C;
  --border-subtle:  #E8E2D8;

  --gold-primary:   #C9962B;
  --gold-light:     #D4AF6A;
  --gold-dark:      #A87617;

  --dark-contrast:  #0F1210;

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', sans-serif;

  /* Misc */
  --shadow-sm:  0 2px 8px rgba(26,23,20,.06);
  --shadow-md:  0 8px 28px rgba(26,23,20,.10);
  --shadow-lg:  0 20px 50px rgba(26,23,20,.15);
  --radius:     10px;
  --transition: .22s ease;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--sans);
  line-height: 1.55;
}
a  { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
img { display: block; max-width: 100%; }
button, input { font: inherit; cursor: pointer; }

.container {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 80px;
  background: rgba(247, 244, 239, .95);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand strong {
  display: block;
  font: 700 19px/1 var(--serif);
  letter-spacing: .7px;
  color: var(--text-primary);
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 22px;
}
.main-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 30px 0;
  transition: color var(--transition);
}
.main-nav a:hover,
.main-nav .is-active { color: var(--gold-dark); }
.main-nav .is-active::after {
  content: "";
  position: absolute;
  bottom: 19px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-primary);
}

/* Header tools */
.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-box {
  width: 250px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  transition: border-color var(--transition);
}
.search-box:focus-within { border-color: var(--gold-primary); }
.search-box input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  font-size: 12px;
  color: var(--text-primary);
}
.search-box input::placeholder { color: #aaa; }

.icon-button,
.menu-toggle {
  border: 0;
  background: transparent;
  color: var(--text-primary);
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.icon-button:hover,
.menu-toggle:hover {
  background: rgba(201, 150, 43, .08);
  color: var(--gold-dark);
}

.cart-button { position: relative; }
.cart-count {
  position: absolute;
  top: 0;
  right: -2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--gold-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  pointer-events: none;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1);
}
.cart-count.bump { transform: scale(1.35); }

.menu-toggle { display: none; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  overflow: hidden;
  background: var(--bg-page);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

/* Left — copy (light) */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--gold-primary);
  border-radius: 20px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 20px 0 0;
  font: 700 clamp(34px, 3.6vw, 56px)/1.12 var(--serif);
  letter-spacing: -.3px;
}
.hero h1 em {
  color: var(--gold-primary);
  font-style: normal;
}

.hero-copy > p {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Right — dark visual panel */
.hero-visual {
  position: relative;
  background: var(--dark-contrast);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .92;
  transition: transform .6s ease;
}
.hero-visual:hover img { transform: scale(1.03); }

/* Gold accent line between panels */
.hero-visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  height: 76%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold-primary) 30%, var(--gold-light) 70%, transparent);
  z-index: 1;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
  border: 0;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.button-primary {
  background: var(--gold-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(201, 150, 43, .28);
}
.button-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(168, 118, 23, .32);
}
.button-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1.5px solid var(--border-subtle);
}
.button-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

/* =====================================================
   BENEFITS BAR
   ===================================================== */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}
.benefits article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  border-right: 1px solid var(--border-subtle);
}
.benefits article:last-child { border-right: 0; }
.benefits i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--gold-primary);
  font-style: normal;
}
.benefits p { display: grid; gap: 3px; }
.benefits strong { font-size: 12px; font-weight: 600; }
.benefits span  { color: var(--text-secondary); font-size: 10.5px; line-height: 1.4; }

/* =====================================================
   CATEGORY GRID
   ===================================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.section-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
}
.section-label h2 {
  font: 700 24px/1 var(--serif);
}
.section-label a {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  transition: opacity var(--transition);
}
.section-label a:hover { opacity: .7; }

.category-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Uniform top image/icon band — 140px */
.card-top {
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.category-card:hover .card-top img { transform: scale(1.06); }

/* Dark bg overlay for photo cards */
.card-top-dark {
  background: var(--dark-contrast);
}
.card-top-dark img {
  opacity: .88;
}

/* Icon cards — gold solid top */
.card-top-gold {
  background: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-top-gold svg {
  width: 44px;
  height: 44px;
  stroke: #fff;
  opacity: .95;
}

/* Card body */
.card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h2 {
  font: 500 16px/1.2 var(--sans);
  color: var(--text-primary);
}
.card-body p {
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
}
.card-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  color: var(--gold-primary);
  font-size: 13px;
  font-weight: 600;
  transition: gap var(--transition);
}
.category-card:hover .card-link { gap: 9px; }

/* =====================================================
   MOST SOLD SECTION
   ===================================================== */
.selling-section {
  margin-top: 60px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-heading h2 {
  font: 700 26px/1 var(--serif);
}
.section-heading a {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  transition: opacity var(--transition);
}
.section-heading a:hover { opacity: .7; }

.selling-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 20px;
  align-items: start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Product card */
.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--dark-contrast);
  color: var(--gold-light);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  z-index: 1;
}

.product-image {
  height: 160px;
  background: #F0EDE7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}
.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .35s ease;
}
.product-card:hover .product-image img { transform: scale(1.07); }

.product-info {
  padding: 14px 14px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-info h3 {
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
  min-height: 34px;
}
.product-price {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-price strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-dark);
}
.product-price small {
  color: var(--text-secondary);
  font-size: 9.5px;
  font-weight: 500;
}

.add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-top: 12px;
  padding: 11px 0;
  border: 0;
  border-top: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--gold-dark);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2px;
  transition: background var(--transition), color var(--transition);
  border-radius: 0 0 var(--radius) var(--radius);
}
.add-to-cart:hover {
  background: var(--gold-primary);
  color: #fff;
  border-top-color: var(--gold-primary);
}
.add-to-cart svg { flex-shrink: 0; }

/* =====================================================
   CATALOG
   ===================================================== */
.catalog-page {
  padding-top: 64px;
  padding-bottom: 80px;
}
.catalog-heading {
  text-align: center;
}
.catalog-heading .eyebrow {
  width: fit-content;
}
.catalog-heading h1 {
  margin-top: 16px;
  font: 700 38px/1 var(--serif);
}
.catalog-heading p {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 14px;
}
.catalog-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 32px 0;
}
.catalog-filter {
  min-width: 112px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.catalog-filter:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}
.catalog-filter.is-active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #fff;
}
.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.catalog-product-placeholder {
  min-height: 170px;
  padding: 18px;
  display: grid;
  place-items: center;
  background: var(--dark-contrast);
  color: var(--gold-light);
  text-align: center;
}
.catalog-product-placeholder span {
  max-width: 18ch;
  font: 600 19px/1.25 var(--serif);
}
.catalog-product-card .product-info h3 {
  min-height: 38px;
  font-size: 13px;
}

/* Brands sidebar */
.brands-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}
.brands-card h2 {
  font: 700 18px/1.2 var(--serif);
}
.brand-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.brand-list strong {
  min-height: 38px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-family: var(--serif);
  font-size: 14px;
  transition: border-color var(--transition), color var(--transition);
}
.brand-list strong:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}
.brand-list strong:nth-child(even) {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .5px;
}

/* =====================================================
   TESTIMONIALS — Full-width dark section
   ===================================================== */
.testimonials {
  margin-top: 80px;
  background: var(--dark-contrast);
  padding: 72px 0 80px;
}

.testimonials-inner {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials-header .section-eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.testimonials-header h2 {
  font: 700 clamp(24px, 3vw, 34px)/1.15 var(--serif);
  color: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(212, 175, 106, .18);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), background var(--transition);
}
.testimonial-item:hover {
  border-color: rgba(212, 175, 106, .4);
  background: rgba(255, 255, 255, .06);
}

.stars {
  color: var(--gold-primary);
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-item blockquote {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testimonial-item cite {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-item cite::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--gold-primary);
  flex-shrink: 0;
}

/* =====================================================
   CONTACT STRIP
   ===================================================== */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 56px;
  padding: 22px 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-strip article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-right: 1px solid var(--border-subtle);
}
.contact-strip article:first-child { padding-left: 0; }
.contact-strip article:last-child  { border-right: 0; padding-right: 0; }
.contact-strip i {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--gold-primary);
  font-style: normal;
}
.contact-strip p  { display: grid; gap: 3px; }
.contact-strip strong { font-size: 12px; font-weight: 600; }
.contact-strip span   { color: var(--text-secondary); font-size: 10.5px; line-height: 1.4; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  margin-top: 56px;
  background: var(--dark-contrast);
}
.footer-inner {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 4px;
}
footer p { color: rgba(255,255,255,.4); font-size: 11px; }
footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
footer nav a { color: rgba(255,255,255,.5); font-size: 11px; transition: color var(--transition); }
footer nav a:hover { color: var(--gold-light); }

/* =====================================================
   CART DRAWER
   ===================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 16, .55);
  backdrop-filter: blur(3px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.cart-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg-surface);
  z-index: 501;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -12px 0 40px rgba(15,18,16,.18);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}
.cart-header h3 {
  font: 700 17px/1 var(--serif);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-header h3 span {
  background: var(--dark-contrast);
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}
.cart-close {
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.cart-close:hover {
  background: #f3ede2;
  color: var(--text-primary);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 6px 0;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-secondary);
  gap: 14px;
  font-size: 14px;
  text-align: center;
}
.cart-empty svg { opacity: .3; }

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-subtle);
  animation: slideIn .2s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cart-item-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  grid-column: 1;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1;
}
.qty-btn {
  border: 1px solid var(--border-subtle);
  background: transparent;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-size: 15px;
  line-height: 1;
  color: var(--text-primary);
  transition: border-color var(--transition), background var(--transition);
}
.qty-btn:hover { border-color: var(--gold-primary); background: #fbf5e8; }
.qty-value {
  font-size: 13px;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
}
.cart-item-remove {
  background: transparent;
  border: 0;
  color: #ccc;
  font-size: 11px;
  padding: 0;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: #e05252; }
.cart-item-price {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
}

.cart-footer {
  padding: 20px 22px 24px;
  border-top: 1px solid var(--border-subtle);
  flex-shrink: 0;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.cart-total-label {
  font-size: 13px;
  color: var(--text-secondary);
}
.cart-total-value {
  font: 700 22px/1 var(--serif);
  color: var(--text-primary);
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(37, 211, 102, .28);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.whatsapp-btn:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, .34);
}
.whatsapp-btn:disabled {
  background: #ccc;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}
.cart-note {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 10.5px;
  text-align: center;
  line-height: 1.5;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1060px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 12px; }
  .search-box { width: 180px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .selling-layout { grid-template-columns: 1fr; }
  .brands-card { display: flex; align-items: center; gap: 32px; }
  .brands-card h2 { min-width: 160px; flex-shrink: 0; }
  .brand-list { margin: 0; flex: 1; grid-template-columns: repeat(6, 1fr); }
  .contact-strip { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .contact-strip article:nth-child(3) { border-right: 0; }
  .contact-strip article:nth-child(4) { padding-left: 0; }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .catalog-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .site-header { height: 68px; }
  .header-inner { gap: 10px; }
  .menu-toggle { display: grid; order: 3; }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(247, 244, 239, .98);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--border-subtle); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav .is-active::after { display: none; }
  .header-tools { margin-left: auto; }
  .search-box { display: none; }

  /* Hero mobile: stack, visual first */
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    padding: 40px 0 36px;
    order: 2;
  }
  .hero-visual {
    order: 1;
    height: 260px;
  }
  .hero-visual::before { display: none; }
  .hero h1 { font-size: 36px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }

  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefits article { border-right: 0; border-bottom: 1px solid var(--border-subtle); }
  .benefits article:nth-child(odd) { border-right: 1px solid var(--border-subtle); }
  .benefits article:nth-child(3),
  .benefits article:nth-child(4) { border-bottom: 0; }

  .category-grid { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-page { padding-top: 44px; padding-bottom: 56px; }
  .catalog-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .testimonials { margin-top: 56px; padding: 52px 0 60px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }

  .contact-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 40px;
  }
  .contact-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 18px;
  }
  .contact-strip article:nth-child(odd) { border-right: 1px solid var(--border-subtle); }
  .contact-strip article:nth-child(4),
  .contact-strip article:nth-child(5) { border-bottom: 0; }
  .contact-strip article:first-child { padding-left: 18px; }
  .contact-strip article:last-child  { border-right: 0; }

  .brands-card { display: block; }
  .brand-list { margin-top: 14px; grid-template-columns: repeat(3, 1fr); }

  .selling-section { margin-top: 48px; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand strong { font-size: 17px; }
  .catalog-heading h1 { font-size: 32px; }
  .catalog-filters { gap: 6px; }
  .catalog-filter { min-width: 0; flex: 1; padding: 0 8px; }
  .catalog-product-grid { grid-template-columns: 1fr; }
  .brand-mark  { width: 32px; height: 32px; }
  .category-grid { gap: 12px; margin-top: 32px; }
  .card-top { height: 120px; }
  .card-body h2 { font-size: 15px; }
  .selling-section { margin-top: 36px; }
  .product-grid { gap: 12px; }
  .footer-inner { flex-direction: column; align-items: flex-start; padding: 20px 0; gap: 10px; }
  footer nav { gap: 8px 14px; }
}

/* =====================================================
   HERO CAROUSEL
   ===================================================== */

/* Slides — stacked via absolute positioning, crossfade */
.hero-visual {
  position: relative; /* override if needed — already set in base */
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dots — bottom-right of the visual panel */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
  flex-shrink: 0;
}
.hero-dot:hover {
  transform: scale(1.25);
}
.hero-dot.is-active {
  background: var(--gold-primary);
  transform: scale(1.15);
}

/* Mobile: ensure slides visible in stacked layout */
@media (max-width: 780px) {
  .hero-slide {
    position: absolute;
    inset: 0;
  }
  .hero-dots {
    bottom: 12px;
  }
}