/* ==========================================================================
   FRACTO STREETWEAR - MOBILE-PERFECT LUXURY STYLESHEET (v13)
   ========================================================================== */

:root {
  --bg-body: #fcfcfd;
  --bg-surface: #ffffff;
  --bg-subtle: #f8f9fa;
  --bg-muted: #f1f5f9;
  
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --primary: #0f172a;
  --primary-hover: #1e293b;
  --accent-red: #e11d48;
  --accent-red-hover: #be123c;
  --accent-gold: #d97706;
  --accent-green: #059669;
  
  --border-light: #e2e8f0;
  --border-subtle: #f1f5f9;
  --border-dark: #0f172a;
  
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
  --shadow-drawer: -10px 0 40px rgba(0, 0, 0, 0.08);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Strict Mobile Fixed Screen Boundaries */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; max-width: 100vw; overflow-x: hidden; }
body { background-color: var(--bg-body); color: var(--text-main); font-family: var(--font-sans); line-height: 1.5; width: 100%; max-width: 100vw; overflow-x: hidden; position: relative; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 1.25rem; box-sizing: border-box; }

/* Announcement Bar */
.announcement-bar { background: #ffffff; border-bottom: 1px solid var(--border-light); min-height: 40px; display: flex; align-items: center; font-size: 0.78rem; font-weight: 600; overflow: hidden; }
.announcement-content { display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 1rem; }
.ticker-wrapper { overflow: hidden; position: relative; height: 20px; flex: 1; }
.ticker-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-main); animation: fadeSlide 14s infinite; white-space: nowrap; }
.ticker-item i { width: 16px; height: 16px; color: var(--accent-red); flex-shrink: 0; }

@keyframes fadeSlide {
  0%, 22% { opacity: 1; transform: translateY(0); }
  25%, 47% { opacity: 0; transform: translateY(-100%); }
  50%, 72% { opacity: 1; transform: translateY(0); }
  75%, 97% { opacity: 0; transform: translateY(-100%); }
  100% { opacity: 1; transform: translateY(0); }
}

.top-bar-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.pincode-indicator { cursor: pointer; color: var(--text-muted); display: flex; align-items: center; gap: 0.35rem; transition: var(--transition-fast); }
.pincode-indicator:hover { color: var(--text-main); }
.pincode-indicator i { width: 14px; height: 14px; color: var(--accent-red); }
.currency-select { background: #ffffff; color: var(--text-main); border: 1px solid var(--border-light); border-radius: var(--radius-xs); padding: 0.15rem 0.4rem; font-size: 0.75rem; font-weight: 600; cursor: pointer; }

/* Header Navigation */
.main-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-light); box-shadow: var(--shadow-xs); width: 100%; }
.header-container { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 1rem; }
.header-left { display: flex; align-items: center; gap: 0.5rem; }
.mobile-menu-btn { display: none; color: var(--text-main); background: none; border: none; padding: 0.25rem; margin-right: 0.2rem; }
.mobile-menu-btn i { width: 24px; height: 24px; }
.brand-logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.logo-text { font-family: var(--font-display); font-weight: 900; font-size: 1.75rem; letter-spacing: 2px; color: #000000; }
.logo-sub { font-size: 0.58rem; letter-spacing: 3.5px; font-weight: 800; color: var(--accent-red); text-transform: uppercase; margin-top: 1px; }
.nav-menu { display: flex; align-items: center; gap: 1.25rem; }

.nav-link { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; color: var(--text-body); position: relative; padding: 0.4rem 0; transition: var(--transition-fast); display: flex; align-items: center; gap: 0.35rem; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--text-main); }
.nav-link.active::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background-color: var(--accent-red); border-radius: 2px; }
.nav-link.highlight { color: var(--accent-gold); }
.nav-link.highlight i { width: 14px; height: 14px; }
.nav-link.sale-link { color: var(--accent-red); }

.badge-dot { width: 6px; height: 6px; background-color: var(--accent-red); border-radius: 50%; }
.badge-dot.glow { box-shadow: 0 0 6px var(--accent-red); animation: pulseGlow 1.5s infinite; }

@keyframes pulseGlow { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.header-actions { display: flex; align-items: center; gap: 0.85rem; }
.search-box-wrapper { position: relative; width: 220px; }
.search-box-wrapper input { width: 100%; background: var(--bg-subtle); border: 1px solid var(--border-light); border-radius: var(--radius-full); padding: 0.5rem 1rem 0.5rem 2.25rem; color: var(--text-main); font-size: 0.825rem; outline: none; transition: var(--transition-fast); }
.search-box-wrapper input:focus { border-color: var(--border-dark); background: #ffffff; box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.06); width: 240px; }
.search-icon { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text-muted); pointer-events: none; }
.search-suggestions { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-md); box-shadow: var(--shadow-md); max-height: 320px; overflow-y: auto; display: none; z-index: 120; }
.search-suggestions.active { display: block; }

