/* === VARIABLES & RESET === */
:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #a67c52;
  --navy: #1a1a2e;
  --charcoal: #2d2d2d;
  --dark: #0d0d0d;
  --off-white: #fafaf8;
  --white: #ffffff;
  --text-light: #888888;
  --border: #e8e0d5;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --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.2);
  --radius-sm: 4px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* === UTILITIES === */
.container { width: 90%; max-width: 1280px; margin: 0 auto; }
.gold-text { color: var(--gold); }
.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,169,110,0.4);
}

.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }

.divider { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem auto; }

/* === HEADER === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { text-align: center; line-height: 1; }
.logo-main {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--white);
  transition: var(--transition);
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.55em;
  color: var(--gold);
  font-weight: 400;
  text-transform: uppercase;
}

.header.scrolled .logo-main { color: var(--dark); }

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.header.scrolled .nav-links a { color: var(--charcoal); }
.header.scrolled .nav-links a:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 1.2rem; }
.header-actions .icon-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.9); font-size: 1rem;
  transition: var(--transition); position: relative;
}
.header.scrolled .header-actions .icon-btn { color: var(--charcoal); }
.icon-btn:hover { color: var(--gold) !important; }

.cart-badge {
  position: absolute; top: -8px; right: -8px;
  background: var(--gold); color: var(--white);
  font-size: 0.6rem; width: 16px; height: 16px;
  border-radius: 50%; display: none;
  align-items: center; justify-content: center;
}

.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column;
  gap: 5px; padding: 5px;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--transition); display: block;
}
.header.scrolled .hamburger span { background: var(--dark); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%;
  width: 80%; max-width: 380px; height: 100vh;
  background: var(--navy); z-index: 2000;
  transition: right 0.4s ease;
  padding: 4rem 2.5rem;
  display: flex; flex-direction: column;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--white); font-size: 1.5rem; cursor: pointer;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 2rem; color: var(--white); transition: var(--transition);
}
.mobile-nav-links a:hover { color: var(--gold); }

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 1999;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.nav-overlay.show { opacity: 1; pointer-events: all; }

/* === HERO (FULL-SCREEN CINEMATIC) === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full-screen background image */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 65% center;
  transform: scale(1.06); transition: transform 9s ease;
}
.hero-bg img.pan { transform: scale(1); }

/* Cinematic gradient overlay */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(8,5,20,0.90) 0%, rgba(8,5,20,0.60) 45%, rgba(8,5,20,0.18) 100%),
    linear-gradient(to top, rgba(8,5,20,0.78) 0%, transparent 38%);
}

