@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&family=DM+Sans:wght@300;400;500;600&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
  --cream: #FAF8F4; --cream2: #F3EFE6; --cream3: #E8E0D0;
  --brown: #4A3728; --brown2: #7A5C42;
  --gold: #B8832A; --gold2: #D4A044; --gold-light: #F0D090;
  --green: #2D5A27; --green2: #4A8C42;
  --red: #8B2020;
  --text: #1A1208; --text2: #5A4A38; --text3: #8A7A6A;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(74,55,40,0.10);
  --shadow2: 0 8px 40px rgba(74,55,40,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── TOPBAR ── */
.topbar {
  background: var(--brown); color: rgba(255,255,255,.8);
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 9px 0; text-align: center;
  display: flex; align-items: center; justify-content: center;
  gap: 0; overflow: hidden;
}
.topbar-items { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; justify-content: center; padding: 0 20px; }
.topbar a { color: var(--gold-light); }
.topbar span { display: flex; align-items: center; gap: 7px; }

/* ── NAV ── */
.main-nav {
  background: var(--white); border-bottom: 1px solid var(--cream3);
  position: sticky; top: 0; z-index: 500;
  box-shadow: 0 2px 16px rgba(74,55,40,.07);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 32px; height: 70px; gap: 8px;
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--brown); letter-spacing: 1px; margin-right: 40px; white-space: nowrap; }
.nav-logo span { color: var(--gold); }
.nav-logo small { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 3px; color: var(--text3); text-transform: uppercase; margin-top: -2px; }
.nav-links { display: flex; gap: 2px; flex: 1; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text2); padding: 8px 14px; border-radius: 2px; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-actions { display: flex; gap: 10px; align-items: center; margin-left: auto; }
.nav-cart-btn {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--green); color: white; padding: 10px 20px; border: none; border-radius: 2px; transition: background .15s;
}
.nav-cart-btn:hover { background: var(--green2); }
.cart-badge { background: var(--gold); color: white; border-radius: 50%; width: 20px; height: 20px; font-size: 11px; display: flex; align-items: center; justify-content: center; }
.nav-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; color: var(--brown); display: flex; align-items: center; gap: 6px; }

/* ── MOBILE MENU ── */
.mobile-menu-btn {
  display: none;
  background: none; border: none;
  font-size: 24px; color: var(--brown);
  padding: 8px; margin-left: auto;
  line-height: 1; cursor: pointer;
}
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 600;
  flex-direction: column; padding: 0;
  transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--cream3);
  background: var(--white);
}
.mobile-nav-close {
  background: none; border: none; font-size: 24px;
  color: var(--brown); cursor: pointer; padding: 4px;
}
.mobile-nav-links {
  flex: 1; overflow-y: auto;
  padding: 12px 0;
}
.mobile-nav-links a {
  display: flex; align-items: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text2); padding: 16px 24px;
  border-bottom: 1px solid var(--cream2);
  transition: color .15s, background .15s;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active { color: var(--gold); background: var(--cream2); }
.mobile-nav-footer {
  padding: 20px 24px;
  background: var(--cream2);
  border-top: 1px solid var(--cream3);
}
.mobile-nav-footer a {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--brown);
  padding: 10px 0;
}

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,3.5vw,48px); font-weight: 700; color: var(--brown); }
.section-sub { font-size: 16px; color: var(--text2); margin-top: 10px; }

/* ── BUTTONS ── */
.btn { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; padding: 12px 28px; transition: all .15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green2); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold2); }
.btn-outline { background: transparent; color: var(--brown); border: 1.5px solid var(--brown2); }
.btn-outline:hover { background: var(--cream2); }
.btn-sm { padding: 8px 18px; font-size: 11px; }
.btn-lg { padding: 16px 40px; font-size: 15px; }
.btn-danger { background: #fee2e2; color: var(--red); border: 1px solid #fca5a5; }
.btn-danger:hover { background: var(--red); color: white; }

/* ── BADGES ── */
.badge { display: inline-block; padding: 3px 10px; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 2px; }
.badge-hot { background: #8B2020; color: white; }
.badge-new { background: var(--green); color: white; }
.badge-sale { background: var(--gold); color: white; }

/* ── HERO ── */
.hero { background: linear-gradient(140deg, var(--cream) 0%, var(--cream2) 40%, var(--cream3) 100%); min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::after { content: '🏏'; position: absolute; right: 6%; top: 50%; transform: translateY(-50%); font-size: 280px; opacity: .05; pointer-events: none; }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); background: rgba(184,131,42,.1); padding: 7px 16px; border-radius: 2px; margin-bottom: 22px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px,5.5vw,76px); font-weight: 700; line-height: 1.05; color: var(--brown); margin-bottom: 20px; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc { font-size: 17px; line-height: 1.8; color: var(--text2); max-width: 440px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; border-top: 1px solid var(--cream3); padding-top: 28px; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: var(--brown); display: block; }
.hero-stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text3); }
.hero-cards { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 2; }
.hero-card { background: var(--white); border-radius: 4px; padding: 18px 22px; box-shadow: var(--shadow2); display: flex; align-items: center; gap: 16px; transition: transform .2s; }
.hero-card:hover { transform: translateX(6px); }
.hero-card-icon { font-size: 34px; }
.hero-card-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 700; color: var(--brown); }
.hero-card-price { font-size: 15px; font-weight: 600; color: var(--gold); }

