/* ═══════════════════════════════════════════════════════════════════════════
   ROR MASTERPIECES — Main Stylesheet
   Mobile-first, premium, minimal.
   Font: Poppins | Colors: #1a6b3a #c9a84c #ffffff #1a1a1a
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────────────────── */
:root {
  --green:       #1a6b3a;
  --green-dark:  #0d3d22;
  --green-light: #2d8a54;
  --gold:        #c9a84c;
  --gold-dark:   #a8872c;
  --gold-light:  #e4c97a;
  --white:       #ffffff;
  --black:       #1a1a1a;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #6b7280;
  --gray-800:    #374151;
  --red:         #dc2626;
  --red-light:   #fee2e2;
  --font:        'Poppins', 'Inter', sans-serif;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.14);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.18);
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-full: 999px;
  --transition:  0.25s ease;
  --header-h:    72px;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: var(--font); }

/* ── Container ─────────────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media(min-width:768px) { .container { padding: 0 32px; } }
@media(min-width:1280px) { .container { padding: 0 40px; } }

/* ── Typography ────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--black); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--gray-600); line-height: 1.75; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-full);
  font-size: .925rem; font-weight: 600; letter-spacing: .3px;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }
.btn-green {
  background: var(--green); color: var(--white);
  border-color: var(--green);
}
.btn-green:hover { background: #15592f; border-color: #15592f; transform: translateY(-1px); }
.btn-outline-green {
  background: transparent; color: var(--green); border-color: var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--black); }
.btn-outline-gold {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-sm { padding: 8px 20px; font-size: .825rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── Forms ─────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-label span.req { color: var(--red); margin-left: 2px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .925rem; font-family: var(--font);
  color: var(--black); background: var(--white); transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,107,58,.12); }
.form-control::placeholder { color: var(--gray-400); }
.form-control.error { border-color: var(--red); }
.form-error { color: var(--red); font-size: .8rem; margin-top: 4px; }
.form-hint  { color: var(--gray-400); font-size: .8rem; margin-top: 4px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: center; gap: 8px; }
.form-check input[type="checkbox"] { accent-color: var(--green); width: 16px; height: 16px; }
.form-row { display: grid; gap: 16px; }
@media(min-width:576px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

/* ── Alerts ─────────────────────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; margin-bottom: 16px; border-left: 4px solid transparent; }
.alert-success { background: #f0fdf4; border-color: #22c55e; color: #15803d; }
.alert-error   { background: #fef2f2; border-color: var(--red); color: #b91c1c; }
.alert-warning { background: #fffbeb; border-color: #f59e0b; color: #92400e; }
.alert-info    { background: #eff6ff; border-color: #3b82f6; color: #1d4ed8; }
.flash-container { padding-top: 16px; min-height: 0; }

/* ── Announcement Bar ───────────────────────────────────────────────────── */
.announcement-bar {
  background: var(--green); color: var(--white);
  text-align: center; padding: 10px 20px; font-size: .8rem; font-weight: 500;
  letter-spacing: .3px;
}
.announcement-bar p { color: var(--white); line-height: 1.4; }

/* ── Site Header ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h);
}

/* Logo */
.logo, .footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  width: 42px; height: 42px; background: var(--green);
  color: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; letter-spacing: -1px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-size: 1.15rem; font-weight: 800; color: var(--black); letter-spacing: .5px; }
.logo-sub  { font-size: .65rem; font-weight: 500; color: var(--gray-600); letter-spacing: 1px; text-transform: uppercase; }

/* Main Nav */
.main-nav { flex: 1; display: none; }
@media(min-width:1024px) { .main-nav { display: flex; } }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: flex; align-items: center; gap: 4px; padding: 8px 12px;
  font-size: .875rem; font-weight: 500; color: var(--gray-800);
  border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-link:hover { color: var(--green); background: rgba(26,107,58,.06); }
.has-dropdown { position: relative; }
.has-dropdown:hover > .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-arrow { font-size: .65rem; }

/* Mega Menu */
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-8px);
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 24px; min-width: 480px;
  opacity: 0; visibility: hidden; transition: all var(--transition);
  z-index: 999;
}
.mega-menu-inner { display: flex; gap: 40px; }
.mega-col h4 { font-size: .75rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.mega-col ul { display: flex; flex-direction: column; gap: 8px; }
.mega-col ul li a { font-size: .875rem; color: var(--gray-600); transition: var(--transition); }
.mega-col ul li a:hover { color: var(--green); padding-left: 4px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.action-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  color: var(--gray-800); transition: var(--transition); cursor: pointer;
}
.action-btn:hover { color: var(--green); background: rgba(26,107,58,.06); }
.badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--gold); color: var(--white);
  border-radius: var(--radius-full); font-size: .6rem; font-weight: 700;
  min-width: 16px; height: 16px; padding: 0 4px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Account Dropdown */
