/* ===== JUTTI EXPRESS — DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --ivory: #FAF3EF; --maroon: #B77A7A; --gold: #C9A227; --sand: #E5B5B5;
  --dark: #1a1a1a; --dark2: #2d2d2d; --white: #ffffff; --gray: #888;
  --maroon-light: #c99393; --gold-light: #d4b44a; --gold-dark: #a88520;
  --maroon-deep: #9e6565;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-sub: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --shadow-gold: 0 4px 20px rgba(201,162,39,.2);
  --radius: 12px; --radius-lg: 20px; --radius-full: 50%;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w: 1320px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; max-width: 100vw; width: 100%; }
body { font-family: var(--font-body); background: var(--ivory); color: var(--dark); line-height: 1.6; max-width: 100vw; width: 100%; }
#pageWrapper { overflow-x: hidden; max-width: 100vw; }
h1,h2 { font-family: var(--font-heading); font-weight: 500; line-height: 1.2; color: var(--dark); }
h3,h4,h5,h6 { font-family: var(--font-body); font-weight: 600; line-height: 1.3; color: var(--dark); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; width: 100%; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 10px; }
.section-title .gold-divider { width: 60px; height: 3px; background: linear-gradient(90deg,transparent,var(--gold),transparent); margin: 15px auto; }
.section-title p { color: var(--gray); max-width: 500px; margin: 0 auto; font-family: var(--font-body); font-size: .85rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: .9rem; letter-spacing: .5px; text-transform: uppercase; transition: var(--transition); }
.btn-primary { background: var(--maroon); color: var(--white); }
.btn-primary:hover { background: var(--maroon-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--dark); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { border: 2px solid var(--maroon); color: var(--maroon); background: transparent; }
.btn-outline:hover { background: var(--maroon); color: var(--white); }
.btn-white { background: var(--white); color: var(--maroon); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* === ANNOUNCEMENT BAR === */
.announcement-bar { background: var(--maroon); color: var(--white); text-align: center; padding: 10px 20px; font-size: .85rem; position: relative; z-index: 1001; overflow: hidden; }
.announcement-bar .announce-text { display: inline-flex; gap: 40px; animation: scrollAnnounce 20s linear infinite; white-space: nowrap; }
@keyframes scrollAnnounce { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.announcement-bar .close-announce { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); background: none; color: var(--white); font-size: 1.1rem; opacity: .7; }
.announcement-bar .close-announce:hover { opacity: 1; }

/* === HEADER (Two-Row Shopify Layout) === */
.header { position: sticky; top: 0; z-index: 1000; background: rgba(250,243,239,.98); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,.05); transition: var(--transition); width: 100%; }
.header.scrolled { box-shadow: var(--shadow-sm); }

/* Top Row: Search | Logo | Icons */
.header-top-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; position: relative; }

/* Left side (search on desktop, hamburger+search on mobile) */
.header-left-mobile { display: none; align-items: center; gap: 14px; }

