/* ============================================================
   THARANGA — Luxury Fashion Brand
   Main Stylesheet
   Version: 1.0
============================================================ */

/* ── 1. Design System Variables ──────────────────────────── */
:root {
  --black:       #0A0A0A;
  --black-rich:  #111111;
  --black-soft:  #1A1A1A;
  --charcoal:    #2C2C2C;
  --gray-dark:   #555555;
  --gray-mid:    #888888;
  --gray-light:  #CCCCCC;
  --gray-pale:   #E8E6E1;
  --off-white:   #F8F7F4;
  --white:       #FFFFFF;
  --gold:        #C9A96E;
  --gold-light:  #DFC198;
  --gold-dark:   #A8854A;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --nav-height:    80px;
  --transition:    0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-sm:   0 2px 10px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --shadow-xl:   0 30px 80px rgba(0,0,0,0.25);

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --z-nav:       1000;
  --z-overlay:   900;
  --z-modal:     1100;
  --z-loader:    2000;
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; width: 100%; height: auto; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ── 3. Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.display-1 { font-size: clamp(3.5rem, 8vw, 8rem); font-weight: 300; letter-spacing: -0.01em; }
.display-2 { font-size: clamp(2.8rem, 6vw, 6rem); font-weight: 300; }
.heading-xl { font-size: clamp(2.2rem, 4vw, 4rem); }
.heading-lg { font-size: clamp(1.8rem, 3vw, 3rem); }
.heading-md { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.heading-sm { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg  { font-size: 1.125rem; line-height: 1.8; }
.body-md  { font-size: 1rem;     line-height: 1.75; }
.body-sm  { font-size: 0.875rem; line-height: 1.7; }

/* ── 4. Page Loader ───────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: var(--z-loader);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.25em;
  color: var(--white);
  font-weight: 300;
}

.loader-logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderSlide 1.5s ease infinite;
}

@keyframes loaderSlide {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ── 5. Navigation ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: var(--z-nav);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
  display: flex;
  align-items: center;
}

.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  height: 68px;
}

.navbar.light-nav { background: rgba(248,247,244,0.95); backdrop-filter: blur(20px); }
.navbar.light-nav.scrolled { background: rgba(248,247,244,0.98); }

.nav-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.navbar.light-nav .nav-logo img { filter: none; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  transition: color var(--transition);
}

.navbar.light-nav .nav-logo-text { color: var(--black); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar.light-nav .nav-links a { color: var(--charcoal); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }
.navbar.light-nav .nav-links a:hover,
.navbar.light-nav .nav-links a.active { color: var(--black); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav-action-btn {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}

.navbar.light-nav .nav-action-btn { color: var(--charcoal); }
.nav-action-btn:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.navbar.light-nav .nav-action-btn:hover { color: var(--black); background: rgba(0,0,0,0.06); }

.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-phone-btn i { font-size: 0.85rem; }
.nav-phone-btn:hover { color: var(--gold); }
.navbar.light-nav .nav-phone-btn { color: var(--charcoal); }
.navbar.light-nav .nav-phone-btn:hover { color: var(--gold-dark); }

.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

.navbar.light-nav .nav-hamburger span { background: var(--black); }

.nav-hamburger span:nth-child(1) { width: 100%; }
.nav-hamburger span:nth-child(2) { width: 70%; }
.nav-hamburger span:nth-child(3) { width: 100%; }

.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 100%; }
.nav-hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: rgba(255,255,255,0.7);
  display: block;
  transition: color var(--transition-fast), transform var(--transition);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu a:hover { color: var(--white); transform: translateX(8px); }

/* ── 6. Shared Section Styles ─────────────────────────────── */
.section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 8px auto 0;
}

.section-divider.wide { width: 100px; }

/* ── 7. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform var(--transition);
}

.btn:hover::before { transform: translateX(0); }

/* Primary: white text on black */
.btn-primary {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn-primary::before { background: var(--gold); }
.btn-primary:hover { border-color: var(--gold); }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }

/* Secondary: outlined */
.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn-secondary::before { background: var(--black); }
.btn-secondary:hover { color: var(--white); }
.btn-secondary span, .btn-secondary i { position: relative; z-index: 1; }

/* White outlined (on dark backgrounds) */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white::before { background: var(--white); }
.btn-outline-white:hover { color: var(--black); border-color: var(--white); }
.btn-outline-white span, .btn-outline-white i { position: relative; z-index: 1; }

/* Gold */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-gold::before { background: var(--gold-dark); }
.btn-gold span, .btn-gold i { position: relative; z-index: 1; }

/* Text link */
.btn-text {
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transition: transform var(--transition);
}

.btn-text:hover::after { transform: scaleX(0); }
.btn-text:hover { gap: 14px; }

.btn-text-white { color: var(--white); }

.btn-sm { padding: 10px 24px; font-size: 0.68rem; }
.btn-lg { padding: 20px 56px; font-size: 0.75rem; }

/* ── 8. Hero — Home ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg img { transform: scale(1); }

.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  padding-top: var(--nav-height);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.1s forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-mouse {
  width: 24px; height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* Hero slide count */
.hero-slide-info {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-slide-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.hero-slide-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  background: var(--gold);
  animation: slideProgress 5s ease infinite;
}

@keyframes slideProgress {
  0%   { height: 0; }
  100% { height: 100%; }
}

/* ── 9. Hero — Inner Pages ────────────────────────────────── */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.089), rgba(0,0,0,0.6));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  padding-top: var(--nav-height);
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); font-size: 0.6rem; }
.breadcrumb .current { color: var(--gold); }