.suggestion-item { padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.75rem; cursor: pointer; border-bottom: 1px solid var(--border-subtle); transition: var(--transition-fast); }
.suggestion-item:hover { background: var(--bg-subtle); }
.suggestion-item img { width: 40px; height: 48px; object-fit: cover; border-radius: var(--radius-xs); }
.suggestion-title { font-size: 0.85rem; font-weight: 600; color: var(--text-main); line-height: 1.2; }
.suggestion-price { font-size: 0.75rem; color: var(--accent-red); font-weight: 700; }

.icon-btn { position: relative; color: var(--text-main); display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; transition: var(--transition-fast); }
.icon-btn:hover { background: var(--bg-subtle); }
.icon-btn i { width: 20px; height: 20px; }

.cart-btn-header { width: auto; border-radius: var(--radius-full); padding: 0.4rem 0.85rem; gap: 0.4rem; background: #ffffff; color: var(--text-main); border: 1px solid var(--border-light); box-shadow: var(--shadow-xs); transition: var(--transition-fast); }
.cart-btn-header:hover { border-color: var(--border-dark); background: var(--bg-subtle); }
.cart-total-header { font-size: 0.825rem; font-weight: 800; color: var(--text-main); }

.badge-count { position: absolute; top: -2px; right: -2px; background-color: var(--accent-red); color: white; font-size: 0.65rem; font-weight: 800; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Mobile Navigation Drawer */
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.4); backdrop-filter: blur(4px); z-index: 200; display: none; }
.mobile-nav-overlay.active { display: block; }
.mobile-nav-drawer { position: fixed; top: 0; left: -300px; width: 280px; max-width: 85vw; height: 100%; background: #ffffff; border-right: 1px solid var(--border-light); box-shadow: var(--shadow-drawer); z-index: 205; transition: var(--transition-smooth); padding: 1.5rem; display: flex; flex-direction: column; overflow-y: auto; }
.mobile-nav-drawer.active { left: 0; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-nav-links a { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text-body); }
.mobile-nav-links a:hover { color: var(--text-main); }
.mobile-nav-links a.sale-mobile { color: var(--accent-red); }
.mobile-nav-links a i { width: 18px; height: 18px; }

/* HERO SECTION */
.hero-section { padding: 2.5rem 0; background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%); border-bottom: 1px solid var(--border-light); overflow: visible; }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; min-height: 460px; }
.hero-text-side { display: flex; flex-direction: column; align-items: flex-start; z-index: 2; width: 100%; min-width: 0; box-sizing: border-box; }
.hero-pill { display: inline-flex; align-items: center; gap: 0.4rem; background: #fff1f2; border: 1px solid #fecdd3; color: var(--accent-red); font-size: clamp(0.68rem, 2.5vw, 0.78rem); font-weight: 800; letter-spacing: 0.5px; padding: 0.35rem 0.75rem; border-radius: var(--radius-full); margin-bottom: 1.25rem; text-transform: uppercase; white-space: normal; max-width: 100%; box-sizing: border-box; word-break: break-word; overflow-wrap: break-word; line-height: 1.35; }
.hero-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3.8vw, 3.1rem); font-weight: 900; line-height: 1.22; letter-spacing: -0.5px; color: var(--text-main); margin-bottom: 1rem; word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; max-width: 100%; width: 100%; box-sizing: border-box; }
.hero-subtitle { font-size: 1rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1.75rem; max-width: 520px; width: 100%; word-wrap: break-word; box-sizing: border-box; }
.hero-cta-group { display: flex; gap: 0.85rem; align-items: center; flex-wrap: wrap; max-width: 100%; box-sizing: border-box; }

.hero-visual-side { position: relative; width: 100%; height: 480px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid var(--border-light); background: #ffffff; }
.hero-visual-img { width: 100%; height: 100%; object-fit: contain; object-position: center center; transition: transform 0.6s ease; display: block; background: #ffffff; }
.hero-visual-side:hover .hero-visual-img { transform: scale(1.03); }

.hero-floating-card { position: absolute; bottom: 16px; left: 16px; right: 16px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 0.85rem 1rem; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-md); gap: 0.5rem; flex-wrap: wrap; z-index: 3; }
.floating-card-info h4 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 800; }
.floating-card-info p { font-size: 0.725rem; color: var(--text-muted); }