/* Search box (desktop) */
.header-search-box { display: block; flex: 0 0 auto; max-width: 260px; }
.header-search-form { position: relative; display: flex; align-items: center; border: 1px solid #ddd; border-radius: 4px; padding: 8px 12px; background: #fff; }
.header-search-form svg { width: 18px; height: 18px; stroke: #666; flex-shrink: 0; }
.header-search-form input { border: none; outline: none; background: transparent; font-size: 14px; font-family: var(--font-body); padding: 0 0 0 8px; width: 180px; }
.header-search-form input::placeholder { color: #999; }

/* Center logo — absolute position for true center on all devices */
.logo { position: absolute; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; text-decoration: none; z-index: 1; }
.logo img { height: 45px; width: auto; display: block; }

/* Icons (right side) */
.header-icons { display: flex; align-items: center; gap: 20px; }
.header-icon { text-decoration: none; cursor: pointer; transition: color .3s; position: relative; background: none; border: none; padding: 0; color: var(--dark); display: inline-flex; align-items: center; justify-content: center; }
.header-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.header-icon:hover { color: var(--maroon); }
.header-icon .cart-count { position: absolute; top: -8px; right: -8px; background: var(--maroon); color: var(--white); border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; }

/* Hamburger (mobile only) */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 5px; color: var(--dark); }
.hamburger svg { width: 24px; height: 24px; stroke: currentColor; }
.header-icon-search-mobile { display: none; }

/* Bottom Row: Navigation (desktop) */
.header-bottom-row { display: flex; align-items: center; justify-content: center; padding-bottom: 12px; }
.nav-menu { display: flex; list-style: none; margin: 0; padding: 0; gap: 6px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { text-decoration: none; font-size: .82rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; padding: 10px 14px; display: flex; align-items: center; gap: 5px; transition: color .3s; color: var(--dark); }
.nav-menu > li > a:hover { color: var(--maroon); }
.nav-menu > li > a .dropdown-arrow { width: 10px; height: 10px; stroke: currentColor; transition: transform .3s; fill: none; }
.nav-menu > li:hover > a .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown { position: absolute; top: 100%; left: 0; background: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,.1); min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .3s, visibility .3s, transform .3s; z-index: 100; list-style: none; padding: 10px 0; margin: 0; }
.nav-menu > li:hover > .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { text-decoration: none; padding: 10px 20px; display: block; font-size: .85rem; color: var(--dark2); transition: background .3s, color .3s; }
.nav-dropdown a:hover { background: var(--ivory); color: var(--maroon); }

/* Mega Menu */
.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-10px); background: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,.1); padding: 30px; min-width: 650px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s, transform .3s; z-index: 100; }
.nav-menu > li:hover > .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-menu-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.mega-menu-col h4 { font-family: var(--font-heading); font-size: .95rem; color: var(--maroon); margin-bottom: 15px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.mega-menu-col a { display: block; padding: 6px 0; font-size: .85rem; color: var(--gray); text-decoration: none; }
.mega-menu-col a:hover { color: var(--maroon); padding-left: 5px; }
.mega-menu-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.mega-menu-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.mega-menu-img:hover img { transform: scale(1.05); }

/* Search Panel (drops directly below search bar) */
.search-panel { position: absolute; top: 100%; left: 0; width: 100%; background: transparent; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .25s, visibility .25s, transform .25s; z-index: 1500; pointer-events: none; }
.search-panel.active { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
.search-panel-inner { max-width: 520px; margin: 0; padding: 20px 24px 24px; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.12); border-radius: 0 0 12px 12px; position: relative; }
.search-panel-close { position: absolute; top: 14px; right: 14px; background: none; border: none; cursor: pointer; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .2s; color: #666; font-size: 16px; z-index: 2; }
.search-panel-close:hover { background: #f0f0f0; color: var(--dark); }
.search-panel-close svg { width: 18px; height: 18px; stroke: currentColor; }
.search-panel-topbar { display: none; align-items: center; gap: 10px; margin-bottom: 12px; }
.search-panel-back { background: none; border: none; padding: 6px; cursor: pointer; display: inline-flex; }
.search-panel-back svg { width: 20px; height: 20px; stroke: #333; }
.search-panel-form { margin-bottom: 18px; }
.search-panel-input-wrap { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 999px; padding: 8px 14px; gap: 8px; }
.search-panel-input-wrap input { border: none; flex: 1; font-size: 14px; outline: none; background: transparent; font-family: var(--font-body); }
.search-panel-input-wrap svg { width: 18px; height: 18px; stroke: #888; flex-shrink: 0; }
.search-section-title { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; color: var(--dark); }
.search-popular-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.search-popular-item { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; border: 1px solid #c8c8c8; font-size: 12px; text-decoration: none; color: var(--dark); background: #fff; transition: var(--transition); }
.search-popular-item:hover { border-color: var(--maroon); color: var(--maroon); }
.search-popular-item .arrow { font-size: 11px; }
.search-recommended-list { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 4px; }
.search-product-card { flex: 0 0 140px; text-decoration: none; color: inherit; }
.search-product-card .sp-img { position: relative; padding-top: 120%; border-radius: 4px; overflow: hidden; background: #f8f8f8; }
.search-product-card .sp-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.search-product-card .sp-title { font-size: 13px; margin-top: 8px; margin-bottom: 4px; }
.search-product-card .sp-price { font-size: 12px; font-weight: 600; }

/* Mobile Slide-in Menu */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,.5); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 1999; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--white); transition: left .3s ease; z-index: 2000; overflow-y: auto; padding: 20px; }
.mobile-menu-drawer.active { left: 0; }
.mobile-menu-close { background: none; border: none; cursor: pointer; padding: 5px; margin-bottom: 20px; color: var(--dark); }
.mobile-menu-close svg { width: 24px; height: 24px; stroke: currentColor; }
.mobile-menu-nav { list-style: none; margin: 0; padding: 0; }
.mobile-menu-nav > li { border-bottom: 1px solid rgba(0,0,0,.08); }
.mobile-menu-nav > li > a { text-decoration: none; padding: 15px 0; display: flex; align-items: center; justify-content: space-between; font-size: 15px; color: var(--dark); font-weight: 500; }
.mobile-menu-toggle-btn { background: none; border: none; padding: 5px; cursor: pointer; color: var(--dark); }
.mobile-menu-toggle-btn svg { width: 16px; height: 16px; stroke: currentColor; transition: transform .3s; }
.mobile-menu-nav > li.active > .mobile-menu-toggle-btn svg { transform: rotate(180deg); }
.mobile-submenu { list-style: none; margin: 0; padding: 0 0 0 15px; max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.mobile-submenu.active { max-height: 500px; }
.mobile-submenu a { text-decoration: none; padding: 10px 0; display: block; font-size: 14px; color: var(--gray); }
.mobile-submenu a:hover { color: var(--maroon); }

/* DESKTOP */
@media (min-width: 992px) {
  .header-search-box { display: block; }
  .header-bottom-row { display: flex; }
  .hamburger { display: none; }
  .header-left-mobile { display: none; }
  .header-icon-search-mobile { display: none; }
}

/* TABLET + MOBILE */
@media (max-width: 991px) {
  .header-top-row { padding: 10px 0; position: relative; }
  .header-bottom-row { display: none; }
  .header-search-box { display: none; }
  .header-left-mobile { display: flex; flex-shrink: 0; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; }
  .header-icon-search-mobile { display: inline-flex; }
  .logo { position: absolute; left: 50%; transform: translateX(-50%); max-width: 140px; pointer-events: auto; }
  .logo img { height: 36px; width: auto; }
  .header-icons { gap: 12px; flex-shrink: 0; }
  .header-icon svg { width: 19px; height: 19px; }
  .header-icon .cart-count { width: 15px; height: 15px; font-size: 9px; top: -5px; right: -6px; }
  .search-panel { position: fixed; top: 0; left: 0; height: 100vh; width: 100%; overflow-y: auto; background: #fff; z-index: 2500; }
  .search-panel-inner { max-width: 100%; margin: 0; border-radius: 0; box-shadow: none; padding: 16px; }
  .search-panel-topbar { display: flex; padding-bottom: 8px; border-bottom: 1px solid #eee; margin-bottom: 14px; }
}


/* === HERO === */
.hero { position: relative; height: 90vh; min-height: 600px; display: flex; align-items: center; overflow: hidden; background: var(--dark); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(26,26,26,.7),rgba(183,122,122,.5)); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 650px; padding-left: 5%; }
.hero-content .subtitle { font-family: var(--font-sub); font-style: italic; color: var(--gold); font-size: 1.2rem; margin-bottom: 15px; letter-spacing: 2px; }
.hero-content h1 { font-size: clamp(2.5rem,6vw,4.5rem); margin-bottom: 20px; line-height: 1.1; color: var(--white); }
.hero-content p { font-size: 1.1rem; opacity: .9; margin-bottom: 35px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-pattern { position: absolute; right: -100px; top: 50%; transform: translateY(-50%); width: 500px; height: 500px; border: 2px solid rgba(201,162,39,.2); border-radius: 50%; animation: floatPattern 8s ease-in-out infinite; }
.hero-pattern::before { content: ''; position: absolute; inset: 30px; border: 1px solid rgba(201,162,39,.15); border-radius: 50%; animation: floatPattern 6s ease-in-out infinite reverse; }
@keyframes floatPattern { 0%,100%{transform:translateY(-50%) rotate(0)} 50%{transform:translateY(-53%) rotate(5deg)} }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--white); font-size: .75rem; text-transform: uppercase; letter-spacing: 2px; opacity: .7; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* === OCCASION FILTER BAR === */
.occasion-bar { padding: 30px 0; background: var(--white); border-bottom: 1px solid rgba(0,0,0,.05); overflow-x: auto; }
.occasion-pills { display: flex; gap: 12px; justify-content: center; flex-wrap: nowrap; padding: 0 20px; }
.occasion-pill { padding: 10px 24px; border-radius: 50px; border: 1.5px solid var(--sand); font-size: .85rem; font-weight: 500; white-space: nowrap; background: transparent; color: var(--dark); cursor: pointer; transition: var(--transition); }
.occasion-pill:hover, .occasion-pill.active { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.occasion-pill .emoji { margin-right: 6px; }

/* === COLLECTION CIRCLES === */
.collections { padding: 30px 0 35px; }
.collection-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 18px 20px; justify-items: center; max-width: 1100px; margin: 0 auto; }
.collection-card { text-align: center; cursor: pointer; width: 100%; }
.collection-circle { width: clamp(90px,10vw,120px); height: clamp(90px,10vw,120px); margin: 0 auto 10px; border-radius: 50%; overflow: hidden; border: 3px solid var(--sand); transition: var(--transition); }
.collection-circle img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.collection-card:hover .collection-circle { border-color: var(--gold); transform: scale(1.06); box-shadow: var(--shadow-gold); }
.collection-card:hover .collection-circle img { transform: scale(1.1); }
.collection-card h3 { font-size: .95rem; font-weight: 500; font-family: var(--font-body); }
.collection-card p { font-size: .78rem; color: var(--gray); }

/* === PRODUCT CARDS === */
.featured-products { padding: 80px 0; background: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; }
.product-card { background: var(--ivory); border-radius: var(--radius); overflow: hidden; transition: var(--transition); position: relative; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-image { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: .5s ease; }
.product-image .hover-img { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .hover-img { opacity: 1; }
.product-card:hover .primary-img { opacity: 0; }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--maroon); color: var(--white); padding: 4px 12px; border-radius: 50px; font-size: .7rem; font-weight: 600; text-transform: uppercase; }
.product-wishlist { display: none; }
.product-card:hover .product-wishlist { display: none; }
.product-wishlist:hover { display: none; }
.product-wishlist.active { display: none; }
.quick-add { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(122,30,30,.95); color: var(--white); padding: 12px; text-align: center; font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transform: translateY(100%); transition: var(--transition); cursor: pointer; }
.product-card:hover .quick-add { transform: translateY(0); }

/* === QUICK VIEW POPUP === */
.quickview-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); z-index: 3000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; }
.quickview-overlay.show { opacity: 1; visibility: visible; }
.quickview-popup { background: var(--white); border-radius: var(--radius-lg); max-width: 950px; width: 92%; max-height: 90vh; overflow-y: auto; position: relative; transform: scale(.85) translateY(30px); transition: transform .4s cubic-bezier(.34,1.56,.64,1); box-shadow: 0 25px 80px rgba(0,0,0,.25); }
.quickview-overlay.show .quickview-popup { transform: scale(1) translateY(0); }
.quickview-close { position: absolute; top: 16px; right: 16px; z-index: 10; width: 38px; height: 38px; border-radius: 50%; background: var(--ivory); border: none; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--dark); cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-sm); }
.quickview-close:hover { background: var(--maroon); color: var(--white); transform: rotate(90deg); }
.quickview-content { display: grid; grid-template-columns: 1fr 1fr; }
.quickview-gallery { background: var(--ivory); display: flex; align-items: center; justify-content: center; padding: 40px; min-height: 400px; border-radius: var(--radius-lg) 0 0 var(--radius-lg); overflow: hidden; }
.quickview-gallery img { max-width: 100%; max-height: 450px; object-fit: contain; transition: transform .5s ease; }
.quickview-gallery:hover img { transform: scale(1.05); }
.quickview-details { padding: 40px 35px; display: flex; flex-direction: column; gap: 18px; }
.quickview-details h2 { font-size: 1.6rem; line-height: 1.3; color: var(--dark); margin: 0; }
.qv-rating { display: flex; align-items: center; gap: 8px; }
.qv-rating .stars { color: var(--gold); font-size: .95rem; letter-spacing: 2px; }
.qv-rating .count { font-size: .85rem; color: var(--gray); }
.qv-price { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.qv-price .current { font-weight: 800; font-size: 1.5rem; color: var(--maroon); font-family: var(--font-heading); }
.qv-price .original { text-decoration: line-through; color: var(--gray); font-size: 1rem; }
.qv-price .discount { color: #2d8f2d; font-size: .85rem; font-weight: 700; background: #e8f5e9; padding: 3px 10px; border-radius: 50px; }
.qv-description { font-size: .9rem; color: var(--gray); line-height: 1.7; margin: 0; }
.qv-sizes h4 { font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
.qv-size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.qv-size { width: 42px; height: 42px; border-radius: 8px; border: 2px solid var(--sand); background: var(--white); font-size: .9rem; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.qv-size:hover { border-color: var(--maroon); color: var(--maroon); }
.qv-size.active { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.qv-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.qv-actions .btn { flex: 1; min-width: 140px; justify-content: center; padding: 14px 20px; font-size: .85rem; }
.qv-add-cart { position: relative; overflow: hidden; }
.qv-add-cart:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.qv-trust-badges { display: flex; gap: 16px; flex-wrap: wrap; padding-top: 10px; border-top: 1px solid var(--sand); }
.qv-trust-badges span { font-size: .75rem; color: var(--gray); white-space: nowrap; }

/* Quick View Responsive */
@media (max-width: 768px) {
  .quickview-popup { width: 96%; max-height: 95vh; border-radius: var(--radius); }
  .quickview-content { grid-template-columns: 1fr; }
  .quickview-gallery { min-height: 280px; padding: 25px; border-radius: var(--radius) var(--radius) 0 0; }
  .quickview-gallery img { max-height: 300px; }
  .quickview-details { padding: 25px 20px 30px; gap: 14px; }
  .quickview-details h2 { font-size: 1.3rem; }
  .qv-price .current { font-size: 1.3rem; }
  .qv-actions { flex-direction: column; }
  .qv-actions .btn { width: 100%; }
  .qv-trust-badges { justify-content: center; }
  .quickview-close { top: 10px; right: 10px; width: 32px; height: 32px; font-size: .9rem; }
}
@media (max-width: 480px) {
  .quickview-gallery { min-height: 220px; padding: 20px; }
  .quickview-gallery img { max-height: 240px; }
  .quickview-details { padding: 20px 16px 25px; gap: 12px; }
  .quickview-details h2 { font-size: 1.15rem; }
  .qv-size { width: 38px; height: 38px; font-size: .85rem; }
}
.product-info { padding: 18px; }
.product-info h3 { font-size: .95rem; font-weight: 600; margin-bottom: 6px; }
.product-rating { display: none; }
.product-rating .stars { display: none; }
.product-rating .count { display: none; }
.product-price { display: flex; align-items: center; gap: 8px; }
.product-price .current { font-weight: 700; font-size: 1.05rem; color: var(--maroon); }
.product-price .original { text-decoration: line-through; color: var(--gray); font-size: .85rem; }
.product-price .discount { color: #2d8f2d; font-size: .8rem; font-weight: 600; }
/* Color swatches on card */
.product-swatches { display: flex; gap: 6px; margin-top: 10px; }
.product-swatch { width: 18px; height: 18px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: var(--transition); }
.product-swatch:hover, .product-swatch.active { border-color: var(--dark); transform: scale(1.2); }
.stock-low { font-size: .75rem; color: #c0392b; font-weight: 600; margin-top: 6px; }

/* === BRAND STORY / PARALLAX === */
.brand-story { position: relative; padding: 120px 0; overflow: hidden; background: var(--dark); }
.brand-story-bg { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(183,122,122,.8),rgba(26,26,26,.9)); }
.brand-story .parallax-bg { position: absolute; inset: -50px; background-size: cover; background-position: center; background-attachment: fixed; opacity: .3; }
.brand-story-content { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 700px; margin: 0 auto; }
.brand-story-content h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 20px; color: var(--white); }
.brand-story-content .gold-line { width: 80px; height: 2px; background: var(--gold); margin: 20px auto; }
.brand-story-content p { font-family: var(--font-sub); font-size: 1.15rem; opacity: .85; line-height: 1.8; margin-bottom: 30px; }

/* === PRODUCT SLIDER === */
.product-slider-section { padding: 80px 0; }
.slider-container { overflow: hidden; position: relative; }
.slider-track { display: flex; gap: 25px; transition: transform .5s ease; }
.slider-track .product-card { min-width: 300px; flex-shrink: 0; border: 2px solid var(--sand); }
.slider-track .product-card:hover { border-color: var(--gold); }
.slider-arrows { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.slider-arrow { width: 48px; height: 48px; border-radius: 50%; background: var(--white); border: 2px solid var(--sand); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition); }
.slider-arrow:hover { background: var(--maroon); color: var(--white); border-color: var(--maroon); }

/* === SHOP BY VIDEO === */
.shopvideo-section { padding: 60px 0; background: var(--white); }
.shopvideo-section .section-title h2 { font-family: var(--font-sub); font-size: clamp(1.8rem,4vw,2.5rem); font-weight: 400; color: var(--dark); }
.shopvideo-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.shopvideo-col { display: flex; flex-direction: column; gap: 10px; }
.shopvideo-reel { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 9/16; background: #f0ece6; }
.shopvideo-reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.shopvideo-reel:hover video { transform: scale(1.02); }
.shopvideo-reel .reel-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: var(--white); font-family: var(--font-sub); font-size: 1.1rem; text-align: center; text-shadow: 0 2px 8px rgba(0,0,0,.6); pointer-events: none; white-space: nowrap; }
.shopvideo-reel .reel-play { position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; background: rgba(255,255,255,.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .55rem; backdrop-filter: blur(4px); }
.shopvideo-product { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid #eee; border-radius: 8px; padding: 8px 12px 8px 8px; transition: var(--transition); cursor: pointer; text-decoration: none; color: inherit; }
.shopvideo-product:hover { box-shadow: var(--shadow-sm); }
.shopvideo-product img { width: 42px; height: 42px; border-radius: 6px; object-fit: cover; }
.shopvideo-product .sv-info { font-size: .8rem; }
.shopvideo-product .sv-info .sv-name { font-weight: 500; color: var(--dark); margin-bottom: 2px; font-size: .75rem; }
.shopvideo-product .sv-info .sv-price { font-weight: 600; color: var(--dark); font-size: .8rem; }

/* === TESTIMONIALS (From Their Shoes) === */
.testimonials { padding: 80px 0; background: var(--ivory); }
.testimonials .section-subtitle { font-family: var(--font-sub); font-size: .85rem; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); text-align: center; margin-bottom: 8px; }
.testimonials .section-title h2 { font-family: var(--font-sub); font-weight: 400; font-size: clamp(1.8rem,4vw,2.5rem); }
.testimonial-grid { display: flex; gap: 30px; justify-content: center; align-items: stretch; max-width: 950px; margin: 0 auto; padding-top: 50px; }
.testimonial-card-v2 { background: var(--white); border-radius: 16px; padding: 60px 28px 30px; text-align: center; box-shadow: var(--shadow-sm); width: 300px; flex-shrink: 0; position: relative; transition: var(--transition); }
.testimonial-card-v2.center { transform: translateY(-15px); box-shadow: var(--shadow-md); }
.testimonial-card-v2 .tc-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); border: 4px solid var(--white); box-shadow: var(--shadow-sm); }
.testimonial-card-v2 .tc-stars { color: #333; font-size: .85rem; margin-bottom: 15px; letter-spacing: 3px; }
.testimonial-card-v2 .tc-text { font-family: var(--font-body); font-size: .85rem; line-height: 1.7; color: var(--gray); margin-bottom: 20px; }
.testimonial-card-v2 .tc-name { font-weight: 600; font-size: .9rem; color: var(--dark); }
.testimonial-card-v2 .tc-verified { font-size: .75rem; color: var(--gray); margin-top: 3px; }

/* === FOUNDER QUOTE BANNER === */
.founder-banner { margin: 0; }
.founder-banner-inner { background: var(--maroon); border-radius: var(--radius-lg); display: flex; align-items: stretch; overflow: hidden; position: relative; min-height: 320px; margin: 0 auto; max-width: var(--max-w); }
.founder-quote-side { flex: 1; padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; color: var(--white); position: relative; z-index: 2; }
.founder-quote-mark { font-size: 4rem; line-height: 1; color: var(--dark); opacity: .7; margin-bottom: 20px; font-family: serif; }
.founder-quote-text { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.8; color: var(--white); max-width: 520px; }
.founder-quote-text strong { font-weight: 700; }
.founder-quote-name { font-family: var(--font-body); font-size: .95rem; margin-top: 25px; color: var(--white); opacity: .9; }
.founder-photo-side { width: 350px; flex-shrink: 0; position: relative; display: flex; align-items: flex-end; justify-content: center; }
.founder-photo-side img { height: 100%; width: 100%; object-fit: cover; object-position: top center; }
.founder-photo-side::before { content: ''; position: absolute; top: 20px; right: 20px; width: 100px; height: 100px; border: 2px solid rgba(255,255,255,.2); border-radius: 50%; z-index: 1; }
.founder-photo-side::after { content: ''; position: absolute; bottom: 30px; right: 30px; width: 60px; height: 60px; border: 2px solid rgba(255,255,255,.15); border-radius: 50%; z-index: 1; }

/* === CUSTOMER DIARIES (6-column grid) === */
.ugc-section { padding: 60px 0; background: var(--white); }
.ugc-section .section-title h2 { font-family: var(--font-sub); font-weight: 400; font-size: clamp(1.8rem,4vw,2.5rem); }
.ugc-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.ugc-card { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; }
.ugc-card img { width: 100%; height: auto; object-fit: cover; transition: var(--transition); border-radius: 16px; }
.ugc-card:hover img { transform: scale(1.05); }
.ugc-overlay { position: absolute; inset: 0; background: rgba(183,122,122,.85); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); opacity: 0; transition: var(--transition); }
.ugc-card:hover .ugc-overlay { opacity: 1; }

/* === WHY JUTTI EXPRESS (Circle Image Icons) === */
.why-section { padding: 70px 0; background: var(--white); }
.why-section .why-title { text-align: center; margin-bottom: 40px; }
.why-section .why-title h2 { font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.6rem,3.5vw,2.2rem); color: var(--maroon); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.why-card { text-align: center; }
.why-card:hover .why-icon-circle { transform: scale(1.05); }
.why-icon-circle { width: 130px; height: 130px; margin: 0 auto 18px; border: 2px solid var(--maroon); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); background: var(--white); padding: 15px; position: relative; }
.why-icon-circle::before { content: ''; position: absolute; inset: -8px; border: 1px solid rgba(183,122,122,.3); border-radius: 50%; }
.why-icon-circle img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.why-card h4 { font-family: var(--font-body); font-size: .85rem; font-weight: 500; color: var(--dark); }
.why-card p { font-size: .8rem; color: var(--gray); display: none; }

/* === PRESS / AVAILABLE AT === */
.press-section { padding: 60px 0; background: var(--white); border-top: 1px solid rgba(0,0,0,.05); }
.press-logos { display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
.press-logo { font-family: var(--font-heading); font-size: 1.3rem; color: var(--gray); opacity: .5; transition: var(--transition); cursor: pointer; font-weight: 700; font-style: italic; }
.press-logo:hover { opacity: 1; color: var(--maroon); }
.press-logo-img { display: flex; align-items: center; justify-content: center; transition: var(--transition); opacity: .8; }
.press-logo-img:hover { opacity: 1; transform: scale(1.05); }
.press-logo-img img { height: 50px; width: auto; object-fit: contain; }
.available-at-logos { gap: 40px; }

/* === SEO CONTENT === */
.seo-section { padding: 60px 0; background: var(--ivory); }
.seo-content { max-width: 900px; margin: 0 auto; columns: 2; gap: 40px; }
.seo-content h3 { font-family: var(--font-sub); font-size: 1.2rem; margin-bottom: 10px; color: var(--maroon); break-after: avoid; font-weight: 600; }
.seo-content p { font-size: .85rem; color: var(--gray); margin-bottom: 20px; line-height: 1.7; }

/* === NEWSLETTER === */
.newsletter { padding: 80px 0; background: linear-gradient(135deg,var(--maroon),var(--maroon-deep)); color: var(--white); text-align: center; }
.newsletter h2 { color: var(--white); font-size: clamp(1.8rem,4vw,2.5rem); margin-bottom: 10px; }
.newsletter p { font-family: var(--font-sub); opacity: .8; margin-bottom: 30px; font-size: 1.05rem; }
.newsletter-form { display: flex; max-width: 500px; margin: 0 auto; border-radius: 50px; overflow: hidden; background: rgba(255,255,255,.1); }
.newsletter-form input { flex: 1; padding: 16px 24px; background: transparent; border: none; color: var(--white); font-size: .95rem; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form button { padding: 16px 32px; background: var(--gold); color: var(--dark); font-weight: 700; text-transform: uppercase; font-size: .85rem; letter-spacing: 1px; }
.newsletter-form button:hover { background: var(--gold-light); }

/* === INSTAGRAM FEED === */
.instagram-section { padding: 80px 0; }
.instagram-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.instagram-item { aspect-ratio: 1; border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.instagram-item:hover img { transform: scale(1.1); }
.instagram-item::after { content: '♥'; position: absolute; inset: 0; background: rgba(183,122,122,.7); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; opacity: 0; transition: var(--transition); }
.instagram-item:hover::after { opacity: 1; }

/* === FOOTER === */
.footer { background: var(--dark); color: var(--white); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .footer-logo { margin-bottom: 15px; display: inline-block; }
.footer-brand .footer-logo img { height: 45px; width: auto; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer h4 { font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; color: var(--gold); }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,.6); font-size: .85rem; }
.footer ul a:hover { color: var(--gold); padding-left: 5px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { transform: scale(1.15); }
.footer-social a img { width: 28px; height: 28px; object-fit: contain; border-radius: 50%; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 25px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.5); }
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.payment-icon-img { height: 28px; width: auto; border-radius: 4px; object-fit: contain; background: rgba(255,255,255,.9); padding: 2px 4px; }
.trust-badges { display: flex; gap: 15px; align-items: center; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: rgba(255,255,255,.6); }

/* === CONVERSION: FREE SHIPPING BAR === */
.shipping-bar { background: var(--sand); padding: 10px 20px; text-align: center; }
.shipping-progress { max-width: 400px; margin: 5px auto 0; height: 4px; background: rgba(0,0,0,.1); border-radius: 10px; overflow: hidden; }
.shipping-progress-fill { height: 100%; background: linear-gradient(90deg,var(--gold),var(--maroon)); border-radius: 10px; transition: width .5s ease; }

/* === CONVERSION: PURCHASE NOTIFICATION === */
.purchase-notification { position: fixed; bottom: 20px; left: 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 15px 20px; display: flex; align-items: center; gap: 12px; z-index: 998; transform: translateX(-120%); transition: transform .5s ease; max-width: 350px; }
.purchase-notification.show { transform: translateX(0); }
.purchase-notification img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; }
.purchase-notification .notif-text { font-size: .8rem; }
.purchase-notification .notif-text strong { display: block; font-size: .85rem; }
.purchase-notification .notif-close { position: absolute; top: 8px; right: 10px; background: none; font-size: .9rem; color: var(--gray); }

/* === EXIT INTENT POPUP === */
.exit-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.exit-popup-overlay.show { opacity: 1; visibility: visible; }
.exit-popup { background: var(--white); border-radius: var(--radius-lg); max-width: 500px; width: 90%; overflow: hidden; transform: scale(.8); transition: var(--transition); }
.exit-popup-overlay.show .exit-popup { transform: scale(1); }
.exit-popup-header { background: linear-gradient(135deg,var(--maroon),var(--maroon-deep)); padding: 40px 30px; text-align: center; color: var(--white); }
.exit-popup-header h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.exit-popup-header .discount { font-size: 3rem; font-weight: 800; color: var(--gold); }
.exit-popup-body { padding: 30px; text-align: center; }
.exit-popup-body input { width: 100%; padding: 14px 20px; border: 2px solid var(--sand); border-radius: 50px; font-size: .95rem; margin-bottom: 15px; outline: none; }
.exit-popup-body input:focus { border-color: var(--gold); }
.exit-popup .close-popup { position: absolute; top: 15px; right: 15px; background: rgba(255,255,255,.2); width: 30px; height: 30px; border-radius: 50%; color: var(--white); font-size: 1rem; display: flex; align-items: center; justify-content: center; }

/* === WHATSAPP BUTTON === */
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--white); box-shadow: 0 4px 15px rgba(37,211,102,.4); z-index: 997; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,.5); }

/* === SIZE GUIDE MODAL === */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal { background: var(--white); border-radius: var(--radius-lg); max-width: 600px; width: 90%; max-height: 85vh; overflow-y: auto; padding: 40px; transform: translateY(20px); transition: var(--transition); }
.modal-overlay.show .modal { transform: translateY(0); }
.modal h2 { margin-bottom: 20px; }
.modal .close-modal { position: absolute; top: 15px; right: 15px; background: var(--ivory); width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.size-chart { width: 100%; border-collapse: collapse; margin: 20px 0; }
.size-chart th { background: var(--maroon); color: var(--white); padding: 12px; font-size: .85rem; }
.size-chart td { padding: 10px 12px; border-bottom: 1px solid var(--sand); font-size: .85rem; text-align: center; }
.size-chart tr:hover td { background: var(--ivory); }
.ruler-tool { background: var(--ivory); border-radius: var(--radius); padding: 25px; margin-top: 20px; text-align: center; }
.ruler-visual { height: 40px; background: linear-gradient(90deg,var(--gold) 1px,transparent 1px); background-size: 20px 100%; border: 2px solid var(--gold); border-radius: 4px; margin: 15px 0; position: relative; }

/* === REFERRAL BANNER === */
.referral-banner { background: linear-gradient(90deg,var(--gold),var(--gold-light)); padding: 12px 20px; text-align: center; font-size: .85rem; font-weight: 600; color: var(--dark); }

/* === RECENTLY VIEWED === */
.recently-viewed { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,.1); padding: 15px 20px; z-index: 996; transform: translateY(100%); transition: transform .4s ease; }
.recently-viewed.show { transform: translateY(0); }
.recently-viewed h4 { font-size: .85rem; margin-bottom: 10px; }
.recently-viewed-items { display: flex; gap: 12px; }
.recently-viewed-item { width: 60px; height: 60px; border-radius: 8px; overflow: hidden; flex-shrink: 0; cursor: pointer; border: 2px solid var(--sand); transition: var(--transition); }
.recently-viewed-item:hover { border-color: var(--gold); }
.recently-viewed-item img { width: 100%; height: 100%; object-fit: cover; }

/* === MOBILE BOTTOM NAV === */
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); box-shadow: 0 -2px 15px rgba(0,0,0,.1); z-index: 999; padding: 8px 0; }
.mobile-bottom-nav-items { display: flex; justify-content: space-around; }
.mobile-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: .65rem; color: var(--gray); padding: 5px 10px; transition: var(--transition); position: relative; }
.mobile-nav-item.active { color: var(--maroon); }
.mobile-nav-item .nav-icon { font-size: 1.2rem; }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .8s ease, transform .8s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* === LOADING SCREEN === */
.loading-screen { position: fixed; inset: 0; background: var(--ivory); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity .5s ease; }
.loading-screen.hidden { opacity: 0; pointer-events: none; }
.loading-logo { font-family: var(--font-heading); font-size: 2.5rem; color: var(--maroon); margin-bottom: 20px; animation: pulse 1.5s ease infinite; display: flex; align-items: center; justify-content: center; }
.loading-logo img { height: 60px; width: auto; }
.loading-bar { width: 200px; height: 3px; background: var(--sand); border-radius: 10px; overflow: hidden; }
.loading-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg,var(--gold),var(--maroon)); border-radius: 10px; animation: loadFill 2s ease forwards; }
@keyframes loadFill { to { width:100% } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

/* === SCROLLBAR HIDING === */
.collection-grid, .product-grid, .shopvideo-grid, .testimonial-grid, .ugc-grid, .occasion-pills {
  scrollbar-width: none; -ms-overflow-style: none;
}
.collection-grid::-webkit-scrollbar, .product-grid::-webkit-scrollbar, .shopvideo-grid::-webkit-scrollbar,
.testimonial-grid::-webkit-scrollbar, .ugc-grid::-webkit-scrollbar, .occasion-pills::-webkit-scrollbar { display: none; }

/* =================================================
   RESPONSIVE — CLEAN MOBILE-FIRST REWRITE
   ================================================= */

/* ---------- TABLET LANDSCAPE (max 1024px) ---------- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .celebrity-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(3,1fr); }
  .why-grid { grid-template-columns: repeat(4,1fr); gap: 25px; }
  .ugc-grid { grid-template-columns: repeat(3,1fr); }
  .seo-content { columns: 1; }
  .shopvideo-grid { grid-template-columns: repeat(3,1fr); }
  .founder-banner-inner { min-height: 280px; }
  .founder-photo-side { width: 280px; }
  .collection-grid { grid-template-columns: repeat(3,1fr); gap: 28px 20px; max-width: 600px; }
  .collection-circle { width: clamp(90px,22vw,130px); height: clamp(90px,22vw,130px); }
  .collections { padding: 50px 0 55px; }
}

/* ---------- TABLET / SMALL SCREENS (max 768px) ---------- */
@media (max-width: 768px) {
  /* Global overflow prevention — handled by #pageWrapper instead of html/body */

  /* Header */
  .nav-menu { display: none; }
  .header-bottom-row { display: none; }
  .header-search-box { display: none; }
  .header-left-mobile { display: flex; }
  .hamburger { display: block; }
  .header-icon-search-mobile { display: block; }
  .mega-menu { min-width: auto; width: 100%; position: static; box-shadow: none; padding: 15px; }
  .mega-menu-grid { grid-template-columns: 1fr 1fr; gap: 15px; }

  /* Announcement Bar */
  .announcement-bar { overflow: hidden; }
  .announce-text { animation: none; }

  /* Hero */
  .hero { height: 70vh; min-height: 450px; overflow: hidden; }
  .hero-content { padding: 0 20px !important; text-align: center; margin: 0 auto; max-width: 100% !important; width: 100% !important; box-sizing: border-box; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: .9rem; margin-bottom: 25px; }
  .hero-pattern { display: none !important; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
  .scroll-indicator { display: none; }

  /* Collections — single row swipable */
  .collections { padding: 20px 0; }
  .collection-grid { display: flex !important; grid-template-columns: none !important; gap: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; flex-wrap: nowrap; padding-bottom: 8px; max-width: 100%; justify-items: initial; }
  .collection-card { min-width: 75px; width: auto !important; flex-shrink: 0; scroll-snap-align: start; }
  .collection-circle { width: 75px; height: 75px; margin-bottom: 6px; }
  .collection-card h3 { font-size: .72rem; }

  /* Products — swipable row, ~2 visible */
  .featured-products { padding: 35px 0; }
  .product-grid { display: flex !important; grid-template-columns: none !important; gap: 12px; overflow-x: auto !important; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; flex-wrap: nowrap; padding-bottom: 10px; touch-action: pan-x pan-y; }
  .product-card { width: calc(50% - 6px); min-width: calc(50% - 6px); max-width: calc(50% - 6px); flex-shrink: 0; scroll-snap-align: start; }
  .product-card:hover { transform: none; }
  .section-title { margin-bottom: 25px; }
  .section-title h2 { font-size: 1.5rem; }
  .section-title p { font-size: .9rem; }

  /* Brand Story */
  .brand-story { padding: 60px 0; overflow: hidden; }
  .brand-story .parallax-bg { inset: 0; }
  .brand-story-content { max-width: 100%; padding: 0 20px; box-sizing: border-box; }
  .brand-story-content h2 { font-size: 1.5rem; }
  .brand-story-content p { font-size: .9rem; }

  /* Shop By Video */
  .shopvideo-section { padding: 35px 0; }
  .shopvideo-grid { display: flex !important; grid-template-columns: none !important; gap: 10px; overflow-x: auto !important; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; flex-wrap: nowrap; padding-bottom: 8px; touch-action: pan-x pan-y; }
  .shopvideo-col { width: calc(50% - 5px); min-width: calc(50% - 5px); max-width: calc(50% - 5px); flex-shrink: 0; scroll-snap-align: start; }

  /* Testimonials — swipable, 1 full + 20% peek */
  .testimonials { padding: 40px 0; }
  .testimonial-grid { display: flex !important; flex-direction: row !important; gap: 12px; overflow-x: auto !important; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; padding: 45px 0 10px; align-items: stretch; flex-wrap: nowrap; max-width: 100%; touch-action: pan-x pan-y; }
  .testimonial-card-v2 { width: 75%; min-width: 75%; max-width: 75%; flex-shrink: 0; scroll-snap-align: center; }
  .testimonial-card-v2.center { transform: none; }

  /* Founder Banner */
  .founder-banner { overflow: hidden; }
  .founder-banner-inner { flex-direction: column; min-height: auto; }
  .founder-quote-side { padding: 30px 20px; }
  .founder-quote-text { font-size: .95rem; max-width: 100%; }
  .founder-quote-mark { font-size: 3rem; margin-bottom: 12px; }
  .founder-photo-side { width: 100%; height: auto; min-height: 350px; }
  .founder-photo-side img { object-fit: contain; object-position: bottom center; }

  /* Customer Diaries — 3 visible, rest swipable */
  .ugc-section { padding: 35px 0; }
  .ugc-grid { display: flex !important; grid-template-columns: none !important; gap: 8px; overflow-x: auto !important; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; flex-wrap: nowrap; padding-bottom: 8px; touch-action: pan-x pan-y; }
  .ugc-card { width: calc(33.33% - 6px); min-width: calc(33.33% - 6px); max-width: calc(33.33% - 6px); flex-shrink: 0; scroll-snap-align: start; border-radius: 10px; }
  .ugc-card img { border-radius: 10px; }

  /* Why Section */
  .why-section { padding: 40px 0; }
  .why-grid { grid-template-columns: repeat(2,1fr); gap: 25px; }
  .why-icon-circle { width: 100px; height: 100px; padding: 12px; }
  .why-icon-circle::before { inset: -6px; }
  .why-title { margin-bottom: 25px !important; }

  /* Press / Available At */
  .press-section { padding: 30px 0; overflow: hidden; }
  .press-logos { gap: 15px 20px; flex-wrap: wrap; justify-content: center; max-width: 100%; }
  .press-logo-img img { height: 32px; max-width: 100%; }
  .press-logo-img { max-width: 45%; }

  /* SEO */
  .seo-section { padding: 40px 0; overflow: hidden; }
  .seo-content { columns: 1; max-width: 100%; padding: 0 5px; }

  /* Newsletter */
  .newsletter { padding: 40px 0; overflow: hidden; }
  .newsletter h2 { font-size: 1.4rem; }
  .newsletter-form { flex-direction: column; border-radius: 12px; gap: 0; max-width: 100%; }
  .newsletter-form input { border-radius: 12px 12px 0 0; padding: 14px 20px; }
  .newsletter-form button { border-radius: 0 0 12px 12px; padding: 14px 20px; }

  /* Instagram */
  .instagram-section { padding: 40px 0; }
  .instagram-grid { grid-template-columns: repeat(3,1fr); gap: 6px; }

  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand .footer-logo img { height: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .payment-icons { justify-content: center; flex-wrap: wrap; }

  /* Quick View */
  .quickview-popup { width: 96%; max-height: 95vh; }
  .quickview-content { grid-template-columns: 1fr; }
  .quickview-gallery { min-height: 250px; padding: 20px; border-radius: var(--radius) var(--radius) 0 0; }

  /* Show Quick View button always on mobile (no hover needed) */
  .quick-add { transform: translateY(0); font-size: .75rem; padding: 8px; }
}

/* ---------- PHONE (max 480px) ---------- */
@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 12px; }
  .section-title { margin-bottom: 20px; }
  .section-title h2 { font-size: 1.3rem; }

  /* Announcement */
  .announcement-bar { padding: 8px 12px; font-size: .75rem; }

  /* Hero */
  .hero { height: 55vh; min-height: 350px; }
  .hero-content h1 { font-size: 1.4rem; }
  .hero-content p { font-size: .82rem; line-height: 1.5; }
  .hero-content .subtitle { font-size: .9rem; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: .8rem; }

  /* Collections — single row swipable */
  .collections { padding: 15px 0; }
  .collection-grid { display: flex !important; grid-template-columns: none !important; gap: 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; flex-wrap: nowrap; padding-bottom: 6px; justify-items: initial; }
  .collection-card { min-width: 68px; width: auto !important; flex-shrink: 0; scroll-snap-align: start; }
  .collection-circle { width: 68px; height: 68px; margin-bottom: 4px; }
  .collection-card h3 { font-size: .65rem; }

  /* Products — swipable */
  .featured-products { padding: 25px 0; }
  .product-grid { display: flex !important; grid-template-columns: none !important; gap: 10px; overflow-x: auto !important; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; flex-wrap: nowrap; padding-bottom: 8px; touch-action: pan-x pan-y; }
  .product-card { width: calc(50% - 5px); min-width: calc(50% - 5px); max-width: calc(50% - 5px); flex-shrink: 0; scroll-snap-align: start; }
  .product-card:hover { transform: none; }
  .product-info { padding: 10px; }
  .product-info h3 { font-size: .75rem; }
  .product-price .current { font-size: .88rem; }
  .product-price .original { font-size: .72rem; }
  .product-price .discount { font-size: .68rem; }
  .product-swatches { gap: 4px; }
  .product-swatch { width: 14px; height: 14px; }
  .stock-low { font-size: .68rem; padding: 3px 8px; }

  /* Brand Story */
  .brand-story { padding: 40px 0; }
  .brand-story-content h2 { font-size: 1.25rem; }
  .brand-story-content p { font-size: .82rem; line-height: 1.6; }
  .brand-story-content .btn { padding: 10px 24px; font-size: .78rem; }

  /* Shop By Video — swipable, 2 visible */
  .shopvideo-section { padding: 25px 0; }
  .shopvideo-grid { display: flex !important; grid-template-columns: none !important; gap: 10px; overflow-x: auto !important; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; flex-wrap: nowrap; padding-bottom: 8px; touch-action: pan-x pan-y; }
  .shopvideo-col { width: calc(50% - 5px); min-width: calc(50% - 5px); max-width: calc(50% - 5px); flex-shrink: 0; scroll-snap-align: start; }
  .shopvideo-product { padding: 6px 8px; }
  .shopvideo-product img { width: 32px; height: 32px; }
  .shopvideo-product .sv-info .sv-name { font-size: .68rem; }
  .shopvideo-product .sv-info .sv-price { font-size: .72rem; }

  /* Testimonials — swipable, 1 full + 20% peek */
  .testimonials { padding: 25px 0; }
  .testimonial-grid { display: flex !important; flex-direction: row !important; gap: 10px; overflow-x: auto !important; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; padding: 40px 0 8px 0; align-items: stretch; flex-wrap: nowrap; touch-action: pan-x pan-y; }
  .testimonial-card-v2 { width: 78%; min-width: 78%; max-width: 78%; flex-shrink: 0; scroll-snap-align: center; padding: 45px 18px 20px; }
  .testimonial-card-v2.center { transform: none; box-shadow: var(--shadow-sm); }
  .testimonial-card-v2 .tc-photo { width: 60px; height: 60px; top: -30px; }
  .testimonial-card-v2 .tc-stars { font-size: .72rem; margin-bottom: 8px; }
  .testimonial-card-v2 .tc-text { font-size: .78rem; line-height: 1.6; margin-bottom: 12px; }
  .testimonial-card-v2 .tc-name { font-size: .82rem; }

  /* Founder */
  .founder-banner { padding: 25px 0 !important; }
  .founder-banner-inner { border-radius: var(--radius); }
  .founder-quote-side { padding: 20px 16px; }
  .founder-quote-mark { font-size: 2.2rem; margin-bottom: 8px; }
  .founder-quote-text { font-size: .82rem; line-height: 1.6; }
  .founder-quote-name { font-size: .82rem; margin-top: 12px; }
  .founder-photo-side { height: auto; min-height: 300px; }
  .founder-photo-side img { object-fit: contain; object-position: bottom center; }

  /* Customer Diaries — 3 visible, rest swipable */
  .ugc-section { padding: 25px 0; }
  .ugc-grid { display: flex !important; grid-template-columns: none !important; gap: 8px; overflow-x: auto !important; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; flex-wrap: nowrap; padding-bottom: 8px; touch-action: pan-x pan-y; }
  .ugc-card { width: calc(33.33% - 6px); min-width: calc(33.33% - 6px); max-width: calc(33.33% - 6px); flex-shrink: 0; scroll-snap-align: start; border-radius: 12px; }
  .ugc-card img { border-radius: 12px; }

  /* Why Section */
  .why-section { padding: 25px 0; }
  .why-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .why-icon-circle { width: 80px; height: 80px; padding: 10px; }
  .why-icon-circle::before { inset: -5px; }
  .why-card h4 { font-size: .75rem; }
  .why-title { margin-bottom: 18px !important; }
  .why-title h2 { font-size: 1.2rem !important; }

  /* Press / Available At */
  .press-section { padding: 15px 0; overflow: hidden; }
  .press-logos { gap: 10px 15px; flex-wrap: wrap; justify-content: center; }
  .press-logo-img img { height: 24px; max-width: 100%; }
  .press-logo-img { max-width: 42%; }
  .available-at-logos { gap: 10px 15px; }

  /* SEO */
  .seo-section { padding: 25px 0; overflow: hidden; }
  .seo-content { padding: 0 4px; }
  .seo-content h3 { font-size: .9rem; }
  .seo-content p { font-size: .78rem; line-height: 1.6; }

  /* Newsletter */
  .newsletter { padding: 30px 0; }
  .newsletter h2 { font-size: 1.15rem; }
  .newsletter p { font-size: .82rem; margin-bottom: 18px; }

  /* Instagram */
  .instagram-section { padding: 25px 0; }
  .instagram-grid { grid-template-columns: repeat(3,1fr); gap: 4px; }

  /* Footer */
  .footer { padding: 30px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-brand { text-align: center; }
  .footer-brand p { max-width: 100%; margin: 0 auto; font-size: .82rem; }
  .footer-brand .footer-logo { display: block; text-align: center; }
  .footer-brand .footer-logo img { margin: 0 auto; height: 34px; }
  .footer-social { justify-content: center; }
  .footer h4 { font-size: .82rem; margin-bottom: 10px; }
  .footer ul a { font-size: .78rem; }
  .footer-bottom { padding: 15px 0; }
  .footer-bottom p { font-size: .7rem; }
  .payment-icons { justify-content: center; flex-wrap: wrap; gap: 6px; }
  .payment-icon-img { height: 18px; }

  /* WhatsApp Float */
  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .whatsapp-float img { width: 24px !important; height: 24px !important; }

  /* Purchase Notification */
  .purchase-notification { max-width: 280px; padding: 8px 12px; left: 8px; bottom: 8px; }

  /* Loading Screen */
  .loading-logo img { height: 38px; }

  /* Quick View */
  .quickview-gallery { min-height: 200px; padding: 16px; }
  .quickview-gallery img { max-height: 220px; }
  .quickview-details { padding: 16px 14px 20px; gap: 10px; }
  .quickview-details h2 { font-size: 1.1rem; }
  .qv-size { width: 36px; height: 36px; font-size: .82rem; }
  .qv-actions { flex-direction: column; }
  .qv-actions .btn { width: 100%; font-size: .82rem; padding: 12px; }
  .qv-trust-badges { justify-content: center; gap: 10px; }
  .qv-trust-badges span { font-size: .68rem; }
}


/* ============================================
   INNER PAGES STYLES
   ============================================ */

/* === PAGE HERO === */
.page-hero { background: linear-gradient(135deg,var(--maroon),var(--maroon-deep)); padding: 60px 0 50px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q45 15 45 30 Q45 45 30 55 Q15 45 15 30 Q15 15 30 5Z' fill='none' stroke='rgba(201,162,39,0.08)' stroke-width='1'/%3E%3C/svg%3E"); opacity: .5; }
.page-hero h1 { font-size: clamp(2rem,5vw,3rem); margin-bottom: 10px; color: var(--white); position: relative; }
.page-hero p { opacity: .8; font-size: 1rem; position: relative; }
.page-hero .breadcrumb { margin-top: 15px; position: relative; }
.page-hero .breadcrumb, .page-hero .breadcrumb a { color: rgba(255,255,255,.6); font-size: .85rem; }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb strong { color: var(--white); }

/* === COLLECTION / LISTING === */
.listing-page { padding: 40px 0 80px; }
.listing-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 15px; }
.listing-toolbar .result-count { font-size: .9rem; color: var(--gray); }
.listing-toolbar .result-count strong { color: var(--dark); }
.listing-toolbar .sort-controls { display: flex; align-items: center; gap: 10px; }
.listing-toolbar select { padding: 10px 35px 10px 15px; border: 2px solid var(--sand); border-radius: 8px; font-size: .85rem; font-family: var(--font-body); background: var(--white); cursor: pointer; outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.listing-toolbar select:focus { border-color: var(--gold); }
.view-toggles { display: flex; gap: 5px; }
.view-toggle { width: 38px; height: 38px; border: 2px solid var(--sand); border-radius: 8px; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: .9rem; cursor: pointer; }
.view-toggle.active { border-color: var(--maroon); background: var(--maroon); color: var(--white); }
.filter-sidebar { display: flex; gap: 40px; }
.filters { width: 260px; flex-shrink: 0; }
.filter-group { margin-bottom: 25px; border-bottom: 1px solid var(--sand); padding-bottom: 20px; }
.filter-group h4 { font-size: .9rem; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.filter-group h4::after { content: '−'; font-size: 1.2rem; font-weight: 300; }
.filter-group.collapsed h4::after { content: '+'; }
.filter-group label { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--gray); padding: 5px 0; cursor: pointer; transition: var(--transition); }
.filter-group label:hover { color: var(--dark); }
.filter-group input[type="checkbox"] { accent-color: var(--maroon); width: 16px; height: 16px; }
.filter-color-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-swatch { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--sand); cursor: pointer; transition: var(--transition); }
.filter-swatch:hover, .filter-swatch.active { border-color: var(--dark); transform: scale(1.15); }
.price-range { display: flex; gap: 10px; align-items: center; }
.price-range input { width: 80px; padding: 8px 10px; border: 2px solid var(--sand); border-radius: 6px; font-size: .85rem; outline: none; }
.price-range span { color: var(--gray); }
.listing-products { flex: 1; }
.product-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.load-more { text-align: center; margin-top: 40px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.page-num { width: 40px; height: 40px; border-radius: 8px; border: 2px solid var(--sand); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.page-num.active, .page-num:hover { background: var(--maroon); color: var(--white); border-color: var(--maroon); }

/* === ABOUT PAGE === */
.about-hero-content { max-width: 700px; margin: 0 auto; }
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: 15px; }
.about-text p { color: var(--gray); line-height: 1.8; margin-bottom: 15px; }
.stats-row { display: flex; gap: 40px; margin-top: 30px; }
.stat-item { text-align: center; }
.stat-item .stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--maroon); display: block; }
.stat-item .stat-label { font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.timeline { max-width: 700px; margin: 0 auto; position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--sand); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item::before { content: ''; position: absolute; left: -29px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold); }
.timeline-item .year { font-family: var(--font-heading); font-size: 1.2rem; color: var(--maroon); font-weight: 700; margin-bottom: 5px; }
.timeline-item p { color: var(--gray); font-size: .9rem; line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; }
.team-card { text-align: center; }
.team-card .team-photo { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 15px; overflow: hidden; border: 3px solid var(--sand); }
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1rem; margin-bottom: 3px; }
.team-card p { font-size: .8rem; color: var(--gray); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.value-card { text-align: center; padding: 40px 25px; background: var(--white); border-radius: var(--radius); transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.value-card .value-icon { font-size: 2.5rem; margin-bottom: 15px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* === CART PAGE === */
.cart-page { padding: 40px 0 80px; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cart-items { background: var(--white); border-radius: var(--radius); padding: 25px; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; border-bottom: 2px solid var(--sand); margin-bottom: 20px; }
.cart-header h2 { font-size: 1.3rem; }
.cart-header span { font-size: .85rem; color: var(--gray); }
.cart-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--sand); }
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 120px; height: 140px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-details h3 { font-size: 1rem; margin-bottom: 5px; }
.cart-item-details .item-variant { font-size: .8rem; color: var(--gray); margin-bottom: 10px; }
.cart-item-details .item-price { font-weight: 700; color: var(--maroon); font-size: 1.1rem; }
.cart-item-details .item-original { text-decoration: line-through; color: var(--gray); font-size: .85rem; margin-left: 8px; font-weight: 400; }
.cart-item-qty { display: flex; align-items: center; gap: 0; border: 2px solid var(--sand); border-radius: 6px; overflow: hidden; margin-top: 10px; width: fit-content; }
.cart-item-qty button { width: 32px; height: 32px; background: var(--ivory); font-size: .9rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.cart-item-qty span { width: 32px; text-align: center; font-weight: 600; font-size: .85rem; }
.cart-item-actions { display: flex; gap: 15px; margin-top: 10px; }
.cart-item-actions button { background: none; font-size: .8rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.cart-item-actions button:hover { color: var(--maroon); }
.cart-item-remove { margin-left: auto; align-self: flex-start; }
.order-summary { background: var(--white); border-radius: var(--radius); padding: 25px; position: sticky; top: 100px; }
.order-summary h3 { font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--sand); }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: .9rem; }
.summary-row .label { color: var(--gray); }
.summary-row.total { font-weight: 700; font-size: 1.15rem; padding-top: 15px; margin-top: 10px; border-top: 2px solid var(--sand); color: var(--maroon); }
.summary-row .free { color: #2d8f2d; font-weight: 600; }
.coupon-input { display: flex; gap: 8px; margin: 15px 0; }
.coupon-input input { flex: 1; padding: 10px 15px; border: 2px solid var(--sand); border-radius: 8px; font-size: .85rem; outline: none; }
.coupon-input input:focus { border-color: var(--gold); }
.coupon-input button { padding: 10px 20px; background: var(--ivory); font-weight: 600; font-size: .8rem; border-radius: 8px; color: var(--maroon); }
.checkout-btn { width: 100%; margin-top: 15px; justify-content: center; }
.cart-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 15px; justify-content: center; }
.cart-trust span { font-size: .75rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.empty-cart { text-align: center; padding: 60px 20px; }
.empty-cart .empty-icon { font-size: 4rem; margin-bottom: 20px; }
.empty-cart h2 { margin-bottom: 10px; }
.empty-cart p { color: var(--gray); margin-bottom: 25px; }

/* === WISHLIST PAGE === */
.wishlist-page { padding: 40px 0 80px; }
.wishlist-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; }
.wishlist-card { position: relative; }
.wishlist-card .remove-wish { position: absolute; top: 15px; right: 15px; z-index: 5; width: 32px; height: 32px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); font-size: .85rem; }
.wishlist-card .remove-wish:hover { background: #fee; color: #c0392b; }
.wishlist-card .move-to-cart { margin-top: 10px; width: 100%; justify-content: center; padding: 10px; font-size: .8rem; }

/* === SEARCH OVERLAY === */
.search-overlay { position: fixed; inset: 0; background: rgba(249,244,239,.98); z-index: 2001; display: flex; flex-direction: column; align-items: center; padding-top: 15vh; opacity: 0; visibility: hidden; transition: var(--transition); }
.search-overlay.show { opacity: 1; visibility: visible; }
.search-overlay .close-search { position: absolute; top: 25px; right: 30px; background: none; font-size: 1.5rem; color: var(--dark); }
.search-box { width: 90%; max-width: 600px; position: relative; }
.search-box input { width: 100%; padding: 20px 60px 20px 25px; font-size: 1.2rem; border: 3px solid var(--sand); border-radius: 50px; outline: none; font-family: var(--font-body); background: var(--white); }
.search-box input:focus { border-color: var(--gold); }
.search-box .search-submit { position: absolute; right: 8px; top: 8px; width: 48px; height: 48px; border-radius: 50%; background: var(--maroon); color: var(--white); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.search-trending { margin-top: 30px; text-align: center; width: 90%; max-width: 600px; }
.search-trending h4 { font-size: .85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.search-trending-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.search-trending-tags a { padding: 8px 18px; border: 1.5px solid var(--sand); border-radius: 50px; font-size: .8rem; color: var(--dark); }
.search-trending-tags a:hover { border-color: var(--maroon); color: var(--maroon); background: rgba(122,30,30,.05); }

/* === CONTACT SECTION === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 35px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 2px solid var(--sand); border-radius: 8px; font-size: .9rem; font-family: var(--font-body); outline: none; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 25px; display: flex; gap: 15px; align-items: flex-start; transition: var(--transition); }
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card .card-icon { width: 50px; height: 50px; border-radius: var(--radius); background: linear-gradient(135deg,var(--sand),var(--ivory)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-card h4 { font-size: .95rem; margin-bottom: 4px; }
.contact-card p { font-size: .85rem; color: var(--gray); line-height: 1.5; }

/* Responsive for inner pages */
@media (max-width:1024px) {
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  .cart-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .filter-sidebar { flex-direction: column; }
  .filters { width: 100%; }
  .about-grid, .about-grid.reverse { grid-template-columns: 1fr; }
  .about-grid.reverse { direction: ltr; }
  .stats-row { gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .wishlist-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .listing-toolbar { flex-direction: column; align-items: flex-start; }
}


/* ============================================
   INNER PAGES STYLES
   ============================================ */

/* === PAGE HERO === */
.page-hero { background: linear-gradient(135deg,var(--maroon),var(--maroon-deep)); padding: 60px 0 50px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q45 15 45 30 Q45 45 30 55 Q15 45 15 30 Q15 15 30 5Z' fill='none' stroke='rgba(201,162,39,0.08)' stroke-width='1'/%3E%3C/svg%3E"); opacity: .5; }
.page-hero h1 { font-size: clamp(2rem,5vw,3rem); margin-bottom: 10px; color: var(--white); position: relative; }
.page-hero p { opacity: .8; font-size: 1rem; position: relative; }
.page-hero .breadcrumb { margin-top: 15px; position: relative; }
.page-hero .breadcrumb, .page-hero .breadcrumb a { color: rgba(255,255,255,.6); font-size: .85rem; }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb strong { color: var(--white); }

/* === COLLECTION / LISTING === */
.listing-page { padding: 40px 0 80px; }
.listing-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 15px; }
.listing-toolbar .result-count { font-size: .9rem; color: var(--gray); }
.listing-toolbar .result-count strong { color: var(--dark); }
.listing-toolbar .sort-controls { display: flex; align-items: center; gap: 10px; }
.listing-toolbar select { padding: 10px 35px 10px 15px; border: 2px solid var(--sand); border-radius: 8px; font-size: .85rem; font-family: var(--font-body); background: var(--white); cursor: pointer; outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.listing-toolbar select:focus { border-color: var(--gold); }
.view-toggles { display: flex; gap: 5px; }
.view-toggle { width: 38px; height: 38px; border: 2px solid var(--sand); border-radius: 8px; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: .9rem; cursor: pointer; }
.view-toggle.active { border-color: var(--maroon); background: var(--maroon); color: var(--white); }
.filter-sidebar { display: flex; gap: 40px; }
.filters { width: 260px; flex-shrink: 0; }
.filter-group { margin-bottom: 25px; border-bottom: 1px solid var(--sand); padding-bottom: 20px; }
.filter-group h4 { font-size: .9rem; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.filter-group h4::after { content: '−'; font-size: 1.2rem; font-weight: 300; }
.filter-group.collapsed h4::after { content: '+'; }
.filter-group label { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--gray); padding: 5px 0; cursor: pointer; transition: var(--transition); }
.filter-group label:hover { color: var(--dark); }
.filter-group input[type="checkbox"] { accent-color: var(--maroon); width: 16px; height: 16px; }
.filter-color-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-swatch { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--sand); cursor: pointer; transition: var(--transition); }
.filter-swatch:hover, .filter-swatch.active { border-color: var(--dark); transform: scale(1.15); }
.price-range { display: flex; gap: 10px; align-items: center; }
.price-range input { width: 80px; padding: 8px 10px; border: 2px solid var(--sand); border-radius: 6px; font-size: .85rem; outline: none; }
.price-range span { color: var(--gray); }
.listing-products { flex: 1; }
.product-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.load-more { text-align: center; margin-top: 40px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.page-num { width: 40px; height: 40px; border-radius: 8px; border: 2px solid var(--sand); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.page-num.active, .page-num:hover { background: var(--maroon); color: var(--white); border-color: var(--maroon); }

/* === ABOUT PAGE === */
.about-hero-content { max-width: 700px; margin: 0 auto; }
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: 15px; }
.about-text p { color: var(--gray); line-height: 1.8; margin-bottom: 15px; }
.stats-row { display: flex; gap: 40px; margin-top: 30px; }
.stat-item { text-align: center; }
.stat-item .stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--maroon); display: block; }
.stat-item .stat-label { font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.timeline { max-width: 700px; margin: 0 auto; position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--sand); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item::before { content: ''; position: absolute; left: -29px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold); }
.timeline-item .year { font-family: var(--font-heading); font-size: 1.2rem; color: var(--maroon); font-weight: 700; margin-bottom: 5px; }
.timeline-item p { color: var(--gray); font-size: .9rem; line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; }
.team-card { text-align: center; }
.team-card .team-photo { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 15px; overflow: hidden; border: 3px solid var(--sand); }
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1rem; margin-bottom: 3px; }
.team-card p { font-size: .8rem; color: var(--gray); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.value-card { text-align: center; padding: 40px 25px; background: var(--white); border-radius: var(--radius); transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.value-card .value-icon { font-size: 2.5rem; margin-bottom: 15px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* === CART PAGE === */
.cart-page { padding: 40px 0 80px; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cart-items { background: var(--white); border-radius: var(--radius); padding: 25px; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; border-bottom: 2px solid var(--sand); margin-bottom: 20px; }
.cart-header h2 { font-size: 1.3rem; }
.cart-header span { font-size: .85rem; color: var(--gray); }
.cart-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--sand); }
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 120px; height: 140px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-details h3 { font-size: 1rem; margin-bottom: 5px; }
.cart-item-details .item-variant { font-size: .8rem; color: var(--gray); margin-bottom: 10px; }
.cart-item-details .item-price { font-weight: 700; color: var(--maroon); font-size: 1.1rem; }
.cart-item-details .item-original { text-decoration: line-through; color: var(--gray); font-size: .85rem; margin-left: 8px; font-weight: 400; }
.cart-item-qty { display: flex; align-items: center; gap: 0; border: 2px solid var(--sand); border-radius: 6px; overflow: hidden; margin-top: 10px; width: fit-content; }
.cart-item-qty button { width: 32px; height: 32px; background: var(--ivory); font-size: .9rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.cart-item-qty span { width: 32px; text-align: center; font-weight: 600; font-size: .85rem; }
.cart-item-actions { display: flex; gap: 15px; margin-top: 10px; }
.cart-item-actions button { background: none; font-size: .8rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.cart-item-actions button:hover { color: var(--maroon); }
.cart-item-remove { margin-left: auto; align-self: flex-start; }
.order-summary { background: var(--white); border-radius: var(--radius); padding: 25px; position: sticky; top: 100px; }
.order-summary h3 { font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--sand); }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: .9rem; }
.summary-row .label { color: var(--gray); }
.summary-row.total { font-weight: 700; font-size: 1.15rem; padding-top: 15px; margin-top: 10px; border-top: 2px solid var(--sand); color: var(--maroon); }
.summary-row .free { color: #2d8f2d; font-weight: 600; }
.coupon-input { display: flex; gap: 8px; margin: 15px 0; }
.coupon-input input { flex: 1; padding: 10px 15px; border: 2px solid var(--sand); border-radius: 8px; font-size: .85rem; outline: none; }
.coupon-input input:focus { border-color: var(--gold); }
.coupon-input button { padding: 10px 20px; background: var(--ivory); font-weight: 600; font-size: .8rem; border-radius: 8px; color: var(--maroon); }
.checkout-btn { width: 100%; margin-top: 15px; justify-content: center; }
.cart-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 15px; justify-content: center; }
.cart-trust span { font-size: .75rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.empty-cart { text-align: center; padding: 60px 20px; }
.empty-cart .empty-icon { font-size: 4rem; margin-bottom: 20px; }
.empty-cart h2 { margin-bottom: 10px; }
.empty-cart p { color: var(--gray); margin-bottom: 25px; }

/* === WISHLIST PAGE === */
.wishlist-page { padding: 40px 0 80px; }
.wishlist-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; }
.wishlist-card { position: relative; }
.wishlist-card .remove-wish { position: absolute; top: 15px; right: 15px; z-index: 5; width: 32px; height: 32px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); font-size: .85rem; }
.wishlist-card .remove-wish:hover { background: #fee; color: #c0392b; }
.wishlist-card .move-to-cart { margin-top: 10px; width: 100%; justify-content: center; padding: 10px; font-size: .8rem; }

/* === SEARCH OVERLAY === */
.search-overlay { position: fixed; inset: 0; background: rgba(249,244,239,.98); z-index: 2001; display: flex; flex-direction: column; align-items: center; padding-top: 15vh; opacity: 0; visibility: hidden; transition: var(--transition); }
.search-overlay.show { opacity: 1; visibility: visible; }
.search-overlay .close-search { position: absolute; top: 25px; right: 30px; background: none; font-size: 1.5rem; color: var(--dark); }
.search-box { width: 90%; max-width: 600px; position: relative; }
.search-box input { width: 100%; padding: 20px 60px 20px 25px; font-size: 1.2rem; border: 3px solid var(--sand); border-radius: 50px; outline: none; font-family: var(--font-body); background: var(--white); }
.search-box input:focus { border-color: var(--gold); }
.search-box .search-submit { position: absolute; right: 8px; top: 8px; width: 48px; height: 48px; border-radius: 50%; background: var(--maroon); color: var(--white); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.search-trending { margin-top: 30px; text-align: center; width: 90%; max-width: 600px; }
.search-trending h4 { font-size: .85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.search-trending-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.search-trending-tags a { padding: 8px 18px; border: 1.5px solid var(--sand); border-radius: 50px; font-size: .8rem; color: var(--dark); }
.search-trending-tags a:hover { border-color: var(--maroon); color: var(--maroon); background: rgba(122,30,30,.05); }

/* === CONTACT SECTION === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 35px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 2px solid var(--sand); border-radius: 8px; font-size: .9rem; font-family: var(--font-body); outline: none; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 25px; display: flex; gap: 15px; align-items: flex-start; transition: var(--transition); }
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card .card-icon { width: 50px; height: 50px; border-radius: var(--radius); background: linear-gradient(135deg,var(--sand),var(--ivory)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-card h4 { font-size: .95rem; margin-bottom: 4px; }
.contact-card p { font-size: .85rem; color: var(--gray); line-height: 1.5; }

/* Responsive for inner pages */
@media (max-width:1024px) {
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  .cart-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .filter-sidebar { flex-direction: column; }
  .filters { width: 100%; }
  .about-grid, .about-grid.reverse { grid-template-columns: 1fr; }
  .about-grid.reverse { direction: ltr; }
  .stats-row { gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .wishlist-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .listing-toolbar { flex-direction: column; align-items: flex-start; }
}
@media (max-width:480px) {
  .wishlist-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cart-item { flex-direction: column; }
  .cart-item-img { width: 100%; height: 200px; }
  .stats-row { flex-direction: column; gap: 15px; }
  .values-grid { grid-template-columns: 1fr; }
}

/* === HERO BANNER SLIDER === */
.hero-slider { position: relative; width: 100%; overflow: hidden; background: var(--ivory); }
.hero-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); width: 100%; }
.hero-slide { min-width: 100%; width: 100%; }
.hero-slide img { width: 100%; display: block; object-fit: cover; }
.hero-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); border: none; cursor: pointer; transition: .3s; padding: 0; }
.hero-dot.active { background: #fff; transform: scale(1.2); }
/* Desktop hero slides */
.hero-slide-desktop { display: block !important; }
.hero-slide-mobile { display: none !important; }
@media (max-width:768px) {
  .hero-slide-desktop { display: none !important; }
  .hero-slide-mobile { display: block !important; }
  .hero-dots { bottom: 12px; }
  .hero-dot { width: 8px; height: 8px; }
}

/* === SALE BANNER === */
.sale-banner-section { width: 100%; }
.sale-banner-section a { display: block; }
.sale-banner-section img { width: 100%; display: block; }
.sale-banner-desktop { display: block !important; }
.sale-banner-mobile { display: none !important; }
@media (max-width:768px) {
  .sale-banner-desktop { display: none !important; }
  .sale-banner-mobile { display: block !important; }
}

/* === FILTER DROPDOWN BAR === */
.listing-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--sand); }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-dropdown { position: relative; }
.filter-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border: 1.5px solid var(--sand); border-radius: 8px; background: var(--white); font-size: .82rem; font-family: var(--font-body); font-weight: 500; color: var(--dark); cursor: pointer; transition: var(--transition); }
.filter-btn:hover, .filter-dropdown.open .filter-btn { border-color: var(--maroon); color: var(--maroon); }
.filter-btn svg { transition: transform .2s; }
.filter-dropdown.open .filter-btn svg { transform: rotate(180deg); }
.filter-panel { display: none; position: absolute; top: calc(100% + 6px); left: 0; min-width: 200px; background: var(--white); border: 1.5px solid var(--sand); border-radius: 10px; padding: 12px 14px; box-shadow: var(--shadow-md); z-index: 20; }
.filter-dropdown.open .filter-panel { display: block; }
.filter-panel label { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: .83rem; color: var(--dark); cursor: pointer; }
.filter-panel label span { color: var(--gray); font-size: .75rem; }
.filter-panel label:hover { color: var(--maroon); }
.filter-panel input[type="checkbox"] { accent-color: var(--maroon); width: 15px; height: 15px; }
.sort-controls { display: flex; align-items: center; gap: 12px; }
.sort-controls select { padding: 9px 32px 9px 14px; border: 1.5px solid var(--sand); border-radius: 8px; font-size: .82rem; font-family: var(--font-body); background: var(--white); cursor: pointer; outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; }
.sort-controls select:focus { border-color: var(--gold); }
.result-count { font-size: .82rem; color: var(--gray); white-space: nowrap; }
.result-count strong { color: var(--dark); }
.product-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width:1024px) {
  .product-grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width:768px) {
  .listing-toolbar { flex-direction: column; align-items: stretch; }
  .filter-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .filter-btn { white-space: nowrap; font-size: .78rem; padding: 8px 12px; }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sort-controls { justify-content: space-between; }
}

/* ============================================
   ACCOUNT PAGE STYLES
   ============================================ */

/* Account Section Container */
.account-section { padding: 40px 0 80px; min-height: 60vh; }

/* Auth Container (Login / Signup) */
.auth-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.auth-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.auth-tabs { display: flex; border-bottom: 2px solid var(--sand); margin-bottom: 30px; }
.auth-tab { flex: 1; padding: 14px; text-align: center; font-weight: 600; font-size: .95rem; color: var(--gray); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: var(--transition); background: none; }
.auth-tab.active { color: var(--maroon); border-bottom-color: var(--maroon); }
.auth-tab:hover { color: var(--maroon); }
.auth-welcome { text-align: center; margin-bottom: 25px; }
.auth-welcome h2 { font-size: 1.6rem; margin-bottom: 5px; }
.auth-welcome p { color: var(--gray); font-size: .9rem; }
.auth-btn { width: 100%; justify-content: center; padding: 14px; font-size: .95rem; margin-top: 10px; }
.auth-divider { text-align: center; margin: 20px 0; position: relative; }
.auth-divider::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--sand); }
.auth-divider span { background: var(--white); padding: 0 15px; font-size: .8rem; color: var(--gray); position: relative; }
.social-login-btns { display: flex; gap: 12px; }
.social-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border: 2px solid var(--sand); border-radius: 10px; font-size: .85rem; font-weight: 600; font-family: var(--font-body); cursor: pointer; transition: var(--transition); background: var(--white); }
.social-btn:hover { border-color: var(--maroon); background: var(--ivory); }
.forgot-link { font-size: .82rem; color: var(--maroon); }
.forgot-link:hover { text-decoration: underline; }
.form-row { display: flex; gap: 15px; }
.form-row > .form-group { flex: 1; }
.phone-input { display: flex; align-items: center; border: 2px solid var(--sand); border-radius: 8px; overflow: hidden; transition: var(--transition); }
.phone-input:focus-within { border-color: var(--gold); }
.phone-prefix { padding: 12px 14px; background: var(--ivory); font-weight: 600; font-size: .85rem; color: var(--gray); border-right: 2px solid var(--sand); }
.phone-input input { border: none !important; padding-left: 14px; flex: 1; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--gray); cursor: pointer; }
.checkbox-label a { color: var(--maroon); text-decoration: underline; }
.radio-pill { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border: 2px solid var(--sand); border-radius: 50px; font-size: .82rem; cursor: pointer; transition: var(--transition); }
.radio-pill:has(input:checked) { border-color: var(--maroon); background: rgba(122,30,30,.05); }
.radio-pill input { accent-color: var(--maroon); }