.account-dropdown-wrap { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-4px); transition: all var(--transition);
  z-index: 999;
}
.account-dropdown-wrap:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-header { padding: 8px 12px 12px; border-bottom: 1px solid var(--gray-100); margin-bottom: 8px; }
.dropdown-header strong { display: block; font-size: .875rem; color: var(--black); }
.dropdown-header small { font-size: .75rem; color: var(--gray-400); }
.account-menu ul li a { display: block; padding: 8px 12px; font-size: .85rem; color: var(--gray-700); border-radius: var(--radius-sm); transition: var(--transition); }
.account-menu ul li a:hover { background: var(--gray-50); color: var(--green); }
.account-menu ul .divider { border-top: 1px solid var(--gray-100); margin: 4px 0; }

/* Search Bar */
.search-bar-wrap {
  background: var(--white); border-top: 1px solid var(--gray-100);
  padding: 16px 0; display: none;
}
.search-bar-wrap.active { display: block; }
.search-form { display: flex; align-items: center; gap: 8px; }
.search-input-wrap { position: relative; flex: 1; }
.search-input-wrap input {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full); font-size: .9rem; outline: none;
  transition: var(--transition);
}
.search-input-wrap input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,107,58,.1); }
.search-suggestions {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); box-shadow: var(--shadow);
  max-height: 320px; overflow-y: auto; z-index: 1001; display: none;
}
.search-suggestions.visible { display: block; }
.suggestion-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; transition: var(--transition); cursor: pointer; }
.suggestion-item:hover { background: var(--gray-50); }
.suggestion-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 6px; }
.suggestion-item .s-name { font-size: .875rem; font-weight: 500; color: var(--black); }
.suggestion-item .s-price { font-size: .8rem; color: var(--green); font-weight: 600; }
.search-submit { background: var(--green); color: var(--white); padding: 12px 24px; border-radius: var(--radius-full); font-size: .875rem; font-weight: 600; border: none; transition: var(--transition); }
.search-submit:hover { background: #15592f; }
.search-close { color: var(--gray-400); font-size: 1.1rem; padding: 8px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition); }
.search-close:hover { background: var(--gray-100); color: var(--black); }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 8px; width: 42px; height: 42px; justify-content: center; align-items: center; }
@media(min-width:1024px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none; background: var(--white);
  border-top: 1px solid var(--gray-100);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.mobile-nav.open { display: block; max-height: 600px; overflow-y: auto; }
.mobile-nav-list { padding: 16px 20px 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list > li > a, .mobile-nav-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; font-size: .9rem; font-weight: 500;
  color: var(--gray-800); border-radius: var(--radius-sm); transition: var(--transition);
  width: 100%; text-align: left;
}
.mobile-nav-list > li > a:hover, .mobile-nav-toggle:hover { background: var(--gray-50); color: var(--green); }
.mobile-submenu { display: none; padding-left: 16px; }
.mobile-submenu.open { display: block; }
.mobile-submenu li a { display: block; padding: 8px 16px; font-size: .85rem; color: var(--gray-600); border-radius: var(--radius-sm); transition: var(--transition); }
.mobile-submenu li a:hover { color: var(--green); }

/* ── Hero Section ───────────────────────────────────────────────────────── */
.hero {
  height: 85vh; min-height: 560px;
  background: linear-gradient(135deg, #0d3d22 0%, #1a6b3a 50%, #2d5a27 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 640px; padding: 0 20px;
}
@media(min-width:768px) { .hero-content { padding: 0 40px; } }
.hero-eyebrow {
  display: inline-block; color: var(--gold); font-size: .75rem;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 20px; border-bottom: 2px solid var(--gold); padding-bottom: 4px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; font-size: clamp(2.2rem, 5vw, 3.8rem); }
.hero-sub { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: .7rem; letter-spacing: 1px; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,.4);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:.4; transform:scaleY(1); } 50% { opacity:1; transform:scaleY(.6); } }