/* Gold viewport frame */
.hero-frame {
  position: absolute; inset: 1.8rem; z-index: 2;
  border: 1px solid rgba(201,169,110,0.22);
  pointer-events: none;
}
.hero-frame::before {
  content: '';
  position: absolute; top: -1px; left: -1px;
  width: 72px; height: 72px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.hero-frame::after {
  content: '';
  position: absolute; bottom: -1px; right: -1px;
  width: 72px; height: 72px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

/* Main content block */
.hero-content {
  position: relative; z-index: 3;
  padding: 10rem 5% 4rem 7%;
  max-width: 800px;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeInDown 0.8s ease 0.3s both;
}
.hero-eyebrow-line {
  width: 40px; height: 1px; background: var(--gold); flex-shrink: 0;
}

/* Word-by-word headline */
.hero-headline {
  display: flex;
  flex-direction: column;
  font-size: clamp(3.8rem, 6.5vw, 8.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 3rem;
}
.hero-headline .word {
  display: block;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-headline .word.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-headline .word em {
  color: var(--gold-light); font-style: italic;
}

/* Subtitle + CTAs revealed after words */
.hero-sub-wrap {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.hero-sub-wrap.visible { opacity: 1; transform: translateY(0); }

.hero-gold-line {
  width: 55px; height: 1px; background: var(--gold); margin-bottom: 1.8rem;
}
.hero-subtitle {
  font-size: 0.97rem; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.9;
  letter-spacing: 0.04em; margin-bottom: 2.8rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-ghost-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold); cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost-gold:hover {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}

/* Stats row */
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 3.2s both;
}
.hero-stat .num {
  display: block; font-family: var(--font-heading);
  font-size: 2.2rem; color: var(--white); line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.6rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.18em; text-transform: uppercase;
  display: block; margin-top: 0.3rem;
}
.hero-stat-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.14); flex-shrink: 0;
}

/* Floating product tag */
.hero-product-tag {
  position: absolute; bottom: 5rem; right: 5%;
  z-index: 3;
  background: rgba(8,5,20,0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.8rem; color: var(--white);
  opacity: 0;
  animation: fadeInUp 0.8s ease 2.6s both;
  min-width: 195px;
}
.hero-product-tag .tag-label {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.4rem;
}
.hero-product-tag .tag-name {
  font-family: var(--font-heading); font-size: 1.15rem;
  display: block; margin-bottom: 0.3rem;
}
.hero-product-tag .tag-price {
  font-size: 0.88rem; color: var(--gold); font-weight: 600;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2.8rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 3.8s both;
}
.hero-scroll-hint span {
  font-size: 0.6rem; letter-spacing: 0.38em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
}
.scroll-line {
  width: 1px; height: 52px;
  background: rgba(255,255,255,0.18);
  position: relative; overflow: hidden;
}
.scroll-dot {
  width: 1px; height: 16px;
  background: var(--gold); position: absolute; top: 0;
  animation: scrollAnim 1.8s ease infinite;
}

/* === MARQUEE === */
.marquee-strip { background: var(--gold); padding: 0.8rem 0; overflow: hidden; }
.marquee-wrapper { display: flex; overflow: hidden; }
.marquee-track {
  display: flex; gap: 3rem;
  animation: marquee 22s linear infinite; width: max-content;
}
.marquee-track span {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--white); white-space: nowrap;
}
.marquee-track .dot { color: rgba(255,255,255,0.45); }

/* === SECTION STYLES === */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p {
  font-size: 0.9rem; color: var(--text-light);
  max-width: 500px; margin: 0 auto; line-height: 1.8;
}

/* === CATEGORIES === */
.categories-section { padding: 6rem 0; background: var(--off-white); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.category-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  border-radius: var(--radius-sm);
}
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.82) 0%, rgba(13,13,13,0.08) 60%);
  display: flex; align-items: flex-end; padding: 2rem;
  transition: var(--transition);
}
.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.18) 70%);
}
.category-content { color: var(--white); }
.category-content h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.category-link {
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light);
  display: flex; align-items: center; gap: 0.5rem;
  transition: var(--transition);
}
.category-card:hover .category-link { gap: 1rem; }

/* === PRODUCTS GRID === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.product-card { position: relative; cursor: pointer; }
.product-image-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: #f5f0eb;
  margin-bottom: 1.2rem; border-radius: var(--radius-sm);
}
.product-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.07); }

.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--white);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; z-index: 2; border-radius: 2px;
}
.product-badge.sale { background: #c0392b; }
.product-badge.sold { background: var(--charcoal); }

.product-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(13,13,13,0.88), transparent);
  transform: translateY(100%); transition: var(--transition);
  display: flex; gap: 0.5rem;
}
.product-card:hover .product-actions { transform: translateY(0); }
.product-actions .btn { flex: 1; justify-content: center; padding: 0.7rem 1rem; font-size: 0.68rem; }

.wishlist-btn {
  width: 40px; height: 40px;
  background: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); transition: var(--transition); flex-shrink: 0;
}
.wishlist-btn:hover { background: var(--gold); color: var(--white); }

.product-info h4 {
  font-family: var(--font-heading); font-size: 1.1rem;
  font-weight: 500; margin-bottom: 0.3rem; color: var(--dark);
}
.product-type {
  font-size: 0.7rem; color: var(--text-light);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.4rem;
}
.product-price { font-size: 0.92rem; font-weight: 600; color: var(--gold-dark); }
.product-price .original {
  text-decoration: line-through; color: var(--text-light);
  margin-right: 0.4rem; font-weight: 400;
}

/* === ARRIVALS & BESTSELLERS === */
.arrivals-section { padding: 6rem 0; }
.bestsellers-section { padding: 6rem 0; background: var(--off-white); }