/* ── MARQUEE ── */
.marquee-strip { background: var(--brown); overflow: hidden; padding: 12px 0; }
.marquee-track { display: flex; animation: marquee 24s linear infinite; width: max-content; }
.marquee-item { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); padding: 0 28px; white-space: nowrap; display: flex; align-items: center; gap: 20px; }
.marquee-item::after { content: '✦'; color: var(--gold2); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── CATEGORY GRID ── */
.cat-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.cat-card { background: var(--white); border: 1px solid var(--cream3); border-radius: 4px; padding: 26px 14px; text-align: center; transition: all .2s; cursor: pointer; }
.cat-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.cat-icon { font-size: 34px; margin-bottom: 10px; display: block; }
.cat-name { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brown); }

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.product-card { background: var(--white); border: 1px solid var(--cream3); border-radius: 4px; overflow: hidden; transition: all .2s; }
.product-card:hover { box-shadow: var(--shadow2); transform: translateY(-4px); }
.product-img { height: 220px; background: var(--cream2); display: flex; align-items: center; justify-content: center; font-size: 72px; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.product-img .no-img { opacity: .2; }
.product-img-badge { position: absolute; top: 10px; left: 10px; }
.product-body { padding: 18px 20px; }
.product-cat { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--brown); margin-bottom: 6px; line-height: 1.3; cursor: pointer; }
.product-name:hover { color: var(--gold); }
.product-desc { font-size: 13px; color: var(--text3); line-height: 1.6; margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 700; color: var(--brown); }
.product-price .orig { font-size: 13px; color: var(--text3); text-decoration: line-through; margin-right: 4px; }
.out-of-stock-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 1px; color: var(--red); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.why-card { text-align: center; padding: 34px 22px; background: var(--white); border-radius: 4px; border: 1px solid var(--cream3); }
.why-icon { font-size: 42px; margin-bottom: 14px; display: block; }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--brown); margin-bottom: 8px; }
.why-desc { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ── PROMO ── */
.promo-banner { background: linear-gradient(135deg, var(--brown) 0%, var(--brown2) 100%); padding: 60px 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-radius: 4px; }
.promo-title { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 700; color: var(--white); line-height: 1.2; }
.promo-title em { color: var(--gold2); font-style: italic; }
.promo-sub { font-size: 15px; color: rgba(255,255,255,.7); margin-top: 10px; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card { background: var(--white); border: 1px solid var(--cream3); border-radius: 4px; padding: 30px; }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.testi-text { font-size: 15px; line-height: 1.8; color: var(--text2); margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 700; color: white; }
.testi-name { font-weight: 600; font-size: 15px; color: var(--brown); }
.testi-role { font-size: 12px; color: var(--text3); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--cream2) 0%, var(--cream3) 100%); padding: 48px 0 40px; border-bottom: 1px solid var(--cream3); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 700; color: var(--brown); }
.breadcrumb { font-size: 13px; color: var(--text3); margin-bottom: 8px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── SHOP ── */
.shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 32px; align-items: start; padding: 40px 0 60px; }
.shop-sidebar { background: var(--white); border: 1px solid var(--cream3); border-radius: 4px; padding: 22px; position: sticky; top: 82px; }
.sidebar-heading { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.sidebar-cat { display: flex; align-items: center; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--cream2); font-size: 14px; color: var(--text2); cursor: pointer; transition: color .15s; }
.sidebar-cat:hover, .sidebar-cat.active { color: var(--gold); font-weight: 600; }
.shop-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; gap: 12px; flex-wrap: wrap; }
.search-wrap { display: flex; }
.search-wrap input { padding: 10px 16px; border: 1.5px solid var(--cream3); border-right: none; font-size: 14px; border-radius: 2px 0 0 2px; outline: none; background: var(--white); min-width: 220px; font-family: 'DM Sans', sans-serif; }
.search-wrap input:focus { border-color: var(--gold); }
.search-wrap button { padding: 10px 18px; background: var(--gold); color: white; border: none; border-radius: 0 2px 2px 0; font-size: 14px; }
.sort-select { padding: 10px 14px; border: 1.5px solid var(--cream3); font-size: 13px; border-radius: 2px; outline: none; background: var(--white); font-family: 'DM Sans', sans-serif; }
.shop-products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