/* ── 10. Ticker / Marquee ─────────────────────────────────── */
.ticker-section {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: tickerScroll 25s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  flex-shrink: 0;
}

.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 11. Featured Collections ─────────────────────────────── */
.collections-section {
  padding: 120px 0;
  background: var(--white);
}

.collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collection-card:nth-child(1) { grid-row: 1 / 3; }

.collection-img {
  position: relative;
  overflow: hidden;
}

.collection-card:nth-child(1) .collection-img { height: 680px; }
.collection-card:nth-child(2) .collection-img,
.collection-card:nth-child(3) .collection-img { height: 330px; }

.collection-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-card:hover .collection-img img { transform: scale(1.06); }

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
  transition: background var(--transition);
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 50%);
}

.collection-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
  transform: translateY(8px);
  transition: transform var(--transition);
}

.collection-card:hover .collection-info { transform: translateY(0); }

.collection-category {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.collection-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 16px;
}

.collection-card:nth-child(1) .collection-name { font-size: 2.6rem; }

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.collection-card:hover .collection-link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

/* ── 12. Trending Products ────────────────────────────────── */
.products-section {
  padding: 120px 0;
  background: var(--off-white);
}

.products-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 60px;
  background: var(--gray-pale);
  border-radius: 0;
  padding: 4px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.product-tab {
  flex: 1;
  padding: 10px 20px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-dark);
  text-align: center;
  transition: all var(--transition-fast);
  position: relative;
}

.product-tab.active {
  background: var(--black);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* Product Card */
.product-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-pale);
}

.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity var(--transition);
}

.product-img-wrap .img-alt {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-img-wrap img:not(.img-alt) { transform: scale(1.05); opacity: 0; }
.product-card:hover .img-alt { opacity: 1; }

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 12px;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}

.badge-new  { background: var(--black); color: var(--white); }
.badge-sale { background: var(--gold);  color: var(--white); }
.badge-hot  { background: var(--charcoal); color: var(--white); }

.product-actions {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
  transform: translateX(60px);
  transition: transform var(--transition);
}

.product-card:hover .product-actions { transform: translateX(0); }

.product-action-btn {
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--black);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.product-action-btn:hover {
  background: var(--black);
  color: var(--white);
}