/* === PERKS BANNER === */
.perks-section { background: var(--navy); padding: 4.5rem 0; }
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.perk-item { text-align: center; color: var(--white); }
.perk-item i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.perk-item h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 0.4rem; }
.perk-item p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* === WHY US === */
.why-section { padding: 6rem 0; background: var(--dark); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.why-image { position: relative; }
.why-image img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: var(--radius-sm);
}
.why-image-badge {
  position: absolute; bottom: 2rem; left: -2rem;
  background: var(--gold); padding: 1.5rem 2rem; text-align: center;
}
.why-image-badge .num {
  font-family: var(--font-heading);
  font-size: 2.5rem; color: var(--white); display: block; line-height: 1;
}
.why-image-badge span { font-size: 0.68rem; color: rgba(255,255,255,0.85); letter-spacing: 0.15em; text-transform: uppercase; }
.why-content { color: var(--white); }
.why-content h2 { color: var(--white); margin-bottom: 1.5rem; }
.why-content .lead {
  font-size: 0.95rem; color: rgba(255,255,255,0.6);
  line-height: 1.9; margin-bottom: 2.5rem;
}
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-icon {
  width: 48px; height: 48px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
  transition: var(--transition);
}
.why-item:hover .why-icon { background: var(--gold); color: var(--white); }
.why-item-text h5 {
  font-family: var(--font-heading); font-size: 1.2rem;
  color: var(--white); margin-bottom: 0.3rem;
}
.why-item-text p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* === TESTIMONIALS === */
.testimonials-section { padding: 6rem 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--off-white); padding: 2.5rem;
  border-bottom: 3px solid transparent; transition: var(--transition);
}
.testimonial-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-5px); box-shadow: var(--shadow-md);
}
.stars { color: var(--gold); font-size: 0.78rem; margin-bottom: 1.2rem; letter-spacing: 0.1em; }
.testimonial-text {
  font-family: var(--font-heading); font-size: 1.05rem;
  line-height: 1.8; color: var(--charcoal);
  font-style: italic; margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img {
  width: 45px; height: 45px; border-radius: 50%; object-fit: cover;
}
.author-name { font-weight: 600; font-size: 0.85rem; color: var(--dark); }
.author-loc { font-size: 0.72rem; color: var(--text-light); }

/* === INSTAGRAM === */
.instagram-section { padding: 5rem 0; background: var(--off-white); text-align: center; }
.insta-handle {
  font-size: 0.78rem; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase; font-weight: 600;
  margin-bottom: 2.5rem; display: block;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.insta-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
}
.insta-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-item:hover img { transform: scale(1.12); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(201,169,110,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay i { color: var(--white); font-size: 1.5rem; }

/* === NEWSLETTER === */
.newsletter-section {
  padding: 6rem 0; background: var(--navy); text-align: center;
}
.newsletter-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.newsletter-section p {
  color: rgba(255,255,255,0.58); margin-bottom: 2.5rem;
  font-size: 0.9rem; max-width: 450px; margin-left: auto; margin-right: auto;
}
.newsletter-form {
  display: flex; max-width: 480px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; padding: 1rem 1.5rem; border: none; outline: none;
  font-family: var(--font-body); font-size: 0.88rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18); border-right: none;
  color: var(--white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.38); }
.newsletter-form button {
  padding: 1rem 2rem; background: var(--gold); color: var(--white); border: none;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-dark); }

/* === FOOTER === */
.footer { background: var(--dark); padding: 5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-brand .logo-main { color: var(--white); }
.footer-brand p {
  margin-top: 1.5rem; font-size: 0.83rem;
  line-height: 1.85; color: rgba(255,255,255,0.45);
}
.footer-social { display: flex; gap: 0.8rem; margin-top: 2rem; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.82rem; transition: var(--transition);
}
.social-icon:hover {
  background: var(--gold); border-color: var(--gold); color: var(--white);
}
.footer-col h5 {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a {
  font-size: 0.83rem; color: rgba(255,255,255,0.48); transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact li { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; }
.footer-contact li i { color: var(--gold); font-size: 0.88rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact li span { font-size: 0.83rem; color: rgba(255,255,255,0.48); line-height: 1.65; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 999; display: flex;
  flex-direction: column; align-items: flex-end; gap: 0.75rem;
}
.whatsapp-btn {
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--white); font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.38); transition: var(--transition);
  position: relative;
}
.whatsapp-btn::before {
  content: ''; position: absolute; inset: -5px;
  border-radius: 50%; border: 2px solid #25D366;
  animation: pulse 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
  background: var(--dark); color: var(--white);
  font-size: 0.72rem; padding: 0.4rem 1rem;
  border-radius: 50px; white-space: nowrap;
  opacity: 0; transform: translateX(10px);
  transition: var(--transition); pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* === TOAST === */
.toast {
  position: fixed; bottom: 6.5rem; right: 2rem;
  background: var(--dark); color: var(--white);
  padding: 1rem 1.5rem; font-size: 0.82rem;
  z-index: 9999; transform: translateX(150%);
  transition: transform 0.4s ease;
  border-left: 3px solid var(--gold);
  max-width: 280px; box-shadow: var(--shadow-md);
}
.toast.show { transform: translateX(0); }

/* === PAGE BANNER === */
.page-banner {
  padding: 10rem 0 5rem; background: var(--navy);
  text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  opacity: 0.12;
}
.page-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-banner > * { position: relative; z-index: 1; }
.page-banner h1 {
  color: var(--white); letter-spacing: 0.3em;
  text-transform: uppercase;
}
.page-banner .breadcrumb {
  font-size: 0.72rem; color: rgba(255,255,255,0.48);
  margin-top: 1rem; letter-spacing: 0.12em;
}
.page-banner .breadcrumb a { color: var(--gold); }
.page-banner .breadcrumb a:hover { text-decoration: underline; }

/* === FILTER TABS (Collections) === */
.filter-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--white); position: sticky; top: 68px; z-index: 100;
}
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.filter-tab {
  padding: 0.6rem 1.6rem; background: none;
  border: 1px solid var(--border); font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); color: var(--charcoal);
  border-radius: 50px;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--dark); color: var(--white); border-color: var(--dark);
}