/* Story Circles Bar */
.stories-section { padding: 1.75rem 0; background: #ffffff; border-bottom: 1px solid var(--border-light); overflow: hidden; }
.stories-row { display: flex; align-items: center; gap: 1.5rem; overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.stories-row::-webkit-scrollbar { display: none; }
.story-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; cursor: pointer; flex-shrink: 0; transition: var(--transition-fast); }
.story-item:hover { transform: translateY(-3px); }
.story-ring-wrap { width: 68px; height: 68px; border-radius: 50%; padding: 3px; background: var(--bg-muted); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; overflow: hidden; transition: var(--transition-fast); }
.story-img-thumb { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.story-item.active .story-ring-wrap, .story-ring-wrap.active-ring { background: linear-gradient(135deg, var(--accent-red), var(--accent-gold)); border-color: transparent; }
.story-name { font-size: 0.725rem; font-weight: 700; color: var(--text-muted); }
.story-item.active .story-name { color: var(--text-main); font-weight: 800; }

/* MOOD GRID */
.mood-grid-section { padding: 3.5rem 0; background: #ffffff; border-bottom: 1px solid var(--border-light); overflow: hidden; }
.section-title-wrapper { text-align: center; max-width: 600px; margin: 0 auto 2.5rem auto; }
.section-title-wrapper h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; margin: 0.5rem 0; }
.section-title-wrapper p { color: var(--text-muted); font-size: 0.9rem; }

.mood-grid-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.mood-card {
  position: relative;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.mood-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.mood-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mood-card:hover img { transform: scale(1.05); }

.mood-card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.9) 100%);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.mood-tag { font-size: 0.65rem; font-weight: 800; letter-spacing: 1px; color: var(--accent-gold); margin-bottom: 0.35rem; }
.mood-card-content h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; margin-bottom: 0.35rem; color: white; }
.mood-card-content p { font-size: 0.75rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 0.85rem; line-height: 1.4; }
.mood-btn { font-family: var(--font-display); font-size: 0.75rem; font-weight: 800; display: inline-flex; align-items: center; gap: 0.35rem; color: white; }
.mood-btn i { width: 14px; height: 14px; }

/* Trust Ribbon */
.trust-ribbon { padding: 1.5rem 0; background: #ffffff; border-bottom: 1px solid var(--border-light); overflow: hidden; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.85rem; }
.trust-item i { width: 28px; height: 28px; color: var(--accent-red); flex-shrink: 0; }
.trust-item h4 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 800; }
.trust-item p { font-size: 0.725rem; color: var(--text-muted); }

/* CATALOG SECTION */
.catalog-section { padding: 3rem 0 4rem 0; background: var(--bg-body); overflow: hidden; }
.catalog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-light); gap: 1rem; flex-wrap: wrap; }
.catalog-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; letter-spacing: -0.5px; }
.catalog-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.catalog-actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }

.mobile-filter-btn { display: none; }
.sort-box { display: flex; align-items: center; gap: 0.4rem; font-size: 0.825rem; font-weight: 600; color: var(--text-muted); }
.sort-box select { background: #ffffff; color: var(--text-main); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 0.4rem 0.75rem; outline: none; font-weight: 600; box-shadow: var(--shadow-xs); cursor: pointer; }

.grid-switcher { display: flex; gap: 0.25rem; background: #ffffff; padding: 0.25rem; border-radius: var(--radius-sm); border: 1px solid var(--border-light); box-shadow: var(--shadow-xs); }
.switcher-btn { color: var(--text-muted); padding: 0.35rem 0.5rem; border-radius: var(--radius-xs); transition: var(--transition-fast); }
.switcher-btn.active, .switcher-btn:hover { background: var(--bg-muted); color: var(--text-main); }
.switcher-btn i { width: 18px; height: 18px; }

.catalog-grid-wrapper { display: grid; grid-template-columns: 260px 1fr; gap: 1.75rem; align-items: start; }
.filters-sidebar { background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 1.25rem; position: sticky; top: 84px; box-shadow: var(--shadow-sm); }
.sidebar-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-light); }
.sidebar-title-row h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 800; display: flex; align-items: center; gap: 0.5rem; }
.close-filter-mobile { display: none; background: none; border: none; color: var(--text-main); }
.close-filter-mobile i { width: 20px; height: 20px; }
.reset-btn { font-size: 0.75rem; color: var(--accent-red); font-weight: 700; }
.filter-block { margin-bottom: 1.5rem; }
.filter-heading { font-family: var(--font-display); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.5px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 0.75rem; }