.product-action-btn.liked { color: #e74c3c; }

.product-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.product-card:hover .product-quick-add { transform: translateY(0); }

.product-info {
  padding: 16px 16px 20px;
}

.product-actions,
.product-quick-add,
.product-price,
.cart-count {
  display: none !important;
}

.product-category {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

.product-card:hover .product-name { color: var(--charcoal); }

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-current {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
}

.price-original {
  font-size: 0.85rem;
  color: var(--gray-mid);
  text-decoration: line-through;
}

.price-saving {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.product-rating i { font-size: 0.7rem; color: var(--gold); }
.product-rating span { font-size: 0.75rem; color: var(--gray-mid); margin-left: 4px; }

/* Products section center button */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* ── 13. Categories Showcase ──────────────────────────────── */
.categories-section {
  padding: 120px 0;
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 2/3;
}

.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover img { transform: scale(1.08); }

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.05) 55%);
  transition: background var(--transition);
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 55%);
}

.category-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 20px;
  text-align: center;
}

.category-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.category-count {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── 14. Brands Section ───────────────────────────────────── */
.brands-section {
  padding: 80px 0;
  background: var(--black);
  overflow: hidden;
}

.brands-header {
  text-align: center;
  margin-bottom: 56px;
}

.brands-header .overline { color: var(--gold); }

.brands-marquee-wrap { overflow: hidden; }

.brands-marquee {
  display: flex;
  gap: 80px;
  animation: marquee 20s linear infinite;
}

.brand-logo-item {
  flex-shrink: 0;
  padding: 16px 40px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  transition: border-color var(--transition), background var(--transition);
}

.brand-logo-item:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}

.brand-logo-item span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  transition: color var(--transition);
}

.brand-logo-item:hover span { color: var(--gold); }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 15. Promo Banner ─────────────────────────────────────── */
.promo-section { padding: 0; }

.promo-full {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.promo-full-bg {
  position: absolute;
  inset: 0;
}

.promo-full-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.promo-full:hover .promo-full-bg img { transform: scale(1); }

.promo-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 70%);
}

.promo-full-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 600px;
}

.promo-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
}

.promo-full-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 300;
}

.promo-full-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.promo-split-item {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.promo-split-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-split-item:hover img { transform: scale(1.05); }

.promo-split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 60%);
}

.promo-split-content {
  position: relative;
  z-index: 2;
  padding: 32px 40px;
}

.promo-split-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 6px;
  font-weight: 400;
}

.promo-split-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* ── 16. Testimonials ─────────────────────────────────────── */
.testimonials-section {
  padding: 120px 0;
  background: var(--off-white);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: center;
}

.testimonial-card {
  max-width: 780px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 6px;
}

.testimonial-stars i { color: var(--gold); font-size: 0.85rem; }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.author-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  overflow: hidden;
}

.author-img img { width: 100%; height: 100%; object-fit: cover; }

.author-img.author-initials {
  display: flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.author-name {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--black);
}

.author-title {
  font-size: 0.75rem;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.slider-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--black);
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--black);
  width: 24px;
  border-radius: 4px;
}

/* ── 17. Newsletter ───────────────────────────────────────── */
.newsletter-section {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: 'STYLE';
  position: absolute;
  font-family: var(--font-display);
  font-size: 25vw;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-inner .overline { color: var(--gold); margin-bottom: 16px; display: block; }

.newsletter-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 16px;
}

.newsletter-inner p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}

.newsletter-form button {
  padding: 16px 32px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--transition-fast);
  flex-shrink: 0;
  border: 1px solid var(--gold);
}

.newsletter-form button:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.newsletter-privacy {
  margin-top: 16px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

/* ── 18. Instagram Grid ───────────────────────────────────── */
.instagram-section {
  padding: 120px 0;
  background: var(--white);
}

.instagram-header {
  text-align: center;
  margin-bottom: 56px;
}

.instagram-handle {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 8px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.instagram-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter var(--transition);
}

.instagram-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.6);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram-item:hover .instagram-overlay { opacity: 1; }

.instagram-overlay i {
  font-size: 1.8rem;
  color: var(--white);
}

