/* ==============================================================================
   Halal Authentic Beauty Hub - Core Design System & Stylesheet
   Theme: Luxury Halal Clean Beauty (Cream, Sage-Dark, Gold, Ink)
============================================================================== */

:root {
  --cream: #FAF7F1;
  --cream-2: #F1EADC;
  --cream-3: #EAE1D0;
  --ink: #3D2A1F;
  --ink-soft: #7A6552;
  --ink-light: #A59B8D;
  --sage: #96723A;
  --sage-dark: #5C4425;
  --gold: #B8863E;
  --gold-light: #D9A862;
  --line: #E6DDC8;
  --white: #FFFFFF;
  --success: #2E7D32;
  --danger: #A03B2E;
  --danger-bg: #FBEBE8;
  --radius: 4px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(61, 42, 31, 0.06);
  --shadow-md: 0 10px 24px rgba(61, 42, 31, 0.08);
  --shadow-lg: 0 14px 34px rgba(61, 42, 31, 0.12);
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

h1, h2, h3, h4, .display {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==============================================================================
   Flash Alerts
============================================================================== */
.flash-alert {
  padding: 12px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid transparent;
}
.flash-alert.success {
  background: #EAF5EA;
  color: var(--success);
  border-color: #C8E6C9;
}
.flash-alert.danger {
  background: var(--danger-bg);
  color: var(--danger);
  border-color: #F5C6CB;
}
.flash-alert.info {
  background: var(--cream-2);
  color: var(--sage-dark);
  border-color: var(--line);
}
.flash-alert.warning {
  background: #FFF8E1;
  color: #F57F17;
  border-color: #FFE082;
}
.flash-close {
  font-size: 18px;
  line-height: 1;
  color: inherit;
  opacity: 0.6;
}
.flash-close:hover { opacity: 1; }

/* ==============================================================================
   Buttons & Badges
============================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sage);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--sage-dark);
  color: var(--white);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 12.5px;
}
.btn-block {
  display: flex;
  width: 100%;
}

/* ==============================================================================
   Top Utility Bar
============================================================================== */
.topbar {
  background: var(--sage-dark);
  color: #EDEAE0;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.topbar-left svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gold-light);
}
.topbar-center {
  flex: 1;
  text-align: center;
}
.topbar-center a, .topbar-right a {
  color: #EDEAE0;
  font-size: 12px;
  text-decoration: none;
}
.topbar-center a:hover, .topbar-right a:hover {
  color: var(--gold-light);
}
.topbar-right {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

/* ==============================================================================
   Header & Navigation
============================================================================== */
header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}
.logo-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

.search-bar {
  flex: 1;
  max-width: 480px;
  min-height: 46px;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  gap: 12px;
  margin: 0 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-bar:focus-within {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(150, 114, 58, 0.1);
}
.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14.5px;
  width: 100%;
  color: var(--ink);
}
.search-bar input::placeholder { color: #A5A196; }
.search-bar svg { width: 17px; height: 17px; color: var(--ink-soft); flex-shrink: 0; }
.search-bar button { color: var(--ink-soft); display: flex; align-items: center; }
.search-bar button:hover { color: var(--sage-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.header-actions .icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.15s ease;
}
.header-actions .icon-btn:hover { color: var(--sage-dark); }
.header-actions svg { width: 20px; height: 20px; }
.badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--gold);
  color: var(--white);
  font-size: 9.5px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: -6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.18s ease;
  z-index: 60;
}
.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}
.dropdown-menu a svg { width: 16px; height: 16px; color: var(--ink-soft); flex-shrink: 0; }
.dropdown-menu a:hover { background: var(--cream-2); color: var(--sage-dark); }
.dropdown-menu a.logout { color: var(--danger); }
.dropdown-menu a.logout svg { color: var(--danger); }
.dropdown-menu a.logout:hover { background: var(--danger-bg); }
.dropdown-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}

nav.primary-nav {
  border-top: 1px solid var(--line);
}
nav.primary-nav .wrap {
  display: flex;
  gap: 28px;
  padding: 12px 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
nav.primary-nav .wrap::-webkit-scrollbar { display: none; }
nav.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}
nav.primary-nav a:hover { color: var(--sage-dark); }
nav.primary-nav a.active {
  color: var(--sage-dark);
  font-weight: 600;
  position: relative;
}