.pill-group { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.filter-pill-btn { font-size: 0.725rem; font-weight: 600; padding: 0.3rem 0.65rem; border-radius: var(--radius-full); background: var(--bg-subtle); border: 1px solid var(--border-light); color: var(--text-body); transition: var(--transition-fast); }
.filter-pill-btn.active, .filter-pill-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }

.checkbox-group { display: flex; flex-direction: column; gap: 0.6rem; }
.check-label { font-size: 0.8rem; color: var(--text-main); display: flex; align-items: center; gap: 0.6rem; cursor: pointer; font-weight: 500; }
.check-label input { display: none; }

.custom-box { width: 16px; height: 16px; border: 1px solid #cbd5e1; border-radius: 4px; background: #ffffff; display: inline-block; position: relative; transition: var(--transition-fast); flex-shrink: 0; }
.check-label input:checked + .custom-box { background-color: var(--accent-red); border-color: var(--accent-red); }
.check-label input:checked + .custom-box::after { content: ''; position: absolute; left: 5px; top: 2px; width: 4px; height: 8px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }

.range-slider-wrap input[type="range"] { width: 100%; accent-color: var(--accent-red); cursor: pointer; margin-bottom: 0.5rem; }
.range-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); }
.price-active-val { color: var(--accent-red); font-weight: 700; }

.color-dots-group { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.color-swatch-btn { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border-light); cursor: pointer; transition: var(--transition-fast); }
.color-swatch-btn.active, .color-swatch-btn:hover { transform: scale(1.2); border-color: var(--primary); box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.15); }