/* ── 19. Stats Bar ────────────────────────────────────────── */
.stats-section {
  padding: 80px 0;
  background: var(--black-rich);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.stat-item {
  padding: 50px 40px;
  text-align: center;
  background: var(--black-rich);
  position: relative;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.stat-suffix {
  font-size: 0.5em;
  margin-top: 6px;
  color: var(--gold);
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── 20. About Page ───────────────────────────────────────── */
.about-story {
  padding: 120px 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-story-img {
  position: relative;
}

.about-story-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-story-img-accent {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -40px;
  right: -40px;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-xl);
}

.about-story-text .overline { margin-bottom: 20px; display: block; }

.about-story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-story-text p {
  color: var(--gray-dark);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-story-text .btn { margin-top: 16px; }

/* Mission & Vision */
.mission-section {
  padding: 120px 0;
  background: var(--black);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.mission-item h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mission-item p {
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  font-size: 1rem;
}

/* Values */
.values-section {
  padding: 120px 0;
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  padding: 48px 40px;
  background: var(--white);
  border: 1px solid var(--gray-pale);
  position: relative;
  transition: all var(--transition);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.value-card:hover::before { width: 100%; }
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.value-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(0,0,0,0.05);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
}

.value-icon {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--black);
}

.value-card p {
  color: var(--gray-dark);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* Why Choose Us */
.why-section {
  padding: 120px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-feature {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-pale);
}

.why-feature:last-child { border-bottom: none; padding-bottom: 0; }

.why-feature-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border: 1px solid var(--gray-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  transition: all var(--transition);
}

.why-feature:hover .why-feature-icon {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.why-feature h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--black);
}

.why-feature p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.75;
}

.why-img {
  position: relative;
}

.why-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* Team (About) */
.team-section {
  padding: 120px 0;
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.team-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.team-card:hover .team-img img { transform: scale(1.04); }

.team-info {
  padding: 28px;
}

.team-info h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 6px;
}

.team-info .role {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.team-info p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.75;
}

/* ── 21. Products Page ────────────────────────────────────── */
.shop-layout {
  padding: 80px 0 120px;
  background: var(--white);
}

.shop-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

/* Filter Sidebar */
.filter-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.filter-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-pale);
  margin-bottom: 32px;
}

.filter-sidebar-header h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
}

.filter-clear {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.filter-clear:hover { color: var(--gold-dark); }

.filter-group {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-pale);
}

.filter-group:last-child { border-bottom: none; }

.filter-group-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-group-label i {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
  color: var(--gray-mid);
}

.filter-group.collapsed .filter-group-label i { transform: rotate(-90deg); }
.filter-group.collapsed .filter-options { display: none; }

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--charcoal);
  transition: color var(--transition-fast);
}

.filter-option:hover { color: var(--black); }

.filter-checkbox {
  width: 16px; height: 16px;
  border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.filter-option input[type="checkbox"] { display: none; }

.filter-option input:checked + .filter-checkbox {
  background: var(--black);
  border-color: var(--black);
}

.filter-option input:checked + .filter-checkbox::after {
  content: '✓';
  font-size: 0.65rem;
  color: var(--white);
}

.filter-count { color: var(--gray-mid); font-size: 0.78rem; margin-left: auto; }

/* Color swatches */
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  position: relative;
}

.color-swatch.active,
.color-swatch:hover {
  border-color: var(--black);
  transform: scale(1.1);
}

/* Price range */
.price-range {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 2px;
  background: var(--gray-light);
  outline: none;
  border-radius: 2px;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--black);
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--gray-dark);
}

/* Shop main area */
.shop-main {}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-pale);
  margin-bottom: 40px;
  gap: 20px;
}

.shop-result-count {
  font-size: 0.85rem;
  color: var(--gray-dark);
}

.shop-result-count strong { color: var(--black); }

.shop-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-sort label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dark);
  white-space: nowrap;
}

.shop-sort select {
  border: 1px solid var(--gray-light);
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--black);
  outline: none;
  background: transparent;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.shop-sort select:focus { border-color: var(--black); }