.collections-grid-section { padding: 4rem 0 6rem; }

/* === CONTACT PAGE === */
.contact-section { padding: 6rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
}
.contact-info h3 { font-size: 2rem; margin-bottom: 1rem; }
.contact-info > p {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 2.5rem;
}
.contact-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact-card-icon {
  width: 46px; height: 46px; background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.card-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem;
}
.contact-card-text p, .contact-card-text a {
  font-size: 0.88rem; color: var(--charcoal); line-height: 1.65;
}
.contact-card-text a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-form h3 { margin-bottom: 0.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem; border: 1px solid var(--border);
  font-family: var(--font-body); font-size: 0.88rem;
  outline: none; transition: var(--transition); background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* === MAP === */
.map-section { height: 420px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* === ABOUT PAGE === */
.about-story { padding: 6rem 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-accent-box {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 55%; aspect-ratio: 1;
  background: var(--gold); opacity: 0.15;
  z-index: -1;
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p {
  font-size: 0.92rem; color: var(--text-light);
  line-height: 1.92; margin-bottom: 1.2rem;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem; padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: var(--font-heading); font-size: 2.8rem;
  color: var(--gold); display: block; line-height: 1;
}
.stat-label {
  font-size: 0.7rem; color: var(--text-light);
  letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.4rem;
}

.values-section { padding: 6rem 0; background: var(--off-white); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.value-card {
  background: var(--white); padding: 2.5rem;
  text-align: center; transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md); border-bottom-color: var(--gold);
}
.value-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: 1.2rem; display: block; }
.value-card h4 { margin-bottom: 0.75rem; }
.value-card p { font-size: 0.83rem; color: var(--text-light); line-height: 1.82; }

.craft-section { padding: 6rem 0; background: var(--dark); }
.craft-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 5rem; align-items: center;
}
.craft-content h2 { color: var(--white); margin-bottom: 1.5rem; }
.craft-content p {
  font-size: 0.92rem; color: rgba(255,255,255,0.55);
  line-height: 1.9; margin-bottom: 1.2rem;
}
.craft-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(0.4); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.18); opacity: 0; }
}

.fade-in-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }
.fade-in-up:nth-child(5) { transition-delay: 0.1s; }
.fade-in-up:nth-child(6) { transition-delay: 0.2s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { gap: 3rem; }
  .craft-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  .hero-frame { inset: 1.2rem; }
  .hero-content { padding: 9rem 5% 4rem 5%; }
  .hero-product-tag { right: 3%; bottom: 4rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .header-actions .icon-btn:not(.cart-icon) { display: none; }

  .hero-frame { inset: 0.8rem; }
  .hero-frame::before, .hero-frame::after { width: 48px; height: 48px; }
  .hero-content { padding: 8rem 4% 3rem 4%; max-width: 100%; }
  .hero-headline { font-size: clamp(3rem, 9vw, 5.5rem); }
  .hero-product-tag { display: none; }
  .hero-scroll-hint { display: none; }

  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .perks-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image-badge { left: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-accent-box { display: none; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .craft-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(255,255,255,0.18); }
  .filter-section { top: 60px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(3rem, 12vw, 4.5rem); }
  .hero-stats { gap: 1.2rem; }
  .hero-stat .num { font-size: 1.7rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .about-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