/* ── Section Styles ─────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--green-dark); color: var(--white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow { display: inline-block; color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { margin-bottom: 16px; }
.section-sub { color: var(--gray-600); max-width: 560px; margin: 0 auto; }

/* ── Trust Bar ──────────────────────────────────────────────────────────── */
.trust-bar { background: var(--green); padding: 20px 0; }
.trust-bar-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: .875rem; font-weight: 500; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── Product Card ───────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media(min-width:768px) { .products-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media(min-width:1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition); position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.product-card-image {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: var(--gray-50);
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--white);
  font-size: .65rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-full);
}
.product-badge.badge-new    { background: var(--green); }
.product-badge.badge-sale   { background: var(--red); }
.product-card-wishlist {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); border: none; cursor: pointer;
  transition: var(--transition); color: var(--gray-400);
  opacity: 0;
}
.product-card:hover .product-card-wishlist { opacity: 1; }
.product-card-wishlist:hover, .product-card-wishlist.wishlisted { color: #e53e3e; }
.product-card-wishlist.wishlisted svg { fill: #e53e3e; }
.product-card-body { padding: 16px; }
.product-category { font-size: .7rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.product-name { font-size: .9rem; font-weight: 600; color: var(--black); margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-name a:hover { color: var(--green); }
.product-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.product-price .price     { font-size: 1rem; font-weight: 700; color: var(--green); }
.product-price .old-price { font-size: .85rem; text-decoration: line-through; color: var(--gray-400); }
.product-price .discount  { font-size: .7rem; font-weight: 700; color: var(--red); background: var(--red-light); padding: 2px 6px; border-radius: var(--radius-full); }
.product-card-actions { display: flex; gap: 8px; }
.btn-add-cart { flex: 1; font-size: .8rem; padding: 9px 12px; border-radius: var(--radius-sm); }
.btn-quick-view { width: 36px; height: 36px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gray-600); transition: var(--transition); }
.btn-quick-view:hover { border-color: var(--green); color: var(--green); }
.out-of-stock { font-size: .8rem; color: var(--red); font-weight: 600; }

/* ── Horizontal Scroll Row ──────────────────────────────────────────────── */
.scroll-row { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.scroll-row::-webkit-scrollbar { height: 4px; }
.scroll-row::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 4px; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }
.scroll-row .product-card { min-width: 240px; scroll-snap-align: start; flex-shrink: 0; }
@media(min-width:768px) { .scroll-row .product-card { min-width: 280px; } }

/* ── Category Cards ─────────────────────────────────────────────────────── */
.categories-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media(min-width:768px)  { .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media(min-width:1200px) { .categories-grid { grid-template-columns: repeat(4, 1fr); } }

.category-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; display: flex; align-items: flex-end;
  transition: var(--transition); cursor: pointer;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,61,34,.85) 0%, rgba(13,61,34,.2) 60%, transparent 100%); }
.category-card-body { position: relative; z-index: 1; padding: 20px; width: 100%; }
.category-card-name { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.category-card-count { color: rgba(255,255,255,.75); font-size: .78rem; }

/* ── Brand Story ────────────────────────────────────────────────────────── */
.brand-story { display: grid; gap: 48px; align-items: center; }
@media(min-width:1024px) { .brand-story { grid-template-columns: 1fr 1fr; } }
.brand-story-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.brand-story-image img { width: 100%; height: 100%; object-fit: cover; }
.brand-story-text .section-eyebrow { margin-bottom: 12px; }
.brand-story-text h2 { margin-bottom: 20px; }
.brand-story-text p { margin-bottom: 16px; }
.values-list { display: grid; gap: 16px; margin-top: 28px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-icon { width: 44px; height: 44px; background: rgba(26,107,58,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }
.value-item h4 { font-size: .925rem; margin-bottom: 4px; }
.value-item p { font-size: .85rem; color: var(--gray-600); }

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; gap: 24px; }
@media(min-width:768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--gray-700); font-size: .925rem; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: .875rem; color: var(--black); }
.testimonial-location { font-size: .78rem; color: var(--gray-400); }

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb { padding: 14px 0; }
.breadcrumb-list { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb-list li { font-size: .82rem; color: var(--gray-400); display: flex; align-items: center; gap: 6px; }
.breadcrumb-list li:not(:last-child)::after { content: '/'; color: var(--gray-300); }
.breadcrumb-list li a { color: var(--gray-500); transition: color var(--transition); }
.breadcrumb-list li a:hover { color: var(--green); }
.breadcrumb-list li.current { color: var(--gray-600); font-weight: 500; }

/* ── Shop Sidebar ───────────────────────────────────────────────────────── */
.shop-layout { display: grid; gap: 32px; }
@media(min-width:1024px) { .shop-layout { grid-template-columns: 260px 1fr; } }
.filter-sidebar { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; height: fit-content; position: sticky; top: calc(var(--header-h) + 20px); }
.filter-title { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center; }
.filter-clear { font-size: .8rem; color: var(--green); cursor: pointer; font-weight: 500; }
.filter-section { margin-bottom: 28px; border-bottom: 1px solid var(--gray-100); padding-bottom: 24px; }
.filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-section-title { font-size: .825rem; font-weight: 700; color: var(--gray-800); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.filter-options { display: flex; flex-direction: column; gap: 10px; }
.filter-check { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: .875rem; color: var(--gray-700); }
.filter-check input[type="checkbox"] { accent-color: var(--green); width: 16px; height: 16px; flex-shrink: 0; }
.filter-check:hover { color: var(--green); }
.filter-count { margin-left: auto; font-size: .75rem; color: var(--gray-400); }

/* Price Range Slider */
.price-range-wrap { padding-top: 8px; }
.price-range-inputs { display: flex; gap: 8px; align-items: center; margin-bottom: 14px; }
.price-input { width: 80px; padding: 8px 10px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); font-size: .8rem; font-family: var(--font); outline: none; }
.price-input:focus { border-color: var(--green); }
.price-range-sep { color: var(--gray-400); font-size: .8rem; }
input[type="range"].range-slider { width: 100%; appearance: none; height: 4px; background: var(--gray-200); border-radius: 4px; outline: none; cursor: pointer; }
input[type="range"].range-slider::-webkit-slider-thumb { appearance: none; width: 16px; height: 16px; background: var(--green); border-radius: 50%; cursor: pointer; }

/* Sort Bar */
.shop-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 24px; padding: 14px 18px; background: var(--gray-50); border-radius: var(--radius-sm); }
.shop-count { font-size: .875rem; color: var(--gray-600); }
.shop-count strong { color: var(--black); }
.sort-wrap { display: flex; align-items: center; gap: 8px; }
.sort-label { font-size: .85rem; color: var(--gray-600); }
.sort-select { padding: 8px 32px 8px 12px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: .85rem; background: var(--white); color: var(--black); cursor: pointer; outline: none; font-family: var(--font); transition: var(--transition); }
.sort-select:focus { border-color: var(--green); }

/* Mobile Filter Toggle */
.mobile-filter-btn { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: .875rem; font-weight: 500; color: var(--gray-700); background: var(--white); transition: var(--transition); }
@media(min-width:1024px) { .mobile-filter-btn { display: none; } }

/* ── Product Detail ─────────────────────────────────────────────────────── */
.product-detail { display: grid; gap: 48px; }
@media(min-width:1024px) { .product-detail { grid-template-columns: 1fr 1fr; } }
.product-gallery {}
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; background: var(--gray-50); margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; overflow-x: auto; }
.gallery-thumb { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 2px solid transparent; flex-shrink: 0; transition: var(--transition); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--green); }
.gallery-thumb:hover { border-color: var(--green); }