/* ── CART DRAWER ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 800; display: none; }
.cart-overlay.open { display: block; }
.cart-drawer { position: fixed; top: 0; right: -460px; bottom: 0; width: 460px; background: var(--white); z-index: 900; display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,.12); transition: right .35s cubic-bezier(.4,0,.2,1); }
.cart-drawer.open { right: 0; }
.cart-header { padding: 24px 28px; border-bottom: 1px solid var(--cream3); display: flex; align-items: center; justify-content: space-between; }
.cart-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--brown); }
.cart-close { background: none; border: none; font-size: 22px; color: var(--text3); cursor: pointer; padding: 4px; }
.cart-close:hover { color: var(--brown); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; -webkit-overflow-scrolling: touch; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--cream2); }
.cart-item-img { width: 64px; height: 64px; background: var(--cream2); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600; color: var(--brown); margin-bottom: 4px; }
.cart-item-price { font-size: 14px; color: var(--gold); font-weight: 600; }
.cart-qty-row { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; background: var(--cream2); border: 1px solid var(--cream3); border-radius: 2px; font-size: 15px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--brown); }
.qty-btn:hover { background: var(--cream3); }
.qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-remove { background: none; border: none; color: var(--text3); font-size: 16px; cursor: pointer; margin-left: auto; }
.cart-remove:hover { color: var(--red); }
.cart-footer { padding: 20px 28px; border-top: 1px solid var(--cream3); }
.cart-totals { margin-bottom: 16px; }
.cart-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text2); padding: 6px 0; }
.cart-total-row { display: flex; justify-content: space-between; font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--brown); padding: 12px 0 0; border-top: 1px solid var(--cream3); margin-top: 6px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text3); }
.cart-empty .icon { font-size: 56px; margin-bottom: 14px; display: block; }

/* ── CHECKOUT ── */
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; padding: 40px 0 60px; }
.form-section { background: var(--white); border: 1px solid var(--cream3); border-radius: 4px; padding: 26px; margin-bottom: 18px; }
.form-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--brown); margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.form-input { padding: 12px 14px; border: 1.5px solid var(--cream3); border-radius: 2px; font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none; transition: border .15s; background: var(--cream); }
.form-input:focus { border-color: var(--gold); background: var(--white); }
.form-input::placeholder { color: var(--text3); }
.payment-option { display: flex; align-items: flex-start; gap: 14px; padding: 14px; border: 1.5px solid var(--cream3); border-radius: 4px; cursor: pointer; margin-bottom: 10px; transition: border .15s; }
.payment-option:hover, .payment-option.selected { border-color: var(--green); background: rgba(45,90,39,.03); }
.payment-option input { accent-color: var(--green); margin-top: 2px; }
.order-summary-card { background: var(--white); border: 1px solid var(--cream3); border-radius: 4px; padding: 22px; position: sticky; top: 82px; }
.summary-item { display: flex; justify-content: space-between; font-size: 14px; color: var(--text2); padding: 8px 0; border-bottom: 1px solid var(--cream2); }
.summary-total { display: flex; justify-content: space-between; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--brown); padding-top: 14px; }