.c-black { background: #000000; }
.c-white { background: #ffffff; border-color: #cbd5e1; }
.c-olive { background: #4b5320; }
.c-beige { background: #d7c4b7; }
.c-navy { background: #000080; }
.c-crimson { background: #990000; }
.c-charcoal { background: #36454f; }

/* PRODUCT CARDS */
.products-grid { display: grid; gap: 1.5rem; width: 100%; }
.products-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
.products-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }

.product-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  position: relative;
  width: 100%;
}

.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #cbd5e1; }

.product-img-box { position: relative; width: 100%; aspect-ratio: 3 / 4; overflow: hidden; background: #f8f9fa; }
.img-primary, .img-secondary { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.img-secondary { opacity: 0; }
.product-card:hover .img-secondary { opacity: 1; transform: scale(1.04); }
.product-card:hover .img-primary { opacity: 0; transform: scale(1.04); }

.card-badges-stack { position: absolute; top: 10px; left: 10px; z-index: 5; display: flex; flex-direction: column; gap: 0.35rem; align-items: flex-start; }
.tag-badge { background: var(--primary); color: white; font-family: var(--font-display); font-size: 0.625rem; font-weight: 800; padding: 0.2rem 0.55rem; border-radius: var(--radius-xs); text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.tag-badge.bestseller { background: var(--accent-red); }
.tag-badge.newdrop { background: #2563eb; }
.tag-badge.sale { background: var(--accent-gold); }

.fabric-badge-pill { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px); color: var(--text-main); border: 1px solid rgba(226, 232, 240, 0.8); font-size: 0.6rem; font-weight: 700; padding: 0.15rem 0.45rem; border-radius: var(--radius-xs); }

.wishlist-btn-card { position: absolute; top: 10px; right: 10px; z-index: 5; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px); color: var(--text-main); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-light); box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: var(--transition-fast); }
.wishlist-btn-card:hover, .wishlist-btn-card.active { background: #ffffff; color: var(--accent-red); border-color: var(--accent-red); transform: scale(1.1); }
.wishlist-btn-card.active i { fill: var(--accent-red); }
.wishlist-btn-card i { width: 16px; height: 16px; }

.quickview-btn-card { position: absolute; bottom: -45px; left: 50%; transform: translateX(-50%); z-index: 5; background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(8px); color: var(--text-main); border: 1px solid var(--border-light); font-family: var(--font-display); font-size: 0.725rem; font-weight: 800; padding: 0.5rem 1.25rem; border-radius: var(--radius-full); box-shadow: var(--shadow-md); transition: var(--transition-smooth); white-space: nowrap; }
.product-card:hover .quickview-btn-card { bottom: 12px; }
.quickview-btn-card:hover { background: var(--primary); color: white; border-color: var(--primary); }

.product-card-body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.card-top-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.35rem; gap: 0.5rem; }
.card-meta-category { font-size: 0.68rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.card-urgency-tag { font-size: 0.65rem; font-weight: 800; color: var(--accent-red); }
.card-product-title { font-family: var(--font-display); font-size: 0.925rem; font-weight: 800; color: var(--text-main); line-height: 1.3; margin-bottom: 0.35rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.card-stars-line { display: flex; align-items: center; gap: 0.35rem; font-size: 0.725rem; color: var(--accent-gold); margin-bottom: 0.65rem; font-weight: 800; }
.rev-count-text { color: var(--text-muted); font-weight: 500; font-size: 0.68rem; }

.card-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.85rem; padding-bottom: 0.75rem; border-bottom: 1px dashed var(--border-light); flex-wrap: wrap; }
.curr-price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 900; color: var(--text-main); }
.orig-price { font-size: 0.8rem; color: var(--text-light); text-decoration: line-through; }
.disc-off-chip { background: #fff1f2; color: var(--accent-red); font-size: 0.65rem; font-weight: 800; padding: 0.15rem 0.4rem; border-radius: var(--radius-xs); border: 1px solid #fecdd3; }

.sizes-row { display: flex; gap: 0.35rem; margin-bottom: 0.85rem; flex-wrap: wrap; }
.size-btn-pill { font-size: 0.68rem; font-weight: 700; width: 30px; height: 26px; border-radius: var(--radius-xs); border: 1px solid var(--border-light); background: var(--bg-subtle); color: var(--text-body); display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); cursor: pointer; }
.size-btn-pill:hover, .size-btn-pill.selected { background: var(--primary); color: white; border-color: var(--primary); }

.add-cart-card-btn { margin-top: auto; width: 100%; background: #ffffff; border: 1.5px solid var(--border-dark); color: var(--text-main); font-family: var(--font-display); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.5px; padding: 0.65rem; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; gap: 0.4rem; transition: var(--transition-fast); }
.add-cart-card-btn:hover { background: var(--accent-red); border-color: var(--accent-red); color: white; box-shadow: 0 4px 12px rgba(225, 29, 72, 0.2); }
.add-cart-card-btn i { width: 15px; height: 15px; }

/* OUTFIT BUILDER */
.outfit-section { padding: 3.5rem 0; background: #ffffff; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); overflow: hidden; }
.outfit-card-box { background: var(--bg-subtle); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 2rem; box-sizing: border-box; }
.outfit-header-center { text-align: center; max-width: 600px; margin: 0 auto 2rem auto; }
.outfit-header-center h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; margin: 0.5rem 0; }
.outfit-grid-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: center; }
.outfit-select-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.outfit-single-slot { background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 0.85rem; display: flex; flex-direction: column; gap: 0.65rem; box-shadow: var(--shadow-xs); }
.slot-tag-label { font-family: var(--font-display); font-size: 0.725rem; font-weight: 800; color: var(--accent-gold); }
.outfit-single-slot select { background: #ffffff; color: var(--text-main); border: 1px solid var(--border-light); border-radius: var(--radius-xs); padding: 0.4rem; font-size: 0.78rem; outline: none; width: 100%; }
.slot-img-preview { width: 100%; height: 160px; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-muted); }
.slot-img-preview img { width: 100%; height: 100%; object-fit: cover; }

.outfit-summary-box { background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 1.25rem; box-shadow: var(--shadow-sm); }
.outfit-hero-preview { position: relative; height: 180px; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1rem; }
.outfit-hero-preview img { width: 100%; height: 100%; object-fit: cover; }
.outfit-discount-tag { position: absolute; top: 10px; right: 10px; background: var(--accent-gold); color: white; font-size: 0.65rem; font-weight: 800; padding: 0.25rem 0.55rem; border-radius: var(--radius-xs); }

.pricing-block { margin-bottom: 1rem; }
.price-row-item { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.strike-val { text-decoration: line-through; }
.price-row-item.total-final-line { font-size: 1.1rem; font-weight: 900; color: var(--text-main); margin-top: 0.5rem; }
.saving-notice { font-size: 0.725rem; color: var(--accent-gold); font-weight: 700; margin-top: 0.35rem; }

/* REVIEWS */
.reviews-section { padding: 3.5rem 0; background: var(--bg-body); overflow: hidden; }
.reviews-header-center { text-align: center; max-width: 600px; margin: 0 auto 2.5rem auto; }
.reviews-header-center h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; margin: 0.5rem 0; }
.reviews-grid-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card-item { background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; box-shadow: var(--shadow-sm); }
.stars-row { color: var(--accent-gold); font-size: 1rem; }
.review-quote { font-size: 0.85rem; color: var(--text-body); font-style: italic; line-height: 1.5; }
.reviewer-meta { display: flex; align-items: center; gap: 0.65rem; margin-top: auto; }
.avatar-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-muted); border: 1px solid var(--border-light); color: var(--text-main); font-weight: 800; display: flex; align-items: center; justify-content: center; }
.verified-buyer-tag { display: block; font-size: 0.68rem; color: var(--accent-green); font-weight: 700; }

/* FOOTER */
.main-footer { background: #ffffff; border-top: 1px solid var(--border-light); padding: 3.5rem 0 2rem 0; overflow: hidden; }
.newsletter-card-box { background: var(--bg-subtle); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: 3.5rem; width: 100%; box-sizing: border-box; }
.newsletter-text h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 900; }
.newsletter-text p { color: var(--text-muted); font-size: 0.85rem; }
.newsletter-form-inline { display: flex; gap: 0.5rem; width: 400px; max-width: 100%; }
.newsletter-form-inline input { flex: 1; background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 0.65rem 0.85rem; color: var(--text-main); outline: none; }
.footer-columns-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-col-item h4 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 1rem; }
.footer-col-item p { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.65rem; }
.footer-col-item ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col-item ul a { font-size: 0.8rem; color: var(--text-muted); transition: var(--transition-fast); }
.footer-col-item ul a:hover { color: var(--text-main); }
.social-icons-row { display: flex; gap: 0.65rem; margin-top: 1rem; }
.social-icons-row a { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-muted); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; color: var(--text-main); transition: var(--transition-fast); }
.social-icons-row a:hover { background: var(--accent-red); color: white; border-color: var(--accent-red); }
.social-icons-row i { width: 16px; height: 16px; }
.pay-chips-wrap { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.65rem; }
.chip-tag { font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.45rem; background: var(--bg-muted); border: 1px solid var(--border-light); border-radius: 4px; }
.footer-bottom-copy { border-top: 1px solid var(--border-light); padding-top: 1.25rem; text-align: center; font-size: 0.78rem; color: var(--text-muted); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; font-family: var(--font-display); font-weight: 800; letter-spacing: 0.5px; border-radius: var(--radius-sm); padding: 0.6rem 1.15rem; transition: var(--transition-fast); cursor: pointer; white-space: nowrap; }
.btn-primary { background: var(--accent-red); color: white; box-shadow: var(--shadow-xs); }
.btn-primary:hover { background: var(--accent-red-hover); transform: translateY(-1px); }
.btn-outline { background: #ffffff; color: var(--text-main); border: 1px solid var(--border-light); }
.btn-outline:hover { border-color: var(--border-dark); background: var(--bg-subtle); }
.btn-block { width: 100%; }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
.btn-sm { padding: 0.35rem 0.65rem; font-size: 0.725rem; }

/* MODALS & DRAWERS FIXED MOBILE WRAPPING */
.modal-overlay, .drawer-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.4); backdrop-filter: blur(4px); z-index: 300; display: none; }
.modal-overlay.active, .drawer-overlay.active { display: block; }

.cart-drawer { position: fixed; top: 0; right: -440px; width: 400px; max-width: 100vw; height: 100%; background: #ffffff; border-left: 1px solid var(--border-light); box-shadow: var(--shadow-drawer); z-index: 310; transition: var(--transition-smooth); display: flex; flex-direction: column; }
.cart-drawer.active { right: 0; }
.drawer-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; }
.drawer-header h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; display: flex; align-items: center; gap: 0.5rem; }