/* Auth Features Sidebar */
.auth-features { padding: 30px; }
.auth-features h3 { font-size: 1.2rem; margin-bottom: 25px; color: var(--maroon); }
.auth-feature-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.afi-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--sand), var(--ivory)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.auth-feature-item strong { display: block; font-size: .9rem; margin-bottom: 3px; }
.auth-feature-item p { font-size: .8rem; color: var(--gray); line-height: 1.4; margin: 0; }

/* Dashboard */
.dash-header { display: flex; align-items: center; gap: 20px; padding: 30px; background: var(--white); border-radius: var(--radius-lg); margin-bottom: 25px; box-shadow: var(--shadow-sm); }
.avatar-circle { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)); display: flex; align-items: center; justify-content: center; }
.avatar-circle svg { width: 36px; height: 36px; stroke: var(--white); }
.dash-user-info { flex: 1; }
.dash-user-info h2 { font-size: 1.3rem; margin-bottom: 2px; }
.dash-user-info p { font-size: .85rem; color: var(--gray); }
.dash-member-since { font-size: .75rem !important; color: var(--gray); margin-top: 4px; }
.btn-logout { display: flex; align-items: center; gap: 6px; padding: 10px 20px; border: 2px solid var(--sand); border-radius: 8px; background: var(--white); font-size: .82rem; font-weight: 600; color: var(--gray); cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.btn-logout:hover { border-color: #c0392b; color: #c0392b; }

/* Dashboard Navigation */
.dash-nav { display: flex; gap: 8px; margin-bottom: 25px; overflow-x: auto; padding-bottom: 4px; }
.dash-nav-btn { display: flex; align-items: center; gap: 8px; padding: 12px 20px; border: 2px solid var(--sand); border-radius: 10px; background: var(--white); font-size: .85rem; font-weight: 600; color: var(--gray); cursor: pointer; transition: var(--transition); white-space: nowrap; font-family: var(--font-body); }
.dash-nav-btn:hover { border-color: var(--maroon); color: var(--maroon); }
.dash-nav-btn.active { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.dash-nav-btn.active svg { stroke: var(--white); }

/* Dashboard Tabs */
.dash-tab { display: none; background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.dash-tab.active { display: block; }
.dash-tab h3 { font-size: 1.2rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--sand); }
.dash-tab-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--sand); }
.dash-tab-header h3 { border: none; padding: 0; margin: 0; }

/* Order Cards */
.order-card { border: 2px solid var(--sand); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; transition: var(--transition); }
.order-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; flex-wrap: wrap; gap: 10px; }
.order-id { font-weight: 700; font-size: .9rem; display: block; }
.order-date { font-size: .8rem; color: var(--gray); display: block; margin-top: 2px; }
.order-status { padding: 6px 16px; border-radius: 50px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.order-status.delivered { background: #e8f5e9; color: #2d8f2d; }
.order-status.processing { background: #fff3e0; color: #e65100; }
.order-status.shipped { background: #e3f2fd; color: #1565c0; }
.order-status.cancelled { background: #fce4ec; color: #c0392b; }
.order-items { padding: 10px 0; border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.order-item { display: flex; gap: 15px; padding: 10px 0; }
.order-item img { width: 65px; height: 75px; border-radius: 8px; object-fit: cover; }
.order-item-info h4 { font-size: .9rem; margin-bottom: 3px; }
.order-item-info p { font-size: .8rem; color: var(--gray); }
.order-item-price { color: var(--maroon); font-weight: 700; margin-top: 3px; }
.order-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; flex-wrap: wrap; gap: 10px; }
.order-total { font-size: .9rem; }
.order-actions { display: flex; gap: 8px; }
.btn-sm { padding: 8px 16px; border-radius: 8px; font-size: .78rem; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; font-family: var(--font-body); }
.btn-outline-sm { background: var(--white); border: 2px solid var(--sand) !important; color: var(--dark); }
.btn-outline-sm:hover { border-color: var(--maroon) !important; color: var(--maroon); }
.btn-primary-sm { background: var(--maroon); color: var(--white); }
.btn-primary-sm:hover { background: var(--maroon-deep); }

/* Address Cards */
.address-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.address-card { border: 2px solid var(--sand); border-radius: var(--radius); padding: 20px; position: relative; transition: var(--transition); }
.address-card:hover { border-color: var(--gold); }
.address-card.default { border-color: var(--maroon); }
.address-badge { position: absolute; top: -1px; right: 15px; background: var(--maroon); color: var(--white); padding: 4px 12px; font-size: .7rem; font-weight: 700; text-transform: uppercase; border-radius: 0 0 6px 6px; letter-spacing: .5px; }
.address-card h4 { font-size: .95rem; margin-bottom: 10px; color: var(--maroon); }
.address-card p { font-size: .82rem; color: var(--gray); line-height: 1.5; margin-bottom: 4px; }
.address-actions { display: flex; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--sand); }
.btn-xs { padding: 5px 12px; font-size: .72rem; font-weight: 600; border: 1.5px solid var(--sand); border-radius: 6px; background: var(--white); cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.btn-xs:hover { border-color: var(--maroon); color: var(--maroon); }
.address-card.add-new { display: flex; flex-direction: column; align-items: center; justify-content: center; border-style: dashed; cursor: pointer; min-height: 180px; }
.address-card.add-new:hover { border-color: var(--maroon); background: rgba(122,30,30,.02); }
.add-new-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--ivory); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--maroon); margin-bottom: 8px; }

/* Profile Form */
.profile-form { max-width: 600px; }
.profile-form .form-group select { padding: 12px 16px; cursor: pointer; }

/* Settings */
.settings-section { margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--sand); }
.settings-section:last-child { border-bottom: none; }
.settings-section h4 { font-size: 1rem; margin-bottom: 15px; }
.toggle-label { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: .85rem; color: var(--gray); cursor: pointer; }
.toggle-label input { accent-color: var(--maroon); width: 16px; height: 16px; }
.danger-zone { background: #fef2f2; border-radius: var(--radius); padding: 20px; border: 1px solid #fecaca; }
.danger-zone h4 { color: #c0392b; }
.danger-zone p { font-size: .82rem; color: #666; margin-bottom: 12px; }
.btn-danger { padding: 10px 24px; background: #c0392b; color: var(--white); border: none; border-radius: 8px; font-weight: 600; font-size: .85rem; cursor: pointer; transition: var(--transition); font-family: var(--font-body); }
.btn-danger:hover { background: #a93226; }

/* Cart Payment Accept Section */
.cart-payment-accept { margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--sand); text-align: center; }
.cart-payment-accept p { font-size: .78rem; color: var(--gray); margin-bottom: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.cart-payment-accept .payment-icons { justify-content: center; }

/* Account Page Responsive */
@media (max-width: 768px) {
  .auth-container { grid-template-columns: 1fr; gap: 30px; }
  .auth-card { padding: 25px; }
  .auth-features { padding: 20px; }
  .dash-header { flex-direction: column; text-align: center; padding: 20px; }
  .btn-logout { margin-top: 10px; }
  .dash-nav { gap: 6px; }
  .dash-nav-btn { padding: 10px 14px; font-size: .78rem; }
  .address-grid { grid-template-columns: 1fr 1fr; }
  .order-item img { width: 50px; height: 60px; }
  .form-row { flex-direction: column; gap: 0; }
}
@media (max-width: 480px) {
  .auth-card { padding: 20px; }
  .auth-tab { font-size: .82rem; padding: 12px 8px; }
  .social-login-btns { flex-direction: column; }
  .dash-nav-btn { padding: 8px 12px; font-size: .75rem; gap: 5px; }
  .dash-nav-btn svg { width: 14px; height: 14px; }
  .address-grid { grid-template-columns: 1fr; }
  .order-header { flex-direction: column; align-items: flex-start; }
  .order-footer { flex-direction: column; align-items: flex-start; }
  .dash-tab { padding: 20px 15px; }
}