/* ── PRODUCT MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.product-modal { background: var(--white); border-radius: 4px; max-width: 860px; width: 100%; max-height: 90vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; }
.modal-img { background: var(--cream2); display: flex; align-items: center; justify-content: center; font-size: 100px; min-height: 360px; overflow: hidden; padding: 24px; }
.modal-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.modal-body { padding: 36px; }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--white); border: none; font-size: 20px; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 28px; right: 28px; z-index: 9999; padding: 14px 22px; border-radius: 2px; font-size: 14px; font-weight: 500; transform: translateY(60px); opacity: 0; transition: all .3s; pointer-events: none; max-width: 320px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-success { background: var(--green); color: white; }
.toast-error { background: var(--red); color: white; }
.toast-info { background: var(--brown); color: white; }

/* ── FOOTER ── */
footer { background: var(--brown); color: rgba(255,255,255,.8); margin-top: 0; }
.footer-main { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 60px; padding: 60px 32px 48px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--gold2); }
.footer-tagline { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.6); max-width: 250px; margin-bottom: 20px; }
.footer-contact { font-size: 14px; margin-bottom: 8px; display: flex; gap: 8px; }
.footer-contact a { color: var(--gold-light); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold2); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: var(--gold2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 32px; max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); }

/* ── LOADING ── */
.loading { text-align: center; padding: 60px; color: var(--text3); font-size: 14px; }
.spinner { width: 36px; height: 36px; border: 3px solid var(--cream3); border-top-color: var(--gold); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── MISC ── */
.empty-state { text-align: center; padding: 80px 20px; color: var(--text3); }
.empty-state .icon { font-size: 64px; margin-bottom: 16px; display: block; }
.empty-state h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--brown); margin-bottom: 10px; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PNG CATEGORY ICONS ── */
.cat-icon-img {
  width: 48px; height: 48px; object-fit: contain;
  margin-bottom: 10px; display: block;
  margin-left: auto; margin-right: auto;
  filter: invert(22%) sepia(20%) saturate(800%) hue-rotate(340deg) brightness(60%);
  transition: filter .2s;
}
.cat-card:hover .cat-icon-img {
  filter: invert(55%) sepia(50%) saturate(600%) hue-rotate(10deg) brightness(80%);
}
.hero-card-icon-img  { width: 32px; height: 32px; object-fit: contain; }
.no-img-icon         { width: 64px; height: 64px; object-fit: contain; }
.product-fallback-icon { width: 100%; height: 100%; object-fit: contain; opacity: 0.6; padding: 12px; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4,1fr); }
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 28px; }
  .promo-banner { padding: 44px 40px; }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Container & Section spacing ── */
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }
  .section-header { margin-bottom: 32px; }
  .section-sub { font-size: 14px; }

  /* ── Topbar: show only phone & Instagram on mobile ── */
  .topbar { padding: 8px 0; }
  .topbar-items { gap: 16px; flex-wrap: nowrap; justify-content: center; }
  .topbar-items span:nth-child(1),   /* location */
  .topbar-items span:nth-child(4) {  /* shipping */
    display: none;
  }
  .topbar-items span { font-size: 12px; letter-spacing: .5px; }

  /* ── Nav ── */
  .nav-inner { padding: 0 16px; height: 60px; }
  .nav-logo { font-size: 21px; margin-right: 0; }
  .nav-logo small { font-size: 8px; letter-spacing: 2px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cart-btn { padding: 8px 14px; font-size: 12px; letter-spacing: 1px; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav { display: flex; }

  /* ── Hero ── */
  .hero { min-height: auto; }
  .hero::after { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 44px 16px 48px;
    text-align: center;
  }
  .hero-tag { margin-left: auto; margin-right: auto; font-size: 11px; letter-spacing: 2px; padding: 6px 12px; }
  .hero-title { font-size: clamp(38px, 9vw, 52px); margin-bottom: 14px; }
  .hero-desc { font-size: 15px; margin: 0 auto 28px; max-width: 100%; }
  .hero-btns { justify-content: center; gap: 10px; margin-bottom: 36px; }
  .hero-btns .btn-lg { padding: 14px 28px; font-size: 13px; }
  .hero-stats {
    justify-content: center; gap: 24px;
    padding-top: 24px; flex-wrap: wrap;
  }
  .hero-stat-num { font-size: 26px; }
  .hero-cards { display: none; }

  /* ── Marquee ── */
  .marquee-item { font-size: 12px; padding: 0 18px; }

  /* ── Categories ── */
  .cat-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .cat-card { padding: 18px 8px; }
  .cat-icon { font-size: 26px; margin-bottom: 7px; }
  .cat-icon-img { width: 36px; height: 36px; }
  .cat-name { font-size: 10px; letter-spacing: 1px; }

  /* ── Product grid ── */
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .product-img { height: 175px; }
  .product-body { padding: 14px 14px; }
  .product-name { font-size: 16px; }
  .product-price { font-size: 18px; }
  .product-desc { display: none; } /* hide on tiny cards */
  .product-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .product-footer .btn-sm { width: 100%; justify-content: center; }

  /* ── Promo banner ── */
  .promo-banner {
    flex-direction: column; padding: 36px 20px;
    text-align: center; border-radius: 2px; gap: 24px;
  }
  .promo-title { font-size: 28px; }
  .promo-sub { font-size: 14px; }
  .promo-banner .btn-lg { width: 100%; justify-content: center; }

  /* ── Why Us ── */
  .why-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .why-card { padding: 24px 14px; }
  .why-icon { font-size: 32px; }
  .why-title { font-size: 17px; }
  .why-desc { font-size: 13px; }

  /* ── Testimonials ── */
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  /* Horizontal scroll for testimonials — feels native on mobile */
  .testi-grid {
    display: flex; overflow-x: auto; gap: 14px;
    padding-bottom: 12px; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar */
    scrollbar-width: none;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi-card {
    min-width: 82vw; scroll-snap-align: start;
    flex-shrink: 0; padding: 22px;
  }
  .testi-text { font-size: 14px; margin-bottom: 14px; }

  /* ── Shop page ── */
  .shop-layout { grid-template-columns: 1fr; padding: 24px 0 40px; }
  .shop-sidebar { display: none; }
  .shop-top { flex-direction: column; align-items: stretch; gap: 10px; }
  .search-wrap { width: 100%; }
  .search-wrap input { flex: 1; min-width: 0; width: 100%; }
  .sort-select { width: 100%; }
  .shop-products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }

  /* ── Page hero ── */
  .page-hero { padding: 32px 0 28px; }
  .page-hero h1 { font-size: 30px; }

  /* ── Cart drawer ── */
  .cart-drawer {
    width: 100%; right: -100%;
    border-radius: 16px 16px 0 0;
    top: auto; height: 90vh;
    bottom: -90vh;
    transition: bottom .35s cubic-bezier(.4,0,.2,1);
  }
  .cart-drawer.open { bottom: 0; right: 0; }
  .cart-header { padding: 20px 20px 16px; }
  .cart-items { padding: 16px 20px; }
  .cart-footer { padding: 16px 20px; }
  /* Drag indicator */
  .cart-header::before {
    content: '';
    display: block; width: 40px; height: 4px;
    background: var(--cream3); border-radius: 2px;
    margin: 0 auto 12px;
  }
  /* Bigger tap targets */
  .qty-btn { width: 36px; height: 36px; font-size: 18px; }

  /* ── Checkout ── */
  .checkout-layout { grid-template-columns: 1fr; padding: 24px 0 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-section { padding: 20px; }
  .order-summary-card { position: static; }

  /* ── Product modal ── */
  .modal-overlay { padding: 0; align-items: flex-end; }
  .product-modal {
    grid-template-columns: 1fr;
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
  }
  .modal-img { min-height: 240px; font-size: 72px; }
  .modal-body { padding: 24px 20px; }

  /* ── Footer ── */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px; padding: 36px 16px 28px;
  }
  /* Collapsible footer columns on mobile */
  .footer-col { display: none; }   /* hide link cols by default */
  .footer-bottom {
    flex-direction: column; gap: 6px; text-align: center;
    padding: 16px 16px;
  }

  /* ── Toast ── */
  .toast {
    left: 16px; right: 16px; bottom: 16px;
    max-width: none; text-align: center;
  }

  /* ── View All button ── */
  .section > .container > div[style*="text-align:center"] .btn {
    width: 100%; justify-content: center;
  }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 400px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero-title { font-size: 34px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-lg { width: 100%; justify-content: center; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid,
  .shop-products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: 90vw; }
}


/* ═══════════════════════════════════════════════════════
   TOUCH & ACCESSIBILITY IMPROVEMENTS
   ═══════════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover transforms on touch — avoid sticky states */
  .product-card:hover,
  .cat-card:hover,
  .hero-card:hover { transform: none; box-shadow: none; }

  /* Bigger tap targets for interactive elements */
  .btn { min-height: 44px; }
  .qty-btn { min-width: 44px; min-height: 44px; }
  .cart-close, .mobile-menu-btn, .mobile-nav-close { min-width: 44px; min-height: 44px; }
  .sidebar-cat { padding: 13px 0; }
  .nav-links a { padding: 12px 14px; }
}