.mobile-search {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  margin: 0 28px 14px;
}
.mobile-search svg { width: 16px; height: 16px; color: var(--ink-soft); flex-shrink: 0; }
.mobile-search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  width: 100%;
  color: var(--ink);
}

/* ==============================================================================
   Breadcrumb & Page Head
============================================================================== */
.breadcrumb {
  padding: 18px 0 0;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.breadcrumb a:hover { color: var(--sage-dark); }
.breadcrumb span { margin: 0 6px; color: #C9C1AC; }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

.page-head {
  padding: 18px 0 8px;
}
.page-head h1 { font-size: 32px; margin-bottom: 6px; }
.page-head p { color: var(--ink-soft); font-size: 14px; max-width: 600px; }

/* ==============================================================================
   Hero Slider
============================================================================== */
.hero {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}
.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}
.slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 16/6.8;
  min-height: 480px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide.slide-1 {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.28) 46%, rgba(255, 255, 255, 0) 100%), url('../images/hero-slide-1.jpg');
}
.slide.slide-2 {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.28) 46%, rgba(255, 255, 255, 0) 100%), url('../images/hero-slide-2.jpg');
}
.slide.slide-3 {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.28) 46%, rgba(255, 255, 255, 0) 100%), url('../images/hero-slide-3.jpg');
}
.slide .ring { display: none; }
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 0 32px;
}
.slide-content .inner {
  max-width: 540px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #183C28;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.95);
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.hero-eyebrow svg { width: 14px; height: 14px; }
.slide h1 {
  font-size: 38px;
  line-height: 1.16;
  margin-bottom: 14px;
  color: #12180E;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9), 0 0 12px rgba(255, 255, 255, 0.7);
}
.slide p.sub {
  font-size: 15.5px;
  color: #21291A;
  font-weight: 500;
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.55;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas .btn { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1); }
.hero-ctas .btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-color: rgba(0, 0, 0, 0.12);
  color: #12180E;
}
.hero-ctas .btn-secondary:hover {
  background: #ffffff;
  color: var(--sage-dark);
}

.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  color: var(--ink);
}
.slider-arrow:hover { background: var(--white); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-arrow svg { width: 17px; height: 17px; }

.slider-dots {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 3;
}
.slider-dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(35, 40, 31, 0.28);
  border: none;
  padding: 0;
  transition: all 0.2s ease;
}
.slider-dots button.active {
  background: var(--sage-dark);
  width: 20px;
  border-radius: 4px;
}

.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding: 20px 0;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.hero-trust div { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-soft); }
.hero-trust svg { width: 16px; height: 16px; color: var(--sage); flex-shrink: 0; }