.shop-view-toggle {
  display: flex;
  gap: 4px;
}

.view-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-light);
  color: var(--gray-mid);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.view-btn.active, .view-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.shop-products-grid.list-view {
  grid-template-columns: 1fr;
}

.shop-products-grid.list-view .product-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

.shop-products-grid.list-view .product-img-wrap {
  aspect-ratio: 3/4;
  height: 300px;
}

.shop-products-grid.list-view .product-info {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-products-grid.list-view .product-name { font-size: 1.5rem; }

.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 60px;
}

.page-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-light);
  font-size: 0.85rem;
  color: var(--charcoal);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.page-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.page-btn:hover:not(.active) {
  border-color: var(--black);
  color: var(--black);
}

/* ── 22. Enquiry Page ─────────────────────────────────────── */
.enquiry-section {
  padding: 100px 0 120px;
  background: var(--white);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.enquiry-info .overline { display: block; margin-bottom: 20px; }

.enquiry-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.enquiry-info p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 40px;
}

.enquiry-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enquiry-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--off-white);
  border-left: 2px solid var(--gold);
}

.enquiry-benefit i {
  font-size: 1.1rem;
  color: var(--gold);
  width: 24px;
  text-align: center;
}

.enquiry-benefit span {
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.5;
}

/* Form Styles */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-pale);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}

.form-group label .required { color: var(--gold); margin-left: 3px; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--gray-pale);
  font-size: 0.9rem;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background: var(--white);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

.form-error {
  font-size: 0.72rem;
  color: #e74c3c;
  display: none;
}

.form-error.visible { display: block; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  border: 1px solid var(--gray-light);
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.form-check input[type="checkbox"]:checked {
  background: var(--black);
  border-color: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.form-check label {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.6;
  cursor: pointer;
}

.form-check label a { color: var(--gold); text-decoration: underline; }

.form-submit {
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: #f0faf0;
  border: 1px solid #a8e6a8;
}

.form-success.visible { display: block; }
.form-success i { font-size: 2.5rem; color: #27ae60; margin-bottom: 16px; }
.form-success h4 { font-size: 1.4rem; margin-bottom: 8px; color: var(--black); }
.form-success p { font-size: 0.9rem; color: var(--gray-dark); }

/* ── 23. Contact Page ─────────────────────────────────────── */
.contact-section {
  padding: 100px 0 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.contact-info { }

.contact-info .overline { display: block; margin-bottom: 20px; }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-info > p {
  color: var(--gray-dark);
  line-height: 1.9;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  transition: all var(--transition-fast);
}

.contact-detail-item:hover .contact-detail-icon {
  background: var(--black);
  color: var(--white);
}

.contact-detail-content {}

.contact-detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.6;
}

.contact-detail-value a:hover { color: var(--gold); }

/* Business hours */
.hours-table {
  border-top: 1px solid var(--gray-pale);
  margin-top: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-pale);
  font-size: 0.88rem;
}

.hours-row .day { color: var(--charcoal); font-weight: 400; }
.hours-row .time { color: var(--gray-dark); }
.hours-row.closed .time { color: var(--gray-light); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.contact-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-dark);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.contact-social a:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* Map */
.contact-map-wrap {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--off-white);
}

.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f0ede8 0%, #e8e4dd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin {
  width: 60px; height: 60px;
  background: var(--black);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: var(--shadow-md);
  animation: pinBounce 2s ease infinite;
}

.map-pin i {
  transform: rotate(45deg);
  color: var(--white);
  font-size: 1.2rem;
}

@keyframes pinBounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-8px); }
}

.map-placeholder-text {
  text-align: center;
  position: relative;
  z-index: 1;
}

.map-placeholder-text h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 6px;
  margin-top: 20px;
}

.map-placeholder-text p {
  font-size: 0.85rem;
  color: var(--gray-dark);
}

