@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@1,500;1,600;1,700&display=swap');

:root {
  --bg: #EDE4D6;
  --surface: #C8B89A;
  --header-bg: #EDE4D6;
  --footer-bg: #f0e9df;
  --text: #2C1F0E;
  --muted: #7A4E20;
  --brand: #A07840;
  --brand-2: #7A4E20;
  --line: #D4B88A;
  --radius: 10px;
  --shadow: 0 8px 30px rgba(31,41,51,0.06);
  --shadow-hover: 0 18px 50px rgba(31,41,51,0.08);
  --transition: all 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Dark overlay to improve text contrast on hero images */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.48));
  z-index: 1;
  pointer-events: none;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }

.container { width: 97%; max-width: none; margin: 0 auto; }

/* Topbar */
.topbar {
  background: var(--header-bg);
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  box-shadow: none;
}
.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}
.topbar .topbar-item { display: flex; align-items: center; gap: 8px; flex: 1; }
.topbar .topbar-item:first-child { justify-content: flex-start; }
.topbar .topbar-item:nth-child(2) { justify-content: center; }
.topbar .topbar-item:last-child,
.topbar .topbar-item.topbar-promo-mobile + *,
.topbar .topbar-item:nth-last-child(2):has(+ .topbar-promo-mobile) { justify-content: flex-end; }
.topbar-item svg { opacity: 0.7; color: #A07840; }

/* Topbar rotator */
.topbar-rotator { display: inline-block; position: relative; min-width: 220px; }
.topbar-rotator .rotator-item { display: block; position: absolute; left: 0; top: 0; opacity: 0; transform: translateY(0); transition: opacity 0.35s ease, transform 0.35s ease; white-space: nowrap; }
.topbar-rotator .rotator-item.active { opacity: 1; position: relative; }
.topbar-rotator .rotator-item + .rotator-item { margin-left: 0; }

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  /* Topbar on mobile: full-width eye-catching promo */
  .topbar {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative;
    left: 0;
    background: linear-gradient(90deg, #FAF3E6 0%, #F5EADA 50%, #FAF3E6 100%) !important;
    border-bottom: 1px solid #E6D4B5 !important;
    box-sizing: border-box;
    overflow: hidden;
  }
  .topbar .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .topbar-content {
    display: flex !important;
    width: 100%;
    gap: 0;
    flex-direction: row;
    justify-content: center !important;
    align-items: center;
    text-align: center;
    padding: 20px 16px !important;
    margin: 0 !important;
  }
  .topbar .topbar-item:not(.topbar-promo-mobile) { display: none !important; }
  .topbar .topbar-item.topbar-promo-mobile,
  .topbar .topbar-item:last-child.topbar-promo-mobile {
    display: flex !important;
    flex: 1 1 100% !important;
    width: 100% !important;
    justify-content: center !important;
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.2px;
    color: #7A4E20 !important;
    line-height: 1.35;
    white-space: normal !important;
    word-wrap: break-word;
    padding: 0 8px;
    box-sizing: border-box;
  }
  .topbar-promo-mobile a, .topbar-promo-mobile span {
    color: #A07840 !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-style: italic !important;
  }
}
@keyframes promoShine {
  0%   { background-position: 0% 0; }
  100% { background-position: -200% 0; }
}
.topbar .topbar-item.topbar-promo-mobile { display: none !important; }
@media (max-width: 768px) {
  .topbar .topbar-item.topbar-promo-mobile { display: flex !important; }
}

@media (max-width: 768px) {
  .topbar-rotator { min-width: auto; }
  .topbar-rotator .rotator-item { position: relative; opacity: 1; }
}
/* Header */
.header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: -1px;
  z-index: 50;
  padding-top: 1px;
  backface-visibility: hidden;
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.header > .container.header-inner,
.header .header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  position: relative;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  box-sizing: border-box;
}
.nav-left { justify-self: start; display: flex; gap: 12px; align-items: center; }
.nav-right { justify-self: end; display: flex; gap: 12px; align-items: center; justify-content: flex-end; }
.nav-right .currency-switcher { margin-right: 6px; }
.logo { justify-self: center; }

/* Header right controls: currency, cart, admin */
.currency-switcher { display: inline-flex; align-items: center; }
.currency-switcher select { padding: 6px 24px 6px 10px; font-size: 13px; border-radius: 6px; border: 1px solid var(--line); color: var(--muted); background: #fff; }

.cart-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--bg);
  text-decoration: none;
  transition: var(--transition);
}
.cart-icon-btn svg { width: 20px; height: 20px; }
.cart-icon-btn:hover { color: var(--brand); border-color: var(--brand); box-shadow: 0 6px 20px rgba(160, 120, 64, 0.2); transform: translateY(-2px); }

.cart-badge {
  display: inline-block;
  min-width: 22px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: var(--bg);
  text-align: center;
  box-shadow: 0 2px 8px rgba(160, 120, 64, 0.3);
}

.admin-link {
  color: var(--text);
  font-size: 14px;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  font-weight: 500;
}
.admin-link:hover { color: var(--brand); background: rgba(44, 31, 14, 0.08); }

/* Small spacing tweaks so controls align visually with nav */
.header .header-inner { padding-top: 12px; padding-bottom: 12px; }

.logo { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 38px; 
  font-weight: 700; 
  letter-spacing: -1.5px;
  color: var(--brand);
  text-shadow: 0 2px 4px rgba(44, 31, 14, 0.1);
  transition: var(--transition);
}
.logo:hover {
  transform: translateX(-50%) scale(1.02);
}
.logo span { color: var(--brand-2); opacity: 1; }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 22px;
  color: var(--text);
  cursor: pointer;
}

.nav { display: flex; gap: 8px; align-items: center; }
.nav a, .nav-drop-btn {
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--text);
  font-weight: 300;
  font-size: 15px;
  transition: var(--transition);
}
.nav a:hover, .nav-drop-btn:hover { color: var(--brand); background: rgba(44, 31, 14, 0.05); }
.nav a { text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; }