/* ==============================================================================
   Sections & Cards
============================================================================== */
.section { padding: 56px 0; }
.section-alt { background: var(--cream-2); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-head h2 { font-size: 26px; }
.section-head .eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.view-all {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.view-all svg { width: 14px; height: 14px; }

/* Categories Grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Trust Benefits Strip */
.trust-strip {
  padding: 44px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 36px 0 44px;
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-item .ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage-dark);
}
.trust-item .ic svg {
  width: 20px;
  height: 20px;
}
.trust-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px 0;
}
.trust-item p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: all 0.2s ease;
  display: block;
}
.cat-card:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cat-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  background: var(--cream-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-icon svg { width: 22px; height: 22px; color: var(--sage-dark); }
.cat-card h3 { font-size: 15px; font-weight: 600; font-family: var(--font-sans); margin-bottom: 4px; }
.cat-card p { font-size: 12px; color: var(--ink-soft); }

/* ==============================================================================
   Product Cards & Grid
============================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}
.product-card:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.product-thumb {
  aspect-ratio: 1/1;
  background: var(--cream-2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-thumb img { transform: scale(1.04); }
.product-thumb svg.placeholder-icon { width: 44px; height: 44px; color: #C9C1AC; }
.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  letter-spacing: 0.2px;
}
.product-tag.gold,
.product-tag.tag-bestseller {
  background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
  color: #ffffff;
}
.product-tag.tag-offer {
  background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
  color: #ffffff;
}
.product-tag.tag-new {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  color: #ffffff;
}
.product-tag.tag-preorder {
  background: linear-gradient(135deg, #7B1FA2 0%, #4A148C 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(106, 27, 154, 0.28);
}
.badge-preorder {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  background: linear-gradient(135deg, #7B1FA2 0%, #4A148C 100%);
  color: #ffffff;
  padding: 1.5px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.preorder-alert-box {
  background: #F3E5F5;
  border: 1px solid #CE93D8;
  color: #4A148C;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 14px 0;
  font-size: 13px;
  line-height: 1.5;
}
.preorder-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #EDE7F6;
  color: #512DA8;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid #D1C4E9;
}
.product-tag.danger { background: var(--danger); }
.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 2;
  transition: all 0.15s ease;
}
.wishlist-btn svg { width: 16px; height: 16px; color: var(--ink); }
.wishlist-btn.active svg { color: var(--danger); fill: var(--danger); }

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 600;
}
.product-name {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.product-name a:hover { color: var(--sage-dark); }
.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--ink-soft);
}
.product-rating svg { width: 12px; height: 12px; color: var(--gold); }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-price .old {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: #B5AC9A;
  text-decoration: line-through;
  font-weight: 500;
}
.add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.add-btn:hover {
  background: var(--sage);
  transform: scale(1.06);
}
.add-btn svg { width: 16px; height: 16px; }

/* ==============================================================================
   Shop Page & Sidebar Filters
============================================================================== */
.page-head {
  padding: 10px 0 0;
  margin-bottom: 12px;
}
.page-head h1 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.listing { padding: 8px 0 64px; }
.listing-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 36px;
  align-items: start;
}
.filters {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  position: sticky;
  top: 96px;
}
.filters h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 14px;
}
.filter-group {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.filter-group:first-child { padding-top: 0; }
.filter-group:last-child { border-bottom: none; padding-bottom: 0; }
.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 7px 0;
  cursor: pointer;
  user-select: none;
}
.filter-option:hover { color: var(--sage-dark); }
.filter-option .box {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  flex-shrink: 0;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.filter-option.checked .box {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}
.filter-option.checked .box svg { width: 10px; height: 10px; color: var(--white); }
.filter-option-inner { display: flex; align-items: center; }
.filter-option .count { color: #A5A196; font-size: 12px; }
.price-range { display: flex; align-items: center; gap: 8px; }
.price-range input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--ink);
  outline: none;
}
.price-range input:focus { border-color: var(--sage); }
.rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  cursor: pointer;
}
.rating-row svg { width: 14px; height: 14px; color: var(--gold); }
.rating-row span { font-size: 13px; color: var(--ink-soft); margin-left: 4px; }
.clear-filters {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sage-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px;
}
.clear-filters:hover { background: var(--cream-2); }

/* Toolbar */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
  flex-wrap: wrap;
}
.result-count { font-size: 13.5px; color: var(--ink-soft); }
.result-count strong { color: var(--ink); }
.toolbar-right { display: flex; align-items: center; gap: 14px; }
.sort-select {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  background: var(--white);
  color: var(--ink);
}
.sort-select select {
  border: none;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  cursor: pointer;
}
.view-toggle { display: flex; border: 1px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; }
.view-toggle button {
  background: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
}
.view-toggle button.active { background: var(--sage-dark); color: var(--white); }
.view-toggle svg { width: 16px; height: 16px; }

.active-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-2);
  border-radius: var(--radius-pill);
  padding: 6px 8px 6px 12px;
  font-size: 12.5px;
  color: var(--ink);
}
.chip button {
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
}
.chip svg { width: 9px; height: 9px; }

/* Mobile filter toggle */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}
.mobile-filter-btn svg { width: 15px; height: 15px; }

.filter-drawer-header {
  display: none;
}
.filter-backdrop {
  display: none;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}
.pagination a, .pagination button, .pagination span {
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination a:hover, .pagination button:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}
.pagination .active {
  background: var(--sage-dark) !important;
  border-color: var(--sage-dark) !important;
  color: var(--white) !important;
}
.pagination .dots { border: none; background: none; }

/* ==============================================================================
   Single Product Details Page
============================================================================== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 28px;
  align-items: start;
}
.product-gallery {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 96px;
}
/* Product Gallery & Interactive Zoom */
.product-main-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--cream-2);
  border: 1px solid var(--line);
}
.product-main-img {
  aspect-ratio: 1/1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: crosshair;
  touch-action: none;
}
.product-main-img img.zoom-target-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.15s ease-out;
  pointer-events: none;
  transform-origin: center center;
}