.product-info {}
.product-info-category { font-size: .75rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.product-info h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.product-info-sku { font-size: .8rem; color: var(--gray-400); margin-bottom: 16px; }
.product-info-sku span { color: var(--gray-600); font-weight: 500; }
.product-price-wrap { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.product-price-wrap .price { font-size: 1.75rem; font-weight: 800; color: var(--green); }
.product-price-wrap .old-price { font-size: 1.1rem; text-decoration: line-through; color: var(--gray-400); }
.product-price-wrap .discount { background: var(--red-light); color: var(--red); font-size: .78rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); }
.stock-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-full); margin-bottom: 20px; }
.stock-in  { background: #f0fdf4; color: #15803d; }
.stock-low { background: #fffbeb; color: #92400e; }
.stock-out { background: #fef2f2; color: #991b1b; }
.product-short-desc { color: var(--gray-600); font-size: .925rem; line-height: 1.75; margin-bottom: 24px; }

/* Variants */
.variant-section { margin-bottom: 20px; }
.variant-label { font-size: .85rem; font-weight: 600; color: var(--gray-800); margin-bottom: 10px; }
.variant-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-btn {
  padding: 8px 18px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 500; cursor: pointer; transition: var(--transition);
  background: var(--white); color: var(--gray-700);
}
.variant-btn:hover { border-color: var(--green); color: var(--green); }
.variant-btn.active { border-color: var(--green); background: var(--green); color: var(--white); }
.variant-btn.unavailable { opacity: .4; cursor: not-allowed; text-decoration: line-through; }

/* Quantity */
.qty-section { margin-bottom: 24px; }
.qty-wrap { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; width: fit-content; }
.qty-btn { width: 42px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 500; cursor: pointer; transition: var(--transition); background: var(--gray-50); border: none; color: var(--gray-700); }
.qty-btn:hover { background: var(--green); color: var(--white); }
.qty-input { width: 56px; height: 44px; text-align: center; border: none; border-left: 1px solid var(--gray-200); border-right: 1px solid var(--gray-200); font-size: .9rem; font-weight: 600; font-family: var(--font); outline: none; }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.detail-actions .btn { flex: 1; min-width: 160px; justify-content: center; }

/* Product Tabs */
.product-tabs { border-top: 1px solid var(--gray-200); padding-top: 48px; margin-top: 48px; }
.tab-list { display: flex; gap: 0; border-bottom: 2px solid var(--gray-100); margin-bottom: 32px; }
.tab-btn { padding: 12px 24px; font-size: .9rem; font-weight: 600; color: var(--gray-500); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); background: none; border-top: none; border-left: none; border-right: none; }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) { background: var(--gray-50); }
.specs-table td { padding: 12px 16px; font-size: .875rem; border-bottom: 1px solid var(--gray-100); }
.specs-table td:first-child { font-weight: 600; color: var(--gray-800); width: 35%; }
.specs-table td:last-child { color: var(--gray-600); }

/* ── Cart ───────────────────────────────────────────────────────────────── */
.cart-layout { display: grid; gap: 32px; }
@media(min-width:1024px) { .cart-layout { grid-template-columns: 1fr 360px; } }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--gray-50); padding: 14px 16px; text-align: left; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-600); border-bottom: 2px solid var(--gray-200); }
.cart-table td { padding: 20px 16px; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-product-img { width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.cart-product-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-product-name { font-size: .9rem; font-weight: 600; color: var(--black); }
.cart-product-variant { font-size: .78rem; color: var(--gray-400); margin-top: 2px; }
.cart-qty-wrap { display: flex; align-items: center; gap: 0; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; width: fit-content; }
.cart-qty-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; transition: var(--transition); background: var(--gray-50); border: none; }
.cart-qty-btn:hover { background: var(--green); color: var(--white); }
.cart-qty-input { width: 42px; height: 32px; text-align: center; border: none; border-left: 1px solid var(--gray-200); border-right: 1px solid var(--gray-200); font-size: .875rem; font-weight: 600; font-family: var(--font); outline: none; }
.cart-remove { background: none; border: none; color: var(--gray-400); cursor: pointer; font-size: 1.1rem; transition: var(--transition); padding: 4px; border-radius: 4px; }
.cart-remove:hover { color: var(--red); background: var(--red-light); }
.cart-price { font-size: .95rem; font-weight: 700; color: var(--green); }
.cart-subtotal { font-weight: 700; color: var(--black); }
.empty-cart { text-align: center; padding: 80px 20px; }
.empty-cart-icon { font-size: 4rem; margin-bottom: 16px; opacity: .3; }
.empty-cart h3 { color: var(--gray-700); margin-bottom: 12px; }
.empty-cart p { color: var(--gray-400); margin-bottom: 28px; }

/* Order Summary Box */
.order-summary { background: var(--gray-50); border-radius: var(--radius); padding: 24px; }
.order-summary h3 { font-size: 1.1rem; margin-bottom: 20px; border-bottom: 1px solid var(--gray-200); padding-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: .9rem; }
.summary-row span:last-child { font-weight: 600; }
.summary-row.total { border-top: 2px solid var(--gray-200); margin-top: 8px; padding-top: 16px; font-size: 1.05rem; font-weight: 700; color: var(--black); }
.summary-row.total span:last-child { color: var(--green); font-size: 1.2rem; }
.summary-row.discount span:last-child { color: var(--red); }
.summary-row.free span:last-child { color: var(--green); }
.coupon-wrap { margin: 16px 0; display: flex; gap: 8px; }
.coupon-input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: .875rem; font-family: var(--font); outline: none; transition: var(--transition); }
.coupon-input:focus { border-color: var(--green); }
.coupon-apply { padding: 10px 18px; background: var(--green); color: var(--white); border: none; border-radius: var(--radius-sm); font-size: .875rem; font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap; font-family: var(--font); }
.coupon-apply:hover { background: #15592f; }
.coupon-message { font-size: .8rem; margin-top: 6px; }
.coupon-message.success { color: #15803d; }
.coupon-message.error   { color: var(--red); }

/* ── Checkout ───────────────────────────────────────────────────────────── */
.checkout-layout { display: grid; gap: 32px; }
@media(min-width:1024px) { .checkout-layout { grid-template-columns: 1fr 380px; } }
.checkout-section { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; margin-bottom: 24px; }
.checkout-section h3 { font-size: 1rem; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 10px; }
.checkout-section h3 .step-num { width: 28px; height: 28px; background: var(--green); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; flex-shrink: 0; }
.payment-option { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); margin-bottom: 12px; }
.payment-option:hover { border-color: var(--green); }
.payment-option.selected { border-color: var(--green); background: rgba(26,107,58,.04); }
.payment-option input[type="radio"] { accent-color: var(--green); margin-top: 2px; }
.payment-option-info h4 { font-size: .9rem; margin-bottom: 4px; }
.payment-option-info p { font-size: .8rem; color: var(--gray-500); }

/* ── Order Confirmation ─────────────────────────────────────────────────── */
.order-success { text-align: center; padding: 60px 20px; }
.order-success-icon { width: 90px; height: 90px; background: #f0fdf4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; }
.order-number-box { background: var(--gray-50); border-radius: var(--radius); padding: 20px; display: inline-flex; align-items: center; gap: 14px; margin: 24px 0; }
.order-number-box .label { font-size: .8rem; color: var(--gray-500); font-weight: 500; }
.order-number-box .number { font-size: 1.3rem; font-weight: 800; color: var(--green); letter-spacing: 1px; }
.order-summary-detail { max-width: 560px; margin: 0 auto; text-align: left; }

/* ── Order Tracking ─────────────────────────────────────────────────────── */
.tracking-form-wrap { max-width: 480px; margin: 0 auto; }
.order-timeline { display: flex; gap: 0; flex-direction: column; margin: 32px 0; }
.timeline-step { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 32px; position: relative; }
.timeline-step:not(:last-child)::before { content: ''; position: absolute; left: 19px; top: 40px; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-step.done::before { background: var(--green); }
.timeline-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--gray-200); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gray-400); transition: var(--transition); }
.timeline-step.done .timeline-dot { background: var(--green); color: var(--white); }
.timeline-step.active .timeline-dot { background: var(--gold); color: var(--white); box-shadow: 0 0 0 4px rgba(201,168,76,.25); }
.timeline-info h4 { font-size: .9rem; margin-bottom: 4px; color: var(--gray-700); }
.timeline-step.done .timeline-info h4, .timeline-step.active .timeline-info h4 { color: var(--black); }
.timeline-info p { font-size: .8rem; color: var(--gray-400); }