.free-shipping-progress { background: var(--bg-subtle); padding: 0.75rem 1.25rem; border-bottom: 1px solid var(--border-light); }
.progress-message { font-size: 0.75rem; font-weight: 700; color: var(--accent-gold); margin-bottom: 0.35rem; }
.progress-track { width: 100%; height: 6px; background: var(--border-light); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent-gold), var(--accent-green)); transition: width 0.4s ease; }

.drawer-body { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: 0.85rem; }
.cart-item { display: flex; gap: 0.85rem; background: var(--bg-subtle); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 0.75rem; position: relative; }
.cart-item-img { width: 64px; height: 78px; object-fit: cover; border-radius: var(--radius-xs); flex-shrink: 0; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item-title { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; line-height: 1.2; padding-right: 1rem; }
.cart-item-meta { font-size: 0.725rem; color: var(--text-muted); }
.cart-item-price-qty { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border-light); border-radius: var(--radius-xs); background: #ffffff; }
.qty-btn { padding: 0.15rem 0.45rem; font-weight: 700; }
.qty-val { padding: 0 0.45rem; font-size: 0.78rem; font-weight: 700; }
.item-delete-btn { position: absolute; top: 0.5rem; right: 0.5rem; color: var(--text-muted); }
.item-delete-btn:hover { color: var(--accent-red); }
.item-delete-btn i { width: 16px; height: 16px; }

.drawer-footer { padding: 1.25rem; border-top: 1px solid var(--border-light); background: #ffffff; }
.coupon-section { margin-bottom: 0.85rem; }
.coupon-input-group { display: flex; align-items: center; gap: 0.4rem; background: var(--bg-subtle); border: 1px solid var(--border-light); border-radius: var(--radius-xs); padding: 0.2rem 0.4rem; }
.coupon-input-group i { width: 16px; height: 16px; color: var(--accent-gold); flex-shrink: 0; }
.coupon-input-group input { flex: 1; background: transparent; border: none; color: var(--text-main); outline: none; font-size: 0.78rem; width: 100%; }

.coupon-chips { display: flex; gap: 0.35rem; margin-top: 0.4rem; flex-wrap: wrap; }
.coupon-chip { font-size: 0.65rem; font-weight: 700; background: #fef3c7; color: #92400e; border: 1px dashed #f59e0b; border-radius: 4px; padding: 0.15rem 0.4rem; cursor: pointer; }
.summary-breakdown { margin-bottom: 1rem; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.825rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.summary-row.total-row { font-size: 1.05rem; font-weight: 900; color: var(--text-main); border-top: 1px dashed var(--border-light); padding-top: 0.5rem; margin-top: 0.4rem; }

/* MODALS - FIXED TO MOBILE SCREEN BOUNDARIES */
.modal-card { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.95); background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 320; width: 92vw; max-width: 900px; max-height: 85vh; overflow-y: auto; opacity: 0; pointer-events: none; transition: var(--transition-smooth); padding: 1.5rem; box-sizing: border-box; }
.modal-overlay.active + .modal-card, .modal-card.active { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.modal-close { position: absolute; top: 1rem; right: 1rem; color: var(--text-muted); background: none; border: none; z-index: 10; }
.modal-close:hover { color: var(--text-main); }
.modal-close i { width: 20px; height: 20px; }

.quick-view-modal { width: 92vw; max-width: 880px; padding: 0; }
.quick-view-grid { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
.qv-image-section { background: var(--bg-muted); width: 100%; }
.qv-main-img { width: 100%; height: 440px; object-fit: cover; }
.qv-details-section { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.qv-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; }
.qv-offers-box { background: #fffbeb; border: 1px dashed #f59e0b; border-radius: var(--radius-xs); padding: 0.55rem 0.75rem; font-size: 0.75rem; color: #b45309; }

.size-modal-card, .pincode-modal-card { width: 92vw; max-width: 440px; }
.modal-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.25rem; }

.form-row { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.85rem; }
.form-row label { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); }
.form-row input, .form-row select { background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-xs); padding: 0.55rem 0.75rem; color: var(--text-main); outline: none; width: 100%; }

.size-recommendation-result { margin-top: 1.25rem; background: #ecfdf5; border: 1px solid var(--accent-green); border-radius: var(--radius-md); padding: 1rem; text-align: center; }
.rec-label { font-size: 0.725rem; font-weight: 800; color: var(--accent-green); display: block; }
.rec-size-badge { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; }

.pincode-form { display: flex; gap: 0.4rem; }
.pincode-form input { flex: 1; background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-xs); padding: 0.55rem 0.75rem; width: 100%; }
.pincode-result { margin-top: 0.85rem; padding: 0.75rem; border-radius: var(--radius-xs); background: var(--bg-subtle); font-size: 0.8rem; }

.checkout-modal-card { width: 92vw; max-width: 880px; padding: 1.5rem; }
.checkout-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-light); flex-wrap: wrap; gap: 0.5rem; }
.checkout-grid { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group.full-width { grid-column: span 2; }
.form-group label { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); }
.form-group input { background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-xs); padding: 0.55rem 0.75rem; color: var(--text-main); outline: none; width: 100%; }
.form-group input:focus { border-color: var(--border-dark); }