/* Menu bar under header */
.menu-bar {
  border: none;
  background: var(--surface);
  position: sticky;
  top: 57px;
  z-index: 80;
}
.menu-bar .container { display: flex; justify-content: center; align-items: stretch; }
.menu-bar .menu-inner { display: flex; align-items: stretch; gap: 24px; }
.menu { display: flex; gap: 0; align-items: stretch; padding: 0; justify-content: center; flex: 1 1 auto; }
.menu { position: relative; z-index: 70; }
.promo-text { display: inline-block; background: rgba(44, 31, 14, 0.06); padding: 6px 10px; border-radius: 6px; color: #2C1F0E; font-weight: 500; }
.promo-link { display: inline-block; background: rgba(44, 31, 14, 0.06); padding: 6px 10px; border-radius: 6px; color: #A07840; font-weight: 600; text-decoration: none; }
.menu-promo { display:none; }
.menu > a, .menu .nav-dropdown { display: flex; align-items: stretch; }
.menu > a, .menu .nav-drop-btn { color: var(--text); font-size: 14px; padding: 14px 18px; font-weight: 500; border-radius: 0; transition: var(--transition); display: inline-flex; align-items: center; }
.menu a:hover, .menu .nav-drop-btn:hover { color: var(--brand); background: rgba(0,0,0,0.06); }
.menu .nav-dropdown:hover .nav-drop-btn,
.menu .nav-dropdown.keep-open .nav-drop-btn { color: var(--brand); background: rgba(0,0,0,0.06); }

@media (max-width: 900px) {
  .menu { display: none; }
  .menu.is-open { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    padding: 12px; 
    animation: slideDown 0.3s ease;
  }
  .menu a, .menu .nav-drop-btn { width: 100%; padding: 10px 12px; }
  .menu-promo { min-width: auto; display: block; }
  
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Header left promo styling (inside .nav-left) */
.nav-left .promo-text, .nav-left .promo-link { display: inline-block; background: rgba(44, 31, 14, 0.06); padding: 6px 10px; border-radius: 6px; color: #2C1F0E; font-weight: 500; max-width: 420px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-left .promo-link { color: #A07840; font-weight: 600; }

/* Keep the logo visually centered regardless of left promo width */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
}

@media (max-width: 900px) {
  .logo { position: static; transform: none; }
}

/* ── Dropdown – Level 1 ─────────────────────────── */
.nav-dropdown { position: relative; }
.nav-drop-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #2C1F0E;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-drop-btn svg { opacity: 0.5; transition: transform 0.22s ease; flex-shrink: 0; }
.nav-dropdown:hover .nav-drop-btn { color: #A07840; background: rgba(44,31,14,0.08); }
.nav-dropdown:hover .nav-drop-btn svg { transform: rotate(180deg); opacity: 1; }
.nav-drop-btn a { color: inherit; text-decoration: none; }

.nav-dropdown-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 210px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(44,31,14,0.13);
  padding: 0;
  overflow: visible;
  z-index: 200;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
/* invisible bridge fills gap between button and menu so hover doesn't break */
.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.keep-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 0;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(0,0,0,0.06);
  color: var(--brand);
}

/* ── Dropdown – Level 2 (flyout) ───────────────── */
.nav-sub-dropdown { position: relative; }
.nav-sub-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 0;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-sub-parent svg { opacity: 0.4; flex-shrink: 0; transition: opacity 0.15s; }
.nav-sub-parent:hover { background: rgba(0,0,0,0.06); color: var(--brand); }
.nav-sub-parent:hover svg { opacity: 1; }

.nav-sub-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(4px);
  position: fixed;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(44,31,14,0.13);
  min-width: 190px;
  padding: 0;
  overflow: visible;
  z-index: 9999;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  white-space: nowrap;
}
/* bridge to prevent gap closing flyout */
.nav-sub-menu::after {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
}
.nav-sub-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.nav-sub-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-sub-menu a:hover { background: rgba(0,0,0,0.06); color: var(--brand); }

.currency-switcher select {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 8px;
  padding: 8px 28px 8px 12px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%232C1F0E' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  outline: none;
}
.currency-switcher select:focus { border-color: var(--brand); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: var(--bg);
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn:hover { opacity: 0.95; transform: translateY(-1px); box-shadow: 0 8px 25px rgba(160, 120, 64, 0.3); }
.btn-light { background: var(--bg); color: var(--text); border: 1px solid var(--line); }
.btn-light:hover { background: var(--surface); box-shadow: none; }
.btn-row { display: grid; grid-template-columns: 1fr 1.3fr; gap: 8px; margin-top: auto; padding-top: 12px; }
.btn-row form { margin: 0; display: flex; }
.btn-row form .btn { width: 100%; padding: 9px 10px; font-size: 13px; font-weight: 600; border-radius: 8px; }

/* Hero */
.hero {
  position: relative;
  padding: 120px 0;
  background-color: #A07840;
  background-image: linear-gradient(180deg, #C8B89A 0%, #A07840 100%);
  color: #EDE4D6;
  text-shadow: 0 2px 4px rgba(44, 31, 14, 0.3);
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 31, 14, 0.25);
  pointer-events: none;
}
.hero { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.hero h1, .hero p { color: #fff; }
.hero .container { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; color: #EDE4D6; font-weight: 600; margin-bottom: 18px; }

.hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(36px, 5vw, 64px); margin: 0 0 18px; max-width: 1200px; line-height: 1.08; font-weight: 700; color: #EDE4D6; letter-spacing: -1px; }

.hero p { max-width: 720px; color: rgba(237, 228, 214, 0.9); font-size: 18px; margin: 0 0 28px; font-weight: 400; }
.hero .eyebrow { color: rgba(237, 228, 214, 0.85); }

/* Sections */
.section { padding: 80px 0; }
h1, h2, h3, h4 { 
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin: 0 0 16px; 
  line-height: 1.2; 
  color: var(--text);
  letter-spacing: -0.5px;
}
.section-head { 
  margin-bottom: 32px; 
  text-align: left; 
  background: var(--surface); 
  padding: 20px 24px; 
  border-radius: 12px; 
  border: 1px solid var(--line); 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.section-head h1,
.section-head h2 { font-size: 28px; margin: 0; line-height: 1.2; flex: 1; min-width: 0; }
.section-head .eyebrow { color: var(--brand); margin-bottom: 8px;}
.section-head > div { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Grid & Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.card {
  background: var(--bg);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateZ(0);
  will-change: transform;
  box-shadow: 0 2px 8px rgba(44,31,14,0.06);
}
.card:hover { transform: translateY(-5px) translateZ(0); box-shadow: 0 16px 40px rgba(44,31,14,0.14); border-color: var(--brand); z-index: 1; }
.card-img-wrap { width: 100%; height: auto; overflow: hidden; position: relative; background: var(--surface); display: block; transform: translateZ(0); }
.card img { width: 100%; height: auto; display: block; object-fit: unset; transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); will-change: transform; transform: translateZ(0); }
.card:hover img { transform: scale(1.03) translateZ(0); }

/* Home Layout with Sidebar */
.home-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-top: 16px;
}
@media (max-width: 768px) {
  .home-layout { padding-top: 8px; gap: 16px; flex-direction: column; }
}
.home-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}
.home-sidebar .sidebar-inner { margin-bottom: 0; }
.home-sidebar a:hover { color: #A07840 !important; padding-left: 4px; }
.home-main {
  flex-grow: 1;
  min-width: 0; /* Prevents overflow in flex child */
}
.home-layout.no-sidebar { gap: 0; }
.home-layout.no-sidebar .home-main { width: 100%; }
.home-main .section { padding-top: 0; }

.card .body { padding: 14px 16px 16px; flex-grow: 1; display: flex; flex-direction: column; }
.card h3 { margin: 6px 0 5px; font-size: 14.5px; font-weight: 600; color: var(--text); line-height: 1.35; letter-spacing: -0.2px; }
.card a:hover h3 { color: var(--brand); }
.price { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; font-weight: 700; font-size: 17px; color: var(--brand); margin: 0 0 14px; }
.price .price-old { text-decoration: line-through; color: var(--muted); font-size: 12.5px; font-weight: 400; }

.badge { display: inline-block; background: var(--surface); color: var(--text); padding: 5px 11px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.card .badge { position: absolute; top: 12px; left: 12px; z-index: 10; margin-bottom: 0; background: rgba(0,0,0,0.5); color: #fff; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: none; font-size: 9.5px; padding: 4px 10px; letter-spacing: 1.5px; }

.category-pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 24px; }
.category-pills a {
  background: var(--bg);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
}
.category-pills a:hover { background: var(--brand); color: var(--bg); }

/* Footer */
.footer { background: var(--footer-bg); color: var(--text); padding: 40px 0 20px; margin-top: 40px; border-top: 1px solid var(--line); }
.footer h3, .footer h4 { color: var(--brand-2); font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.5px; }
.footer h3 { font-size: 26px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 20px; }
.footer-bottom { padding: 12px 0; border-top: 1px solid var(--line); background: rgba(0,0,0,0.05); font-size: 13px; color: var(--muted); border-radius: 0 0 4px 4px; margin: 0 -0px; }
.footer p { color: var(--muted); font-size: 15px; margin-bottom: 12px; line-height: 1.6; }
.footer a { display: block; margin-bottom: 12px; color: var(--brand); font-size: 15px; }
.footer a:hover { color: var(--text); }

/* Footer currency switcher */
.footer .footer-currency { display: flex !important; align-items: center !important; gap: 6px; margin: 0; }
.footer .footer-currency label { margin: 0; font-size: 12px; color: var(--brand); white-space: nowrap; line-height: 26px; }
.footer .footer-currency select { height: 26px; padding: 0 8px; border-radius: 4px; border: 1px solid var(--line); background: var(--bg); color: var(--text); font-size: 12px; cursor: pointer; box-sizing: border-box; }
.footer .footer-currency select:focus { outline: none; border-color: var(--brand); }

/* Layouts */
.product-page { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; padding: 0; align-items: start; }
.product-page > div { position: relative; }

/* Product page - remove section padding */
body .section:has(.product-page) { padding-top: 20px; padding-bottom: 20px; }

/* Product Gallery */
.product-gallery { position: sticky;  margin: 0; padding: 0; display: flex; flex-direction: row; gap: 16px; align-items: flex-start; }
.product-image-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #5A4010;
  box-shadow: 0 8px 30px rgba(196,150,42,0.12);
  background: #0A0A0A;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  line-height: 0;
  min-width: 0;
}
.product-main-image {
  width: 100%;
  height: 100%;
  max-height: 500px;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.product-image-wrapper:hover .product-main-image {
  opacity: 0.95;
}

/* Product Thumbnails */
.product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
  flex-shrink: 0;
}
.thumbnail-item {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #5A4010;
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 1;
  background: #0A0A0A;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumbnail-item:hover {
  border-color: #C4962A;
  transform: translateX(2px);
}
.thumbnail-item.active {
  border-color: #C4962A;
  box-shadow: 0 0 0 3px rgba(196,150,42,0.30);
}

/* Product Details */
.product-details { display: flex; flex-direction: column; gap: 24px; }
.product-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.product-category {
  background: linear-gradient(135deg, #C4962A 0%, #8B6010 100%);
  color: #fff;
  border: 1px solid #A07820;
}
.stock-badge {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stock-badge.in-stock { background: rgba(196,150,42,0.15); color: #C4962A; border: 1px solid #5A4010; }
.stock-badge.out-of-stock { background: rgba(185,28,28,0.12); color: #DC2626; border: 1px solid rgba(185,28,28,0.3); }

.product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #C4962A;
  line-height: 1.2;
  margin: 0;
}

.product-price-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid #5A4010;
  border-bottom: 1px solid #5A4010;
}
.old-price {
  font-size: 20px;
  color: #5A4010;
  text-decoration: line-through;
  font-weight: 400;
}
.discount-badge {
  background: linear-gradient(135deg, #C4962A 0%, #8B6010 100%);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #A07820;
}
.current-price {
  font-size: 32px;
  font-weight: 700;
  color: #C4962A;
}

.product-description h3 {
  font-size: 18px;
  color: #C4962A;
  margin-bottom: 12px;
}
.product-description p {
  color: #A07820;
  line-height: 1.7;
  font-size: 15px;
}

.success-message {
  background: rgba(196,150,42,0.12);
  color: #C4962A;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #5A4010;
  font-weight: 500;
  text-align: center;
}

/* Product Form */
.product-form { display: flex; flex-direction: column; gap: 20px; }
.quantity-selector label {
  display: block;
  font-weight: 600;
  color: #C4962A;
  margin-bottom: 8px;
  font-size: 14px;
}
.quantity-input-wrapper {
  display: flex;
  align-items: center;
  max-width: 150px;
  border: 1px solid #5A4010;
  border-radius: 8px;
  overflow: hidden;
}
.quantity-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: #1A1100;
  color: #C4962A;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quantity-btn:hover {
  background: linear-gradient(135deg, #C4962A 0%, #8B6010 100%);
  color: #fff;
}
.quantity-input {
  width: 62px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid #5A4010;
  border-right: 1px solid #5A4010;
  background: #0A0A0A;
  color: #C4962A;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.quantity-input:focus {
  outline: none;
  background: #111111;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, #C4962A 0%, #8B6010 60%, #5A3A08 100%);
  color: #fff;
  border: 1px solid #A07820;
  flex: 1;
  min-width: 200px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(196,150,42,0.25);
}
.btn-primary svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #D4A63A 0%, #A07820 60%, #6B4A10 100%);
  box-shadow: 0 8px 25px rgba(196,150,42,0.45);
}
.btn-secondary {
  background: #1A1100;
  color: #C4962A;
  border: 1px solid #5A4010;
  flex: 1;
  min-width: 150px;
  padding: 14px 24px;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #C4962A 0%, #8B6010 100%);
  color: #fff;
  border-color: #C4962A;
}

/* Product Features */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #0A0A0A;
  border-radius: 8px;
  border: 1px solid #5A4010;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #A07820;
  font-size: 14px;
  font-weight: 500;
}
.feature-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #A07820;
  font-weight: 500;
  padding: 8px 0;
  transition: var(--transition);
}
.back-link svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.back-link:hover {
  color: #C4962A;
  transform: translateX(-4px);
}
.checkout-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; padding: 0 0 40px; align-items: start; }
.section:has(.checkout-layout) .section-head { margin-bottom: 12px; }
.compact-fields .field-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.compact-fields .field-row label { min-width: 140px; flex-shrink: 0; font-size: 13px; margin: 0; white-space: nowrap; }
.compact-fields .field-row input { flex: 1; margin: 0; padding: 10px 12px; font-size: 14px; }
.compact-fields .field-row-half { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid > div.full { grid-column: span 2; }

.content-tab-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.content-card-full { grid-column: 1 / -1; }
@media (min-width: 1000px) {
  .content-tab-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

.inline-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.inline-field { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.inline-field:last-child { border-bottom: none; padding-bottom: 0; }
.inline-field:first-of-type { padding-top: 0; }
.inline-field label { min-width: 110px; flex-shrink: 0; font-size: 12.5px; font-weight: 600; color: var(--muted); margin: 0; white-space: nowrap; padding-top: 8px; }
.inline-field input, .inline-field select { flex: 1; margin: 0; padding: 7px 10px; font-size: 13.5px; min-height: auto; }
.inline-field textarea { flex: 1; margin: 0; padding: 7px 10px; font-size: 13.5px; min-height: auto; resize: vertical; }
@media (min-width: 1000px) {
  .inline-field { padding: 10px 0; gap: 16px; }
  .inline-field:first-of-type { padding-top: 2px; }
  .inline-field label { min-width: 130px; font-size: 13px; padding-top: 8px; }
  .inline-field input, .inline-field select { padding: 7px 10px; font-size: 14px; }
  .inline-field textarea { padding: 7px 10px; font-size: 14px; }
}

.summary-box {
  background: #EDE4D6;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid #D4B88A;
  box-shadow: 0 8px 30px rgba(44, 31, 14, 0.1);
}
.summary-box h3 { margin-bottom: 24px; border-bottom: 1px solid #D4B88A; padding-bottom: 16px;}
.summary-box table { width: 100%; border-collapse: collapse; }
.summary-box th, .summary-box td { padding: 12px 0; border-bottom: 1px solid #D4B88A; }
.summary-box th { text-align: left; font-weight: 500; color: #7A4E20; }
.summary-box td { text-align: right; font-weight: 600; color: #2C1F0E;}

/* Forms */
.form-control, textarea, select, input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D4B88A;
  border-radius: 8px;
  margin: 4px 0 16px;
  background: #EDE4D6;
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
  color: #2C1F0E;
}
.form-control:focus, textarea:focus, select:focus, input:focus {
  outline: none;
  border-color: #A07840;
  box-shadow: 0 0 0 3px rgba(160, 120, 64, 0.15);
}
label { font-weight: 500; font-size: 14px; color: #2C1F0E; }
textarea { min-height: 120px; resize: vertical; }

.panel {
  background: #EDE4D6;
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #D4B88A;
  box-shadow: 0 8px 30px rgba(44, 31, 14, 0.1);
}

table { width: 100%; border-collapse: collapse; }
.admin-main table { min-width: 720px; }
.panel { overflow-x: auto; }
th, td { text-align: left; padding: 6px 10px; border-bottom: 1px solid #D4B88A; font-size: 13px; white-space: nowrap; }
th { color: #7A4E20; font-weight: 500; text-transform: uppercase; font-size: 11px; letter-spacing: 1px;}
tr { height: 40px; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-link {
  background: #C8B89A;
  color: #2C1F0E;
  padding: 6px 10px;
  border-radius: 5px;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
}
.btn-link:hover { background: #A07840; color: #EDE4D6; }
.danger { background: rgba(122, 78, 32, 0.2); color: #7A4E20; border: 1px solid #7A4E20; }
.danger:hover { background: rgba(122, 78, 32, 0.3); }

/* Admin */
.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.sidebar {
  background: #2C1F0E;
  color: #EDE4D6;
  padding: 24px 16px;
  border-right: 1px solid #7A4E20;
}
.sidebar h3 { margin: 0 0 24px; color: #A07840; padding: 0 12px; font-size: 20px;}
.sidebar a {
  display: block;
  padding: 7px 16px;
  color: #C8B89A;
  text-decoration: none;
  margin: 0;
  font-weight: 500;
}
.sidebar a:hover { background: rgba(160, 120, 64, 0.15); color: #A07840; }
.admin-main { padding: 32px; background: #EDE4D6; overflow-x: auto; }
.admin-topbar { display: none; align-items: center; gap: 12px; margin-bottom: 24px; position: relative; z-index: 250; }

/* Product editor compact sidebar layout */
.product-editor { padding: 20px; }
.product-editor form input[type="text"], .product-editor form input[type="number"], .product-editor form textarea, .product-editor form select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #D4B88A;
  border-radius: 6px;
  background: #EDE4D6;
  color: #2C1F0E;
}
.product-editor form textarea { resize: vertical; }

@media (max-width: 900px) {
  .product-editor form { grid-template-columns: 1fr !important; }
}

/* Responsive */
@media (max-width: 1024px) {
  .product-page { grid-template-columns: 1fr; gap: 40px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .compact-fields .field-row { flex-direction: column; align-items: stretch; gap: 4px; }
  .compact-fields .field-row label { min-width: auto; }
  .compact-fields .field-row-half { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  /* Compact mobile header */
  .header .header-inner {
    padding: 10px 0;
    gap: 12px;
  }
  .logo {
    font-size: 28px;
  }
  .menu-toggle { 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(160, 120, 64, 0.1);
    border: 1px solid #D4B88A;
    transition: var(--transition);
  }
  .menu-toggle:hover {
    background: rgba(160, 120, 64, 0.2);
    border-color: #A07840;
  }
  .menu-toggle svg {
    width: 22px;
    height: 22px;
    color: #2C1F0E;
  }
  .nav {
    display: none;
    position: absolute;
    right: 4%;
    top: 60px;
    background: #EDE4D6;
    border: 1px solid #D4B88A;
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(44, 31, 14, 0.15);
    padding: 16px;
    flex-direction: column;
    width: 240px;
    align-items: flex-start;
    animation: fadeIn 0.2s ease;
    z-index: 100;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav.is-open { display: flex; }
  .nav a, .nav-drop-btn { width: 100%; text-align: left; padding: 10px 12px; font-size: 13px; }
  .menu > a,
  .menu .nav-drop-btn,
  .menu .nav-sub-parent {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 10px 14px !important;
    font-size: 13px;
    color: #2C1F0E;
    border-radius: 0;
  }
  .menu .nav-dropdown,
  .menu .nav-sub-dropdown { display: block; width: 100%; }
  /* Full-width hamburger menu and hide menu-bar background */
  .menu-bar { padding: 0; background: transparent; position: static; }
  .menu { background: #EDE4D6; }
  .menu.is-open { width: 100%; padding: 8px 0; border-top: 1px solid #D4B88A; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static;
    pointer-events: auto; transform: none;
    background: rgba(44,31,14,0.06); border-radius: 8px;
    box-shadow: none; padding: 4px 0 4px 10px; min-width: 0;
    margin: 2px 0 4px;
    display: none; opacity: 1; visibility: visible;
  }
  .nav-dropdown.mobile-open > .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a { color: #2C1F0E; font-size: 13px; padding: 8px 12px; white-space: normal; }
  .nav-dropdown-menu a:hover { background: rgba(160,120,64,0.12); color: #A07840; }
  .nav-sub-menu {
    position: static !important;
    top: auto !important; left: auto !important;
    opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; transform: none !important;
    background: rgba(44,31,14,0.04); border: none;
    box-shadow: none; padding: 4px 0 4px 10px; min-width: 0;
    margin: 2px 0; display: none !important;
  }
  .nav-sub-dropdown.mobile-open > .nav-sub-menu { display: block !important; }
  /* Hide any nav-sub-menu that got detached to body on mobile */
  body > .nav-sub-menu { display: none !important; }
  /* mobile caret indicator */
  .nav-drop-btn::after,
  .nav-sub-parent::after {
    content: '+';
    margin-left: 8px;
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1;
  }
  .nav-dropdown.mobile-open > .nav-drop-btn::after,
  .nav-sub-dropdown.mobile-open > .nav-sub-parent::after { content: '−'; color: #A07840; }
  .nav-sub-menu::before { display: none; }
  .nav-sub-menu a { color: #2C1F0E; font-size: 12px; padding: 7px 12px; }
  .nav-sub-menu a:hover { background: rgba(160,120,64,0.1); color: #A07840; }
  .nav-sub-parent { color: #2C1F0E; font-size: 13px; padding: 8px 12px; }
  .nav-sub-parent:hover { background: rgba(160,120,64,0.12); color: #A07840; }
  .nav-drop-btn svg { display: none; }
  .currency-switcher { display: none; }
  
  .grid { grid-template-columns: 1fr !important; gap: 16px; }
  .card-img-wrap, .card img { height: auto !important; }
  .card img { object-fit: contain; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .footer { padding: 32px 0 16px; }
  .footer-grid > div { text-align: center; }
  .footer-grid > div a { display: inline-block; margin: 0 8px 10px; }
  .footer-grid > div p { text-align: center; }
  .footer h3, .footer h4 { text-align: center; margin-bottom: 14px; }
  .footer-bottom { text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid > div { grid-column: auto !important; }
  
  .section { padding: 0; margin-top: 14px; }
  .section-head {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 10px 14px;
    gap: 8px;
    margin-bottom: 14px;
  }
  .hero + .section { margin-top: 14px; }
  .section-head h1,
  .section-head h2 { font-size: 18px; text-align: center; line-height: 1.2; flex: unset; }
  .section-head .eyebrow { font-size: 10px; letter-spacing: 1.2px; margin-bottom: 2px; }
  .section-head > div { justify-content: center; }

  .hero { padding: 28px 0 20px; margin-bottom: 0; }
  .hero h1 { font-size: 32px; margin: 0 0 12px; }
  .hero p { font-size: 14px; margin: 0 0 16px; }
  .hero .btn { margin-bottom: 0; }
  
  .admin-shell { grid-template-columns: 1fr; }
  .sidebar {
    display: none;
    position: fixed;
    z-index: 300;
    inset: 0 auto 0 0;
    width: 280px;
    height: 100vh;
    box-shadow: 10px 0 30px rgba(44, 31, 14, 0.3);
  }
  .sidebar.is-open { display: block; }
  .admin-topbar { display: flex; }
  .admin-main { padding: 20px; }

  /* Push all fixed page headers below admin-topbar on mobile - uses CSS variable --header-top in inline styles */
  @media (max-width: 768px) {
    :root { --header-top: 50px; }
    div[id$="PageHeader"], div[id$="CreateHeader"] { left: 0 !important; }
    div[id$="HeaderSpacer"] { height: 106px !important; }
  }
}

/* Desktop: force 5 products per row on wide screens */
@media (min-width: 1200px) {
  .grid { grid-template-columns: repeat(5, 1fr); }
  .card-img-wrap, .card img { height: auto; }
  .card img { object-fit: unset; }
}

/* Compact category headers on desktop */
@media (min-width: 1000px) {
  .section { padding: 15px 0; }
  .section-head { margin-bottom: 24px; padding: 8px 20px; }
  .section-head h1,
  .section-head h2 { font-size: 24px; line-height: 1.1; font-weight: 600; }
  .section-head h2 img { width: 40px; height: 40px; }
  .section-head .eyebrow { font-size: 11px; letter-spacing: 1.6px; padding: 6px 10px; border-radius: 6px; display: inline-block; margin-bottom:6px; }
}

/* Grid & Cards */
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-head .view-all-btn, .section-head .btn-light {
  padding: 6px 18px;
  border-radius: 10px;
  font-size: 14px;
  background: #EDE4D6;
  color: #A07840;
  border: 1px solid #D4B88A;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(160, 120, 64, 0.1);
  font-weight: 500;
  transition: all 0.2s ease;
  margin-left: auto;
}
.section-head .view-all-btn:hover, .section-head .btn-light:hover {
  background: #C8B89A;
  color: #7A4E20;
  border-color: #A07840;
}

/* badge override already defined in main card rules */

/* About Us Page */
.about-hero {
  background: linear-gradient(135deg, #2C1F0E 0%, #7A4E20 100%);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(44, 31, 14, 0.15);
}
.about-eyebrow {
  display: inline-block;
  background: rgba(160, 120, 64, 0.2);
  color: #EDE4D6;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.about-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #EDE4D6;
  margin: 0 0 16px;
  line-height: 1.2;
}
.about-hero h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #C8B89A;
  margin: 0;
}

.about-section {
  margin-bottom: 60px;
}
.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-image {
  display: flex;
  justify-content: center;
}
.about-image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: #C8B89A;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D4B88A;
}
.about-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2C1F0E;
  margin: 0 0 20px;
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #2C1F0E;
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.about-card {
  background: #EDE4D6;
  padding: 40px 30px;
  border-radius: var(--radius);
  border: 1px solid #D4B88A;
  text-align: center;
  transition: var(--transition);
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(44, 31, 14, 0.15);
}
.about-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(200, 184, 154, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #2C1F0E;
  margin: 0 0 16px;
}
.about-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #2C1F0E;
  margin: 0;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 40px 20px;
  }
  .about-hero h1 {
    font-size: 32px;
  }
  .about-hero h2 {
    font-size: 18px;
  }
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Page Content Styles */
.page-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #2C1F0E;
  margin: 32px 0 16px;
}
.page-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2C1F0E;
  margin: 24px 0 12px;
}
.page-content p {
  margin: 0 0 16px;
  line-height: 1.8;
}
.page-content ul, .page-content ol {
  margin: 0 0 16px 20px;
  padding-left: 20px;
}
.page-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.page-content strong {
  color: #7A4E20;
}
.page-content a {
  color: #7A4E20;
  text-decoration: underline;
}
.page-content a:hover {
  color: #2C1F0E;
}

/* ===================== BLOG STYLES ===================== */
.blog-hero {
  background: linear-gradient(135deg, #EDE4D6 0%, #C8B89A 100%);
  padding: 64px 0 48px;
  text-align: center;
  border-bottom: 1px solid #D4B88A;
}
.blog-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  color: #2C1F0E;
  margin: 0 0 12px;
}
.blog-hero p {
  color: #7A4E20;
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

.blog-container {
  padding: 48px 0 64px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,31,14,0.08);
  border: 1px solid #EDE4D6;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(44,31,14,0.14);
}
.blog-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #C8B89A;
  flex-shrink: 0;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #C8B89A 0%, #EDE4D6 100%);
}
.blog-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #A07840;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #2C1F0E;
  margin: 0 0 10px;
  line-height: 1.35;
  font-family: 'Montserrat', sans-serif;
}
.blog-card-excerpt {
  font-size: 14px;
  color: #7A4E20;
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: #A07840;
  margin-top: auto;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.blog-pagination a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #A07820;
  background: #1A1100;
  border: 1px solid #5A4010;
  text-decoration: none;
  transition: all 0.2s;
}
.blog-pagination a.active,
.blog-pagination a:hover {
  background: linear-gradient(135deg, #C4962A 0%, #8B6010 100%);
  color: #fff;
  border-color: #C4962A;
}

/* Single blog post */
.blog-post-cover {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
}
.blog-post-cover img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.blog-post-container {
  max-width: 820px;
  padding-top: 40px;
  padding-bottom: 64px;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 13px;
  color: #A07820;
}
.blog-post-date, .blog-post-author {
  background: #1A1100;
  border: 1px solid #5A4010;
  color: #C4962A;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.blog-post-title {
  font-size: clamp(26px, 4vw, 42px);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #C4962A;
  margin: 0 0 18px;
  line-height: 1.2;
}
.blog-post-excerpt {
  font-size: 18px;
  color: #A07820;
  font-style: italic;
  border-left: 4px solid #C4962A;
  padding-left: 18px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.blog-post-content {
  font-size: 16px;
  line-height: 1.85;
  color: #A07820;
}
.blog-post-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #C4962A;
  margin: 36px 0 16px;
}
.blog-post-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #C4962A;
  margin: 28px 0 12px;
}
.blog-post-content p { margin: 0 0 18px; }
.blog-post-content img { max-width: 100%; border-radius: 10px; margin: 16px 0; border: 1px solid #5A4010; }
.blog-post-content ul, .blog-post-content ol { margin: 0 0 18px 20px; padding-left: 18px; }
.blog-post-content li { margin-bottom: 8px; }
.blog-post-content a { color: #C4962A; text-decoration: underline; }
.blog-post-content blockquote {
  border-left: 4px solid #C4962A;
  margin: 24px 0;
  padding: 12px 20px;
  background: #1A1100;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #A07820;
}

.blog-related {
  padding: 48px 0;
  border-top: 1px solid #5A4010;
}
.blog-related h3 {
  font-size: 22px;
  font-weight: 700;
  color: #C4962A;
  margin: 0 0 24px;
  font-family: 'Montserrat', sans-serif;
}
.blog-grid-related { grid-template-columns: repeat(3, 1fr); }

/* Blog layout with sidebar */
.blog-layout {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.blog-main {
  flex: 1;
  min-width: 0;
}
.blog-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: #0A0A0A;
  border-radius: 14px;
  border: 1px solid #5A4010;
  padding: 20px 0;
  box-shadow: 0 2px 12px rgba(196,150,42,0.10);
  position: sticky;
  top: 80px;
}
.blog-sidebar-title {
  font-size: 13px;
  font-weight: 700;
  color: #C4962A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 18px 12px;
  margin: 0;
  border-bottom: 1px solid #5A4010;
}
.blog-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 18px;
  font-size: 14px;
  color: #A07820;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.blog-cat-link:hover,
.blog-cat-link.active {
  background: #1A1100;
  color: #C4962A;
  font-weight: 600;
}
.blog-cat-count {
  font-size: 11px;
  background: #1A1100;
  color: #C4962A;
  border-radius: 20px;
  padding: 2px 8px;
  font-weight: 600;
  border: 1px solid #5A4010;
}
.blog-filter-label {
  font-size: 14px;
  color: #A07820;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: #1A1100;
  border-radius: 8px;
  border: 1px solid #5A4010;
}
.blog-card-cat {
  background: linear-gradient(135deg, #C4962A 0%, #8B6010 100%);
  color: #fff;
  border-radius: 20px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid #A07820;
}

/* Blog responsive */
@media (max-width: 900px) {
  .blog-layout { flex-direction: column; }
  .blog-sidebar { width: 100%; position: static; display: flex; flex-wrap: wrap; padding: 12px 8px; gap: 4px; }
  .blog-sidebar-title { width: 100%; padding: 0 10px 8px; margin-bottom: 4px; }
  .blog-cat-link { padding: 6px 14px; border-radius: 20px; font-size: 13px; background: #EDE4D6; flex: 0 0 auto; }
  .blog-cat-link.active { background: #A07840; color: #fff; }
  .blog-cat-count { display: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .blog-grid-related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-hero { padding: 40px 0 32px; }
  .blog-container { padding: 28px 0 40px; }
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .blog-grid-related { grid-template-columns: 1fr; }
  .blog-card-img { height: auto; }
  .blog-card-img img { height: 240px; }
  .blog-post-cover img { height: 240px; }
  .blog-post-container { padding-top: 24px; padding-bottom: 40px; }
}

/* ===================== HERBAL PRODUCT DETAILS ===================== */

/* Pack size badge */
.product-weight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(160, 120, 64, 0.12);
  border: 1px solid rgba(160, 120, 64, 0.3);
  color: #7A4E20;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}
.product-weight-badge strong { color: #A07840; font-weight: 700; }

/* Herbal info tabs */
.herbal-tabs {
  border: 1px solid #D4B88A;
  border-radius: var(--radius);
  overflow: hidden;
}
.herbal-tab-nav {
  display: flex;
  background: #C8B89A;
  border-bottom: 1px solid #D4B88A;
}
.htab-btn {
  flex: 1;
  background: transparent;
  border: none;
  border-right: 1px solid #D4B88A;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #7A4E20;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}
.htab-btn:last-child { border-right: none; }
.htab-btn:hover { background: rgba(160,120,64,0.15); color: #A07840; }
.htab-btn.active {
  background: #EDE4D6;
  color: #A07840;
  border-bottom: 2px solid #A07840;
  margin-bottom: -1px;
}

.htab-panel {
  display: none;
  padding: 20px;
  background: #EDE4D6;
  font-size: 14px;
  line-height: 1.75;
  color: #2C1F0E;
}
.htab-panel.active { display: block; }
.htab-panel p { margin: 0; }

/* Benefits bullet list */
.herbal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.herbal-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: #2C1F0E;
  line-height: 1.5;
}
.herbal-list li::before {
  content: "✓";
  color: #A07840;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 600px) {
  .herbal-list { grid-template-columns: 1fr; }
  .htab-btn { font-size: 11px; padding: 9px 8px; letter-spacing: 0.03em; }
}


/* Remove all overlays when hero has a custom background image */
.hero[style*="background-image"]::before,
.hero[style*="background-image"]::after {
  display: none !important;
  background: none !important;
}

/* ══════════════════════════════════════════════════════
   FEATURE ADDITIONS — All new feature styles
   ══════════════════════════════════════════════════════ */

/* ── 1. AJAX Live Search ─────────────────────────────── */
.header-search-wrap { position: relative; display: flex; align-items: center; }
.header-search-toggle {
  background: none; border: none; cursor: pointer; color: var(--text);
  display: flex; align-items: center; padding: 8px; border-radius: 8px;
  transition: var(--transition);
}
.header-search-toggle:hover { color: var(--brand); background: rgba(160,120,64,0.1); }

.header-search-box {
  display: none; position: absolute; top: calc(100% + 12px); right: 0;
  width: 380px; background: var(--bg); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: 0 16px 48px rgba(44,31,14,0.18);
  z-index: 9999; overflow: hidden;
}
.header-search-box.is-open { display: block; animation: fadeInDown 0.2s ease; }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:none; } }

.header-search-box input {
  width: 100%; padding: 14px 44px 14px 16px; border: none;
  background: transparent; font-size: 15px; color: var(--text); outline: none;
  border-bottom: 1px solid var(--line);
}
.header-search-close {
  position: absolute; top: 10px; right: 12px; background: none; border: none;
  font-size: 20px; color: var(--muted); cursor: pointer; line-height: 1;
}
.search-results-dropdown { max-height: 420px; overflow-y: auto; }
.search-result-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  text-decoration: none; color: var(--text); transition: background 0.15s;
  border-bottom: 1px solid rgba(212,184,138,0.4);
}
.search-result-item:hover { background: rgba(160,120,64,0.08); }
.search-result-img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: var(--surface); }
.search-result-info { flex: 1; min-width: 0; }
.search-result-name { display: block; font-weight: 600; font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-cat { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
.search-result-price { text-align: right; flex-shrink: 0; font-size: 13px; }
.search-old-price { display: block; text-decoration: line-through; color: var(--muted); font-size: 11px; }
.search-no-results { padding: 20px 16px; color: var(--muted); font-size: 14px; }
.search-view-all {
  display: block; padding: 12px 16px; text-align: center; font-size: 13px;
  color: var(--brand); font-weight: 600; background: rgba(160,120,64,0.06);
  text-decoration: none; border-top: 1px solid var(--line);
}
.search-view-all:hover { background: rgba(160,120,64,0.14); }

@media (max-width: 768px) {
  .header-search-box { width: calc(100vw - 24px); right: -8px; }
}

/* ── 2. Wishlist Icon / Badge ────────────────────────── */
.wishlist-icon-btn {
  display: inline-flex; align-items: center; position: relative;
  padding: 8px 12px; border-radius: 10px; border: 1px solid var(--line);
  color: var(--text); background: var(--bg); transition: var(--transition);
  text-decoration: none; gap: 0;
}
.wishlist-icon-btn:hover { color: var(--brand); border-color: var(--brand); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(160,120,64,0.2); }
.wishlist-badge {
  display: inline-block; min-width: 20px; padding: 2px 6px;
  font-size: 11px; font-weight: 700; line-height: 1; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: var(--bg); text-align: center; margin-left: 4px;
}

/* Card heart button */
.card-wishlist-btn {
  position: absolute; top: 10px; right: 10px; z-index: 11;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(237,228,214,0.92); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); backdrop-filter: blur(4px);
}
.card-wishlist-btn:hover { background: #fff; box-shadow: 0 4px 14px rgba(160,120,64,0.3); transform: scale(1.12); }

/* Product detail wishlist heart button */
.btn-wishlist-heart {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 16px; border-radius: 10px;
  border: 1.5px solid var(--brand); background: transparent;
  color: var(--brand); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.btn-wishlist-heart:hover { background: rgba(160,120,64,0.1); transform: translateY(-1px); }

/* Wishlist remove button */
.btn-wishlist-remove {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 8px;
  background: rgba(160,120,64,0.08); border: 1px solid var(--brand);
  color: var(--brand); font-size: 13px; cursor: pointer; transition: var(--transition);
}
.btn-wishlist-remove:hover { background: rgba(160,120,64,0.18); }

/* ── 3. Star Ratings / Reviews ───────────────────────── */
.product-rating-summary { display: flex; align-items: center; gap: 10px; margin: -8px 0 4px; }
.star-display { display: flex; align-items: center; gap: 2px; }
.rating-text { font-size: 13px; color: var(--muted); font-weight: 500; }

.reviews-section { background: var(--surface); padding: 60px 0; border-top: 1px solid var(--line); }
.reviews-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .reviews-layout { grid-template-columns: 1fr; } }

.reviews-title { font-size: 22px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.reviews-count-badge {
  background: var(--brand); color: var(--bg); border-radius: 999px;
  font-size: 13px; font-weight: 700; padding: 2px 10px;
}

/* Star picker for review form */
.star-picker { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; margin-bottom: 16px; }
.star-picker input { display: none; }
.star-picker label {
  font-size: 28px; color: #d1d5db; cursor: pointer; transition: color 0.15s;
}
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label { color: #f59e0b; }

.review-form { display: flex; flex-direction: column; gap: 14px; }
.form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .form-row-two { grid-template-columns: 1fr; } }
.review-form input, .review-form textarea {
  padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--bg); color: var(--text); font-size: 14px; outline: none;
  transition: border-color 0.2s; font-family: inherit;
}
.review-form input:focus, .review-form textarea:focus { border-color: var(--brand); }
.review-form textarea { resize: vertical; min-height: 100px; }

.review-success { background: #d1fae5; color: #065f46; padding: 12px 16px; border-radius: 8px; font-weight: 500; margin-bottom: 12px; }
.review-error   { background: #fee2e2; color: #991b1b; padding: 12px 16px; border-radius: 8px; font-weight: 500; margin-bottom: 12px; }

.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-item { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.reviewer-name { font-weight: 700; font-size: 15px; display: block; margin-bottom: 4px; }
.review-stars { display: flex; gap: 2px; }
.review-date { font-size: 12px; color: var(--muted); white-space: nowrap; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.65; margin: 0; }

/* ── 4. Related Products ─────────────────────────────── */
.related-section { padding: 60px 0; }

/* ── 5. Recently Viewed ──────────────────────────────── */
.recently-viewed-section { padding: 48px 0; border-top: 1px solid var(--line); }
.rv-scroll-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
.rv-scroll-wrap::-webkit-scrollbar { height: 4px; }
.rv-scroll-wrap::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }
.rv-scroll-track { display: flex; gap: 20px; min-width: max-content; padding: 4px 0; }
.rv-card {
  width: 200px; flex-shrink: 0; background: var(--bg);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  transition: var(--transition);
}
.rv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(44,31,14,0.12); border-color: var(--brand); }
.rv-card-img { display: block; overflow: hidden; background: var(--surface); }
.rv-card-img img { width: 100%; height: 140px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.rv-card:hover .rv-card-img img { transform: scale(1.05); }
.rv-card-body { padding: 10px 12px 14px; }
.rv-card-name { font-size: 13px; font-weight: 600; color: var(--text); margin: 6px 0 4px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rv-card-price { font-size: 14px; font-weight: 700; color: var(--brand); margin: 0; display: flex; gap: 6px; align-items: baseline; flex-wrap: wrap; }

/* ── 6. Stock Alerts ─────────────────────────────────── */
.card-stock-badge {
  position: absolute; bottom: 10px; left: 10px; z-index: 11;
  background: #f97316; color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; letter-spacing: 0.5px;
  text-transform: uppercase; box-shadow: 0 2px 8px rgba(249,115,22,0.4);
}
.low-stock-badge {
  color: #f97316; font-size: 13px; font-weight: 700; margin: -8px 0 0;
  display: flex; align-items: center; gap: 4px;
}
.out-of-stock-block { display: flex; flex-direction: column; gap: 14px; }
.out-of-stock-msg { color: #dc2626; font-weight: 600; font-size: 15px; margin: 0; }
.notify-success-msg { color: #065f46; font-weight: 600; background: #d1fae5; padding: 12px 16px; border-radius: 8px; margin: 0; }
.notify-me-form { display: flex; flex-direction: column; }
.notify-me-row { display: flex; gap: 8px; }
.notify-me-row input {
  flex: 1; padding: 11px 14px; border: 1px solid var(--line);
  border-radius: 8px; font-size: 14px; background: var(--bg);
  color: var(--text); outline: none;
}
.notify-me-row input:focus { border-color: var(--brand); }

/* ── 7. WhatsApp Floating Button ─────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9990;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 40px rgba(37,211,102,0.65); animation: none; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 28px rgba(37,211,102,0.5), 0 0 0 10px rgba(37,211,102,0.15); }
}

/* ── 8. Newsletter Section ───────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  padding: 48px 0;
  color: var(--bg);
}
.newsletter-inner {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.newsletter-text {
  display: flex; align-items: flex-start; gap: 16px; flex: 1; min-width: 260px;
  color: rgba(237,228,214,0.95);
}
.newsletter-text svg { margin-top: 4px; color: rgba(237,228,214,0.8); }
.newsletter-text h3 { color: var(--bg); font-size: 20px; margin: 0 0 6px; }
.newsletter-text p  { color: rgba(237,228,214,0.8); font-size: 14px; margin: 0; }
.newsletter-form {
  display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 480px;
}
.newsletter-form input {
  flex: 1; padding: 13px 16px; border: none; border-radius: 8px;
  font-size: 14px; background: rgba(237,228,214,0.92); color: var(--text);
  outline: none; transition: background 0.2s;
}
.newsletter-form input:focus { background: #fff; }
.newsletter-btn {
  white-space: nowrap; background: var(--bg); color: var(--brand);
  font-weight: 700; border: none;
}
.newsletter-btn:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.newsletter-msg { color: rgba(237,228,214,0.9); font-size: 14px; margin: 8px 0 0; font-weight: 500; }
@media (max-width: 768px) {
  .newsletter-inner { flex-direction: column; gap: 20px; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input, .newsletter-btn { width: 100%; }
}

/* ── 9. Social Sharing Buttons ───────────────────────── */
.product-share-row {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 4px 0 8px;
}
.share-label { font-size: 13px; color: var(--muted); font-weight: 600; margin-right: 4px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: var(--transition); cursor: pointer;
  border: 1.5px solid var(--line); background: var(--bg); color: var(--text);
}
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(44,31,14,0.15); }
.share-wa  { background: #25d366; color: #fff; border-color: #25d366; }
.share-wa:hover  { background: #20ba5a; }
.share-fb  { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-fb:hover  { background: #1567d3; }
.share-tw  { background: #000; color: #fff; border-color: #000; }
.share-tw:hover  { background: #222; }
.share-copy { background: var(--bg); color: var(--text); }
.share-copy:hover { background: var(--surface); color: var(--brand); }