/* Full-width map section */
.map-section {
  height: 460px;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.map-section .map-placeholder { height: 100%; }

/* ── 24. Footer ───────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding-top: 80px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .footer-logo {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-brand .footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  border-radius: 50%;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: block;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-item i {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 3px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-newsletter {}

.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-newsletter-form input {
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.82rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.25); }
.footer-newsletter-form input:focus { border-color: var(--gold); }

.footer-newsletter-form button {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--transition-fast);
  border: none;
}

.footer-newsletter-form button:hover { background: var(--gold-dark); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-powered-by {
  color: #ffffff;
  text-decoration: none;
}

.footer-powered-by:hover {
  color: #d50000;
  text-decoration: underline;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover { color: var(--white); }

.footer-payments {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-payments i {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition-fast);
}

.footer-payments i:hover { color: rgba(255,255,255,0.6); }

/* ── 25. Utility ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-gray   { color: var(--gray-dark); }

.bg-black    { background: var(--black); }
.bg-white    { background: var(--white); }
.bg-off      { background: var(--off-white); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.d-flex          { display: flex; }
.align-center    { align-items: center; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-16          { gap: 16px; }
.gap-24          { gap: 24px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── 26. Animations ───────────────────────────────────────── */
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight{ from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn   { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--black);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 500;
  border: 1px solid rgba(255,255,255,0.1);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 30px;
  width: 52px; height: 52px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 1100;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
  color: var(--white);
}
.whatsapp-float-tooltip {
  position: absolute;
  right: 62px;
  background: #fff;
  color: #333;
  font-size: 0.78rem;
  font-family: var(--font-body);
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
}

/* ── 27. Responsive ───────────────────────────────────────── */
@media (max-width: 1200px) {
  .nav-container { padding: 0 28px; }
  .section-container { padding: 0 28px; }
  .hero-content { padding: 0 28px; }
  .page-hero-content { padding: 0 28px; }

  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collection-card:nth-child(1) { grid-row: auto; grid-column: 1 / -1; }
  .collection-card:nth-child(1) .collection-img { height: 480px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }

  .shop-grid { grid-template-columns: 240px 1fr; gap: 40px; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  :root { --nav-height: 68px; }

  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .collections-grid { grid-template-columns: 1fr; }
  .collection-card:nth-child(1) .collection-img,
  .collection-card:nth-child(2) .collection-img,
  .collection-card:nth-child(3) .collection-img { height: 380px; }

  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .about-story-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-story-img-accent { right: 0; bottom: -20px; }
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .shop-grid { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .filter-sidebar { display: none; }
  .filter-sidebar.mobile-open { display: block; }

  .enquiry-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }

  .promo-full-content { padding: 0 40px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-wrap: wrap; justify-content: center; text-align: center; }
  .footer-payments { justify-content: center; width: 100%; }
}

@media (max-width: 768px) {
  .nav-container { padding: 0 20px; }
  .section-container { padding: 0 20px; }
  .hero-content { padding: 0 20px; }
  .page-hero-content { padding: 0 20px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-section { padding: 80px 0; }
  .collections-section { padding: 80px 0; }
  .categories-section { padding: 80px 0; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-card { padding: 36px 24px; }

  .promo-split { grid-template-columns: 1fr; }
  .promo-full-content { padding: 0 28px; max-width: 100%; }
  .promo-full { height: 420px; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(255,255,255,0.12); }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 36px 20px; }

  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 36px; }

  .shop-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .shop-toolbar { flex-wrap: wrap; }

  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .shop-products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .promo-full-content h2 { font-size: 1.8rem; }

  .collection-card:nth-child(1) .collection-img { height: 280px; }
  .collection-card:nth-child(2) .collection-img,
  .collection-card:nth-child(3) .collection-img { height: 240px; }

  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

/* Print */
@media print {
  .navbar, .footer, .back-to-top, #page-loader { display: none; }
  .hero, .page-hero { height: auto; padding: 60px 40px; }
  .hero-bg, .page-hero-bg { display: none; }
  * { color: var(--black) !important; }
}