.payment-options { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 0.65rem; }
.payment-option { display: flex; align-items: flex-start; gap: 0.75rem; background: var(--bg-subtle); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 0.75rem 0.85rem; cursor: pointer; }
.payment-option input { margin-top: 0.25rem; accent-color: var(--accent-red); }

.checkout-summary-section { background: var(--bg-subtle); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 1.25rem; }

.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 400; display: flex; flex-direction: column; gap: 0.65rem; pointer-events: none; max-width: 90vw; }
.toast { pointer-events: auto; background: #ffffff; color: var(--text-main); border: 1px solid var(--border-light); padding: 0.75rem 1rem; border-radius: var(--radius-md); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.65rem; font-size: 0.8rem; font-weight: 600; animation: slideInToast 0.3s ease forwards; }

@keyframes slideInToast { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }

/* ==========================================================================
   TABLET & MOBILE RESPONSIVE MEDIA QUERIES (100% FIXED NO HORIZONTAL MOVING)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 2rem; min-height: auto; }
  .hero-visual-side { height: auto; min-height: 340px; max-height: 420px; aspect-ratio: 4 / 3; }
  .catalog-grid-wrapper { grid-template-columns: 1fr; }
  .filters-sidebar { position: fixed; inset: 0; top: 0; z-index: 305; border-radius: 0; overflow-y: auto; display: none; width: 100vw; height: 100vh; }
  .filters-sidebar.active { display: block; }
  .close-filter-mobile { display: block; }
  .mobile-filter-btn { display: inline-flex; }
  .products-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
  .mood-grid-container { grid-template-columns: repeat(2, 1fr); }
  .outfit-grid-layout { grid-template-columns: 1fr; }
  .footer-columns-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .checkout-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Strict Mobile Overflow Fixes */
  html, body { width: 100vw; overflow-x: hidden; position: relative; }
  .container { padding: 0 1rem; max-width: 100vw; }

  /* Top Bar */
  .announcement-bar { height: auto; padding: 0.4rem 0; }
  .top-bar-right { display: none; }
  
  /* Header Mobile Layout */
  .header-container { height: 60px; }
  .nav-menu, .search-box-wrapper { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .logo-text { font-size: 1.5rem; }
  .cart-total-header { display: none; }
  .cart-btn-header { padding: 0.4rem 0.65rem; }

  /* Hero Section */
  .hero-section { padding: 1.25rem 0; }
  .hero-pill { font-size: 0.68rem; padding: 0.3rem 0.65rem; letter-spacing: 0.25px; margin-bottom: 0.75rem; max-width: 100%; line-height: 1.3; }
  .hero-visual-side { width: 100%; height: auto; min-height: 280px; max-height: 380px; aspect-ratio: 4 / 3; border-radius: var(--radius-md); margin-top: 0.5rem; background: #ffffff; }
  .hero-visual-img { width: 100%; height: 100%; object-fit: contain; object-position: center center; background: #ffffff; }
  .hero-floating-card { position: absolute; bottom: 12px; left: 12px; right: 12px; padding: 0.65rem 0.85rem; background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(10px); display: flex; }
  .hero-title { font-size: clamp(1.35rem, 4.8vw, 1.95rem); line-height: 1.22; margin-bottom: 0.65rem; word-break: break-word; }
  .hero-subtitle { font-size: 0.88rem; margin-bottom: 1rem; }
  .hero-cta-group { width: 100%; flex-direction: column; gap: 0.5rem; }
  .hero-cta-group .btn { width: 100%; }

  /* Story Circles */
  .story-ring-wrap { width: 60px; height: 60px; }
  .story-name { font-size: 0.68rem; }

  /* Mood Grid Cards */
  .mood-grid-container { grid-template-columns: 1fr; gap: 1rem; }
  .mood-card { height: 340px; }

  /* Trust Ribbon */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  
  /* Product Cards Grid - 2 Column Fixed Mobile Layout */
  .products-grid.cols-4, .products-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .product-card-body { padding: 0.75rem; }
  .card-product-title { font-size: 0.85rem; }
  .curr-price { font-size: 1rem; }
  .orig-price { font-size: 0.725rem; }
  .size-btn-pill { width: 26px; height: 24px; font-size: 0.625rem; }
  .add-cart-card-btn { font-size: 0.725rem; padding: 0.55rem; }

  /* Outfit Builder */
  .outfit-card-box { padding: 1.25rem; }
  .outfit-select-slots { grid-template-columns: 1fr; }
  .slot-img-preview { height: 140px; }

  /* Reviews */
  .reviews-grid-box { grid-template-columns: 1fr; gap: 1rem; }

  /* Footer */
  .newsletter-card-box { flex-direction: column; align-items: flex-start; padding: 1.25rem; width: 100%; }
  .newsletter-form-inline { width: 100%; flex-direction: column; }
  .footer-columns-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  
  /* Modals */
  .quick-view-grid { grid-template-columns: 1fr; }
  .qv-main-img { height: 280px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .cart-drawer { width: 100vw; }
}

@media (max-width: 480px) {
  .products-grid.cols-4, .products-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .card-badges-stack { top: 6px; left: 6px; }
  .wishlist-btn-card { top: 6px; right: 6px; width: 30px; height: 30px; }
  .wishlist-btn-card i { width: 14px; height: 14px; }
  .fabric-badge-pill { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
}