/* ── Auth Pages ─────────────────────────────────────────────────────────── */
.auth-wrap { min-height: calc(100vh - var(--header-h) - 60px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: var(--gray-50); }
.auth-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 440px; box-shadow: var(--shadow-xl); }
.auth-logo { display: flex; justify-content: center; margin-bottom: 28px; }
.auth-title { font-size: 1.5rem; text-align: center; margin-bottom: 6px; }
.auth-sub { text-align: center; color: var(--gray-500); font-size: .875rem; margin-bottom: 28px; }
.auth-divider { text-align: center; color: var(--gray-400); font-size: .8rem; margin: 20px 0; position: relative; }
.auth-divider::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--gray-200); }
.auth-divider span { background: var(--white); padding: 0 12px; position: relative; }
.auth-links { text-align: center; margin-top: 20px; font-size: .875rem; color: var(--gray-500); }
.auth-links a { color: var(--green); font-weight: 600; }
.auth-links a:hover { text-decoration: underline; }

/* ── My Account ─────────────────────────────────────────────────────────── */
.account-layout { display: grid; gap: 32px; }
@media(min-width:1024px) { .account-layout { grid-template-columns: 240px 1fr; } }
.account-sidebar { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 8px; height: fit-content; }
.account-nav-link { display: flex; align-items: center; gap: 10px; padding: 12px 16px; font-size: .9rem; font-weight: 500; color: var(--gray-700); border-radius: var(--radius-sm); transition: var(--transition); }
.account-nav-link:hover { background: var(--gray-50); color: var(--green); }
.account-nav-link.active { background: rgba(26,107,58,.1); color: var(--green); font-weight: 600; }
.account-nav-link svg { flex-shrink: 0; }
.account-content { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; }
.account-content h2 { font-size: 1.25rem; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-100); }