/* Thumbnail Gallery Strip */
.product-thumbs-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 6px;
  margin-top: 4px;
  margin-bottom: 0;
  scrollbar-width: thin;
}
.product-thumbs-strip::-webkit-scrollbar {
  height: 4px;
}
.product-thumbs-strip::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}
.product-thumb-item {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: var(--cream-2);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  padding: 2px;
  transition: all 0.2s ease;
}
.product-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.product-thumb-item:hover {
  border-color: var(--sage);
  transform: translateY(-2px);
}
.product-thumb-item.active {
  border-color: var(--sage-dark);
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.25);
}
.product-info-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-info-box .category-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
}
.product-info-box h1 {
  font-size: 28px;
  line-height: 1.2;
}
.product-info-box .price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}
.product-info-box .price-wrap .old-price {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #B5AC9A;
  text-decoration: line-through;
}
.product-info-box .stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
}
.product-info-box .stock-badge.out { color: var(--danger); }
.product-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  overflow: hidden;
}
.qty-stepper button {
  width: 38px;
  height: 38px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
}
.qty-stepper button:hover { background: var(--cream-2); color: var(--ink); }
.qty-stepper input {
  width: 44px;
  border: none;
  outline: none;
  background: transparent;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.details-tab-box {
  margin-top: 56px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
}
.tab-header {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.tab-btn {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 12px;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.tab-btn.active {
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}

/* ==============================================================================
   Cart & Checkout Pages
============================================================================== */
.cart-grid, .checkout-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 36px;
  margin-top: 28px;
  align-items: start;
}
.cart-table-card, .checkout-form-card, .summary-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}
.cart-item-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-row:first-child { padding-top: 0; }
.cart-item-row:last-child { border-bottom: none; padding-bottom: 0; }
.cart-item-thumb {
  width: 80px;
  height: 80px;
  background: var(--cream-2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-weight: 600; font-size: 14.5px; }
.cart-item-price { font-family: var(--font-serif); font-weight: 600; font-size: 15px; }
.remove-btn { color: var(--danger); font-size: 12px; font-weight: 500; }
.remove-btn:hover { text-decoration: underline; }

.summary-card h3 {
  font-size: 18px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.summary-line.total {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

/* Forms */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(150, 114, 58, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Payment Selector Box */
.payment-option-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 14px;
  cursor: pointer;
  background: var(--white);
  transition: all 0.25s ease;
}
.payment-option-card:hover {
  border-color: var(--sage);
  background: #FCFAF6;
}
.payment-option-card.selected {
  border-color: var(--sage-dark);
  background: var(--cream);
  box-shadow: 0 4px 14px rgba(92, 68, 37, 0.08);
}
.payment-option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.payment-logo-img {
  height: 28px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}
.send-money-details {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: none;
}
.payment-option-card.selected .send-money-details { display: block; }
.send-money-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 13.5px;
  line-height: 1.6;
}
.send-money-box ol {
  padding-left: 20px;
  margin: 8px 0;
}
.send-money-box li {
  margin-bottom: 6px;
}
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--cream-2);
  color: var(--ink);
  cursor: pointer;
  margin-left: 6px;
  vertical-align: middle;
  transition: all 0.2s;
}
.copy-btn:hover {
  background: var(--sage-dark);
  color: #fff;
  border-color: var(--sage-dark);
}

/* ==============================================================================
   Order Success & Auth Card
============================================================================== */
.auth-box {
  max-width: 440px;
  margin: 40px auto 60px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.auth-box h2 {
  font-size: 24px;
  margin-bottom: 8px;
  text-align: center;
}
.auth-box p.subtitle {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-size: 13.5px;
}

.success-box {
  max-width: 640px;
  margin: 40px auto 60px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.success-icon {
  width: 64px;
  height: 64px;
  background: #EAF5EA;
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.success-icon svg { width: 32px; height: 32px; }

/* ==============================================================================
   Trust Strip & Promo & Newsletter
============================================================================== */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 28px;
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .ic {
  width: 38px; height: 38px;
  background: var(--cream-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item svg { width: 18px; height: 18px; color: var(--sage-dark); }
.trust-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.trust-item p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.4; }

.promo {
  background: var(--sage-dark);
  color: var(--cream);
  border-radius: var(--radius-lg);
  margin: 56px auto;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.promo h3 { color: var(--white); font-size: 26px; margin-bottom: 8px; }
.promo p { color: #D8D4C4; font-size: 14px; max-width: 420px; }
.promo .btn-secondary { border-color: var(--cream); color: var(--cream); flex-shrink: 0; }
.promo .btn-secondary:hover { background: var(--cream); color: var(--sage-dark); }

.newsletter { text-align: center; padding: 56px 0; }
.newsletter h2 { font-size: 24px; margin-bottom: 10px; }
.newsletter p { color: var(--ink-soft); font-size: 14px; margin-bottom: 24px; }
.newsletter-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 6px;
}
.newsletter-form input {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 10px 14px; font-size: 14px;
}
.newsletter-form button {
  background: var(--sage-dark); color: var(--white);
  border: none; border-radius: var(--radius-pill);
  padding: 10px 22px; font-size: 13.5px; font-weight: 600;
}
.newsletter-form button:hover { background: var(--sage); }

/* ==============================================================================
   Footer
============================================================================== */
footer {
  background: var(--ink);
  color: #C7C4B8;
  padding: 52px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #3A3F35;
}
.footer-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.footer-logo .logo-mark { width: 44px; height: 44px; font-size: 18px; }
.footer-grid p.desc { font-size: 13px; line-height: 1.6; max-width: 260px; }
.footer-col h5 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  color: #8E9385; margin-bottom: 14px; font-weight: 600;
}
.footer-col a {
  display: block; font-size: 13.5px; margin-bottom: 10px; color: #C7C4B8;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: 12.5px; color: #787D6F; flex-wrap: wrap; gap: 10px;
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials svg { width: 16px; height: 16px; }
.footer-socials a:hover { color: var(--gold); }

/* Toast */
.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==============================================================================
   Responsive Styles
============================================================================== */
@media (max-width: 980px) {
  .search-bar { display: none !important; }
  .mobile-search { 
    display: flex !important; 
    align-items: center !important;
    gap: 12px !important;
    background: var(--white) !important;
    border: 1.5px solid var(--line) !important;
    border-radius: var(--radius-pill) !important;
    padding: 11px 18px !important;
    min-height: 46px !important;
    margin: 8px 18px 14px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  }
  .listing-grid { grid-template-columns: 1fr; }
  .filters {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 320px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    background: var(--white) !important;
    z-index: 10005 !important;
    padding: 20px 18px 36px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.28) !important;
    transform: translateX(-100%) !important;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 0 !important;
    border: none !important;
  }
  .filters.open {
    transform: translateX(0) !important;
  }
  .filter-drawer-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1.5px solid var(--line);
  }
  .filter-drawer-close {
    background: var(--cream-2);
    border: 1px solid var(--line);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: var(--ink);
    transition: all 0.15s ease;
  }
  .filter-drawer-close:active {
    background: var(--cream);
    transform: scale(0.95);
  }
  .filter-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    z-index: 10004;
  }
  .filter-backdrop.active {
    display: block !important;
  }
  .mobile-filter-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    cursor: pointer;
  }
  .product-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 14px !important;
  }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-grid, .checkout-grid, .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .promo { flex-direction: column; text-align: center; padding: 36px 26px; }
}

@media (max-width: 680px) {
  .topbar {
    padding: 8px 0 !important;
  }
  .topbar-inner {
    padding: 0 14px !important;
  }
  .topbar-left svg { width: 13px !important; height: 13px !important; }
  .topbar-left, .topbar-center a, .topbar-right a { font-size: 11.5px !important; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 14px !important; }
  .header-inner { 
    padding: 12px 14px 6px !important; 
    gap: 10px !important; 
  }
  .logo-img { width: 38px !important; height: 38px !important; }
  .logo-mark { width: 36px !important; height: 36px !important; font-size: 16px !important; }
  .logo-text { font-size: 18px !important; }
  .logo-text span { font-size: 11px !important; }
  
  .header-actions { gap: 14px !important; }
  .header-actions .icon-btn { font-size: 9.5px !important; gap: 2px !important; }
  .header-actions svg { width: 18px !important; height: 18px !important; }

  .mobile-search {
    margin: 6px 0 12px !important;
    padding: 9px 14px !important;
    min-height: 42px !important;
  }
  .mobile-search input { font-size: 13.5px !important; }

  nav.primary-nav .wrap {
    padding: 10px 14px !important;
    gap: 16px !important;
  }
  .section { padding: 36px 0 !important; }
  .section-head { margin-bottom: 16px !important; }
  .section-head h2 { font-size: 20px !important; }

  .trust-strip {
    padding: 30px 0 !important;
    margin: 24px 0 32px !important;
  }
  .trust-strip .wrap {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px 12px !important;
  }
  .trust-item {
    gap: 10px !important;
  }
  .trust-item .ic {
    width: 38px !important;
    height: 38px !important;
  }
  .trust-item .ic svg {
    width: 18px !important;
    height: 18px !important;
  }
  .trust-item h4 {
    font-size: 13px !important;
    margin-bottom: 2px !important;
  }
  .trust-item p {
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  .breadcrumb {
    padding: 10px 14px 2px !important;
    font-size: 11.5px !important;
  }
  .page-head {
    padding: 2px 14px 0 !important;
    margin-bottom: 6px !important;
  }
  .page-head h1 { font-size: 20px !important; margin: 0 !important; line-height: 1.25 !important; }
  .listing { padding: 4px 0 48px !important; }
  .mobile-filter-btn { margin-bottom: 12px !important; }

  /* 2-Column Mobile Product Cards matching best-seller aesthetics */
  .product-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 10px !important; 
  }
  .product-card {
    border-radius: 10px !important;
  }
  .product-thumb {
    aspect-ratio: 1 / 1 !important;
    background: var(--cream-2) !important;
  }
  .product-body {
    padding: 10px 10px 12px !important;
    gap: 4px !important;
  }
  .product-cat {
    font-size: 9.5px !important;
  }
  .product-name {
    font-size: 12.5px !important;
    line-height: 1.3 !important;
    min-height: 32px !important;
    margin-bottom: 2px !important;
  }
  .product-rating {
    font-size: 11px !important;
    gap: 2px !important;
  }
  .product-rating svg {
    width: 11px !important;
    height: 11px !important;
    color: #E29B27 !important;
    fill: #E29B27 !important;
  }
  .product-foot {
    padding-top: 8px !important;
  }
  .product-price {
    font-size: 14px !important;
  }
  .product-foot .add-btn {
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
  }
  .product-foot .add-btn svg {
    width: 16px !important;
    height: 16px !important;
  }
  .product-tag {
    font-size: 9px !important;
    padding: 3px 6px !important;
  }
  .wishlist-btn {
    width: 28px !important;
    height: 28px !important;
    top: 6px !important;
    right: 6px !important;
  }
  .wishlist-btn svg {
    width: 14px !important;
    height: 14px !important;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cart-item-row { grid-template-columns: 60px 1fr; gap: 10px; }
  .cart-item-thumb { width: 60px; height: 60px; }
  .form-row { grid-template-columns: 1fr; }
  .qr-box { flex-direction: column; text-align: center; }

  .slide { 
    aspect-ratio: auto; 
    min-height: 360px; 
    padding: 30px 0;
  }
  .slide.slide-1, .slide.slide-2, .slide.slide-3 {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.28) 60%, rgba(255, 255, 255, 0.05) 100%), url('../images/hero-slide-1.jpg') !important;
  }
  .slide.slide-2 {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.28) 60%, rgba(255, 255, 255, 0.05) 100%), url('../images/hero-slide-2.jpg') !important;
  }
  .slide.slide-3 {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.28) 60%, rgba(255, 255, 255, 0.05) 100%), url('../images/hero-slide-3.jpg') !important;
  }
  .slide-content { padding: 0 16px; }
  .slide-content .inner { 
    max-width: 100%; 
    padding: 0; 
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .slide h1 { font-size: 24px; line-height: 1.2; margin-bottom: 8px; color: #11180F; }
  .slide p.sub { font-size: 13px; margin-bottom: 16px; line-height: 1.5; color: #21281B; }
  .hero-ctas .btn { padding: 9px 16px; font-size: 12.5px; }
  .hero-trust { gap: 12px; padding: 14px 18px; }

  .account-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .account-main-card { padding: 20px 16px !important; }
  .account-sidebar-card { padding: 16px !important; }
}

/* Account Page Responsive Styles */
.account-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.account-sidebar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
}
.account-main-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
}