/* Orders Table */
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th { background: var(--gray-50); padding: 12px 14px; text-align: left; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-600); border-bottom: 2px solid var(--gray-200); }
.orders-table td { padding: 16px 14px; border-bottom: 1px solid var(--gray-100); font-size: .875rem; vertical-align: middle; }
.order-status { display: inline-flex; align-items: center; gap: 6px; font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: .3px; }
.status-pending    { background: #fffbeb; color: #92400e; }
.status-confirmed  { background: #eff6ff; color: #1d4ed8; }
.status-processing { background: #f0f9ff; color: #0369a1; }
.status-shipped    { background: #f5f3ff; color: #6d28d9; }
.status-delivered  { background: #f0fdf4; color: #15803d; }
.status-cancelled  { background: #fef2f2; color: #991b1b; }
.status-refunded   { background: var(--gray-100); color: var(--gray-600); }

/* ── Page Hero (sub-pages) ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0d3d22 0%, #1a6b3a 50%, #2d5a27 100%);
  padding: 60px 0 48px;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 8px; font-size: clamp(1.75rem, 4vw, 2.75rem); }
.page-hero p  { color: rgba(255,255,255,.75); }
.page-hero .breadcrumb-list li { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb-list li a { color: rgba(255,255,255,.75); }
.page-hero .breadcrumb-list li.current { color: rgba(255,255,255,.9); }
.page-hero .breadcrumb-list li:not(:last-child)::after { color: rgba(255,255,255,.4); }

/* ── Policy Pages ───────────────────────────────────────────────────────── */
.policy-content { max-width: 860px; margin: 0 auto; padding: 60px 20px; }
.policy-content h2 { font-size: 1.3rem; color: var(--black); margin: 36px 0 14px; }
.policy-content h3 { font-size: 1.05rem; color: var(--green); margin: 24px 0 10px; }
.policy-content p  { margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { margin: 12px 0 20px 24px; list-style: disc; }
.policy-content ul li { margin-bottom: 8px; color: var(--gray-600); font-size: .925rem; line-height: 1.7; }
.policy-content .policy-date { font-size: .8rem; color: var(--gray-400); margin-bottom: 32px; }

/* ── About ──────────────────────────────────────────────────────────────── */
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin: 40px 0; }
@media(min-width:768px) { .about-stats { grid-template-columns: repeat(4,1fr); } }
.stat-card { text-align: center; padding: 24px; background: var(--gray-50); border-radius: var(--radius); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--green); margin-bottom: 6px; }
.stat-label  { font-size: .8rem; color: var(--gray-500); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-layout { display: grid; gap: 40px; }
@media(min-width:1024px) { .contact-layout { grid-template-columns: 1fr 360px; } }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { display: flex; gap: 16px; padding: 20px; background: var(--gray-50); border-radius: var(--radius); align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: rgba(26,107,58,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }
.contact-info-card h4 { font-size: .9rem; margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { font-size: .875rem; color: var(--gray-600); }
.contact-info-card a:hover { color: var(--green); }
.map-placeholder { background: var(--gray-100); border-radius: var(--radius); height: 250px; display: flex; align-items: center; justify-content: center; margin-top: 16px; }

/* ── Wishlist ────────────────────────────────────────────────────────────── */
.wishlist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media(min-width:768px)  { .wishlist-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:1200px) { .wishlist-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── 404 ─────────────────────────────────────────────────────────────────── */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.error-code { font-size: clamp(6rem, 20vw, 12rem); font-weight: 900; color: var(--green); opacity: .12; line-height: 1; margin-bottom: -24px; }
.error-title { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 16px; }
.error-sub   { color: var(--gray-500); max-width: 420px; margin: 0 auto 32px; }
.error-search { margin-top: 24px; display: flex; gap: 8px; max-width: 360px; margin-inline: auto; }

/* ── Maintenance ─────────────────────────────────────────────────────────── */
.maintenance-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0d3d22 0%, #1a6b3a 50%, #2d5a27 100%); text-align: center; padding: 40px 20px; }
.maintenance-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(10px); border-radius: var(--radius-lg); padding: 60px 40px; max-width: 520px; width: 100%; }
.maintenance-logo { color: var(--gold); font-size: 3rem; font-weight: 900; margin-bottom: 28px; }
.maintenance-card h1 { color: var(--white); font-size: 2rem; margin-bottom: 16px; }
.maintenance-card p  { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.maintenance-card .contact-link { color: var(--gold); font-weight: 600; }
.maintenance-card .contact-link:hover { text-decoration: underline; }

/* ── Pagination ──────────────────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; margin-top: 48px; }
.pagination-list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.page-link { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: .875rem; font-weight: 500; color: var(--gray-700); transition: var(--transition); }
.page-link:hover { border-color: var(--green); color: var(--green); }
.page-link.active { background: var(--green); border-color: var(--green); color: var(--white); }
.page-ellipsis { color: var(--gray-400); padding: 0 6px; }

/* ── Stars ───────────────────────────────────────────────────────────────── */
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.star.half { opacity: .5; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { background: #0d1f14; color: rgba(255,255,255,.8); margin-top: auto; }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; gap: 40px; }
@media(min-width:768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1200px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo .logo-main { color: var(--white); }
.footer-logo .logo-sub  { color: rgba(255,255,255,.5); }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.55); margin: 16px 0; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-bottom: 20px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: var(--transition); }
.social-link:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.footer-contact p { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.footer-contact p strong { font-size: 1rem; }
.footer-contact a { color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-heading { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: .875rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-links li a:hover { color: var(--white); padding-left: 4px; }

.footer-trust { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center; }
.trust-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.55); font-size: .8rem; font-weight: 500; }
.trust-badge svg { color: var(--gold); flex-shrink: 0; }

.footer-newsletter { background: rgba(255,255,255,.04); padding: 40px 0; }
.newsletter-inner { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
@media(min-width:768px) { .newsletter-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.newsletter-text h3 { color: var(--white); margin-bottom: 6px; font-size: 1.15rem; }
.newsletter-text p { color: rgba(255,255,255,.55); font-size: .875rem; }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-form input { padding: 11px 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-full); color: var(--white); font-size: .875rem; font-family: var(--font); outline: none; width: 260px; max-width: 100%; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; flex-direction: column; gap: 4px; }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.footer-dev { font-size: .75rem; }

/* ── Back to Top ─────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  width: 44px; height: 44px; background: var(--green); color: var(--white);
  border-radius: 50%; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold); transform: translateY(-2px); }

/* ── Cart Toast ──────────────────────────────────────────────────────────── */
.cart-toast {
  position: fixed; bottom: 80px; right: 24px; z-index: 1100;
  background: var(--black); color: var(--white);
  padding: 14px 20px; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 500;
  box-shadow: var(--shadow-xl);
  transform: translateX(120%); transition: transform 0.3s ease;
  max-width: 300px;
}
.cart-toast.show { transform: translateX(0); }
.cart-toast.success { background: #166534; }
.cart-toast.error   { background: #991b1b; }

/* ── Loading Spinner ─────────────────────────────────────────────────────── */
.spinner { width: 24px; height: 24px; border: 3px solid rgba(255,255,255,.3); border-top-color: var(--white); border-radius: 50%; animation: spin .7s linear infinite; display: inline-block; }
.spinner-green { border-color: rgba(26,107,58,.2); border-top-color: var(--green); }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay { position: absolute; inset: 0; background: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; border-radius: inherit; z-index: 10; }

/* ── Utility ─────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-green  { color: var(--green) !important; }
.text-gold   { color: var(--gold) !important; }
.text-red    { color: var(--red)  !important; }
.text-muted  { color: var(--gray-400) !important; }
.fw-bold  { font-weight: 700; }
.fw-semi  { font-weight: 600; }
.mt-auto  { margin-top: auto; }
.d-none   { display: none !important; }
.d-flex   { display: flex; }
.gap-8    { gap: 8px; }
.gap-16   { gap: 16px; }
.mb-0     { margin-bottom: 0; }
.mb-8     { margin-bottom: 8px; }
.mb-16    { margin-bottom: 16px; }
.mb-24    { margin-bottom: 24px; }
.mt-16    { margin-top: 16px; }
.mt-24    { margin-top: 24px; }
.mt-32    { margin-top: 32px; }
.w-100    { width: 100%; }
.overflow-hidden { overflow: hidden; }

/* ── Responsive Visibility ───────────────────────────────────────────────── */
@media(max-width:767px)  { .hide-mobile  { display: none !important; } }
@media(min-width:768px)  { .hide-desktop { display: none !important; } }
@media(max-width:1023px) { .desktop-only { display: none !important; } }

/* ── Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeIn   { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
@keyframes slideIn  { from { transform:translateX(-16px); opacity:0; } to { transform:translateX(0); opacity:1; } }
.fade-in { animation: fadeIn .35s ease forwards; }

/* ── Filter Mobile Overlay ────────────────────────────────────────────────── */
@media(max-width:1023px) {
  .filter-sidebar {
    position: fixed; left: 0; top: 0; bottom: 0; z-index: 900;
    width: 300px; transform: translateX(-100%); transition: transform 0.3s ease;
    overflow-y: auto; border-radius: 0;
    box-shadow: var(--shadow-xl);
  }
  .filter-sidebar.open { transform: translateX(0); }
  .filter-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 899; display: none; }
  .filter-overlay.visible { display: block; }
}

/* ── Search Page ─────────────────────────────────────────────────────────── */
.search-header { margin-bottom: 32px; }
.search-header h1 span { color: var(--green); }
.no-results { text-align: center; padding: 60px 20px; }
.no-results-icon { font-size: 3rem; margin-bottom: 16px; opacity: .4; }

/* ── Review form ─────────────────────────────────────────────────────────── */
.review-card { background: var(--gray-50); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.review-author { font-weight: 700; font-size: .9rem; }
.review-date { font-size: .78rem; color: var(--gray-400); }
.review-body { font-size: .875rem; color: var(--gray-600); line-height: 1.7; }
