/* ============================================
   HELIO JEWELS — Design System
   Palette: Monochrome Luxe + Gold Accents
   Fonts: Cormorant Garamond + Manrope
   ============================================ */

:root {
  --gold: #B8860B;
  --gold-light: #D4AF37;
  --gold-pale: #F5EFD6;
  --black: #0F0F0F;
  --charcoal: #1A1A1A;
  --dark: #2A2A2A;
  --mid: #6B6B6B;
  --light: #E0E0E0;
  --off-white: #FAFAFA;
  --white: #FFFFFF;
  --cream: #F9F5EE;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', sans-serif;

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

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.14);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s ease;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

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

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
em { font-style: italic; color: var(--gold); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border: 1.5px solid var(--charcoal);
}
.btn-dark:hover {
  background: var(--black);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  background: var(--charcoal);
  color: var(--gold-pale);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--light);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--charcoal);
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--dark);
  transition: color var(--transition-fast);
  border-radius: 50%;
}
.icon-btn:hover { color: var(--gold); }

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

.mobile-menu-btn { display: none; }

/* Search Bar */
.search-bar {
  background: var(--cream);
  border-top: 1px solid var(--light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.search-bar.open { max-height: 80px; }
.search-inner {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 16px 40px;
  gap: 16px;
}
.search-inner input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--charcoal);
  outline: none;
  border-bottom: 1px solid var(--mid);
  padding: 8px 0;
}
.search-close {
  color: var(--mid);
  font-size: 1rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.search-close:hover { color: var(--charcoal); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--light);
  padding: 20px 40px;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--light);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.72) 0%,
    rgba(10,10,10,0.35) 60%,
    rgba(10,10,10,0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  color: var(--white);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  to { left: 100%; }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s ease forwards;
}
.reveal:nth-child(1) { animation-delay: 0.2s; }
.reveal:nth-child(2) { animation-delay: 0.4s; }
.reveal:nth-child(3) { animation-delay: 0.6s; }
.reveal:nth-child(4) { animation-delay: 0.8s; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ MARQUEE ============ */
.marquee-strip {
  background: var(--charcoal);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.marquee-track .dot { color: var(--gold); font-size: 0.5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color var(--transition-fast);
}
.section-link:hover { color: var(--gold); }

/* ============ CATEGORIES ============ */
.categories-section {
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  grid-template-rows: 480px;
  gap: 16px;
}

.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.category-card img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover img { transform: scale(1.08); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  transition: background var(--transition);
}
.category-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%);
}
.cat-overlay h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.cat-overlay span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.category-card:hover .cat-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ============ PRODUCTS GRID ============ */
.featured-section {
  padding: 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.product-card {
  position: relative;
  cursor: pointer;
  group: true;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 16px;
}
.product-image-wrap img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}
.product-badge.new { background: var(--charcoal); }
.product-badge.sale { background: #C0392B; }

.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: flex;
  gap: 8px;
  transform: translateY(100%);
  transition: transform var(--transition);
  z-index: 2;
}
.product-card:hover .product-actions { transform: translateY(0); }

.btn-add-cart {
  flex: 1;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px;
  transition: background var(--transition-fast);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-add-cart:hover { background: var(--gold); }

.btn-wishlist {
  width: 44px;
  height: 44px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}
.btn-wishlist:hover { background: var(--gold-pale); }
.btn-wishlist svg { width: 16px; height: 16px; }

.product-info { padding: 0 4px; }
.product-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-current {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}
.price-original {
  font-size: 0.85rem;
  color: var(--mid);
  text-decoration: line-through;
}
.price-discount {
  font-size: 0.7rem;
  font-weight: 700;
  color: #C0392B;
}

/* ============ PROMISE SECTION ============ */
.promise-section {
  background: var(--cream);
  padding: 64px 80px;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.promise-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.promise-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.promise-item p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ============ EDITORIAL SECTION ============ */
.editorial-section {
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial-text .section-eyebrow { text-align: left; }
.editorial-text h2 {
  margin-bottom: 24px;
  line-height: 1.2;
}
.editorial-text p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 420px;
}
.editorial-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.editorial-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 50%;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--charcoal);
  padding: 100px 80px;
}
.testimonials-section .section-eyebrow { color: var(--gold-light); }
.testimonials-section .section-title { color: var(--white); }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(184,134,11,0.3);
}
.stars {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.reviewer strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}
.reviewer span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* ============ INSTAGRAM ============ */
.instagram-section {
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.insta-item img {
  transition: transform 0.5s ease;
}
.insta-item:hover img { transform: scale(1.08); }

/* ============ NEWSLETTER ============ */
.newsletter-section {
  background: var(--gold-pale);
  padding: 100px 80px;
  text-align: center;
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-inner h2 { margin-bottom: 16px; }
.newsletter-inner p {
  font-size: 0.95rem;
  color: var(--mid);
  margin-bottom: 32px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--light);
  border-right: none;
  font-size: 0.9rem;
  outline: none;
  background: var(--white);
  transition: border-color var(--transition-fast);
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form .btn { border-radius: 0; }
.newsletter-note {
  font-size: 0.72rem;
  color: var(--mid);
  letter-spacing: 0.05em;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 80px 80px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
  border-radius: 50%;
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-links h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.payment-icons {
  display: flex;
  gap: 12px;
}
.payment-icons span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  border-left: 3px solid var(--gold);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  max-width: 320px;
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============ SHOP PAGE ============ */
.shop-hero {
  background: var(--cream);
  padding: 80px 80px 60px;
  text-align: center;
  border-bottom: 1px solid var(--light);
}
.shop-hero h1 { margin-bottom: 12px; }
.shop-hero p {
  font-size: 1rem;
  color: var(--mid);
  max-width: 480px;
  margin: 0 auto;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 80px;
}

/* Filters Sidebar */
.filters-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}
.filter-group {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--light);
}
.filter-group:last-child { border-bottom: none; }
.filter-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.filter-options { display: flex; flex-direction: column; gap: 10px; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--mid);
  transition: color var(--transition-fast);
}
.filter-option:hover { color: var(--charcoal); }
.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}
.filter-option.active { color: var(--charcoal); font-weight: 500; }

.price-range { display: flex; flex-direction: column; gap: 12px; }
.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}
.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--mid);
}

/* Shop Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light);
}
.results-count {
  font-size: 0.85rem;
  color: var(--mid);
}
.sort-select {
  padding: 8px 16px;
  border: 1px solid var(--light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--charcoal);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition-fast);
}
.sort-select:focus { border-color: var(--gold); }

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

/* ============ PRODUCT DETAIL PAGE ============ */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 80px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.gallery-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info { padding-top: 20px; }
.product-detail-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.product-detail-name {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}
.product-detail-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.detail-price-current {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
}
.detail-price-original {
  font-size: 1.1rem;
  color: var(--mid);
  text-decoration: line-through;
}
.detail-price-save {
  font-size: 0.78rem;
  font-weight: 700;
  color: #C0392B;
  background: #FDECEA;
  padding: 3px 8px;
}

.product-detail-desc {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--light);
  padding-bottom: 32px;
}

.size-selector { margin-bottom: 28px; }
.size-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
  display: block;
}
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--light);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}
.size-btn:hover, .size-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.qty-add-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--light);
}
.qty-btn {
  width: 44px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: background var(--transition-fast);
  background: none;
  border: none;
  font-family: var(--font-body);
}
.qty-btn:hover { background: var(--cream); }
.qty-display {
  width: 48px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
}

.btn-add-to-cart-detail {
  flex: 1;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 32px;
  height: 52px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition-fast);
}
.btn-add-to-cart-detail:hover { background: var(--gold); }

.product-meta {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--light);
}
.meta-row {
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 8px;
}
.meta-label {
  font-weight: 600;
  color: var(--charcoal);
  min-width: 100px;
}
.meta-value { color: var(--mid); }

/* ============ CART PAGE ============ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 80px;
}

.cart-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 40px;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}

.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 40px;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--light);
}
.cart-item-info {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background: var(--cream);
  flex-shrink: 0;
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}
.cart-item-variant {
  font-size: 0.78rem;
  color: var(--mid);
}
.cart-item-price {
  font-size: 0.95rem;
  font-weight: 600;
}
.cart-item-total {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
}
.cart-remove {
  color: var(--mid);
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cart-remove:hover { color: #C0392B; }

.cart-summary {
  background: var(--cream);
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.cart-summary h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: var(--mid);
}
.summary-row.total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  padding-top: 16px;
  border-top: 1px solid var(--light);
  margin-top: 8px;
}
.coupon-row {
  display: flex;
  gap: 0;
  margin: 20px 0;
}
.coupon-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--light);
  border-right: none;
  font-size: 0.85rem;
  outline: none;
  font-family: var(--font-body);
}
.coupon-row input:focus { border-color: var(--gold); }
.btn-apply {
  padding: 10px 20px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition-fast);
}
.btn-apply:hover { background: var(--gold); }
.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition-fast);
  margin-top: 16px;
}
.btn-checkout:hover { background: var(--gold-light); }

/* ============ ABOUT PAGE ============ */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero-img {
  position: absolute;
  inset: 0;
}
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  color: var(--white);
}
.about-hero-content h1 { color: var(--white); }

.about-story {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-text h2 { margin-bottom: 24px; }
.about-story-text p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-story-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-values {
  background: var(--cream);
  padding: 100px 80px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.value-card {
  padding: 40px;
  background: var(--white);
  border-top: 3px solid var(--gold);
}
.value-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-pale);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}
.value-card h3 { margin-bottom: 12px; }
.value-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ============ ADMIN DASHBOARD ============ */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--charcoal);
  padding: 32px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-logo {
  padding: 0 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.admin-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.15em;
}
.admin-logo small {
  display: block;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
  letter-spacing: 0.05em;
}
.admin-nav a:hover, .admin-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-left: 2px solid var(--gold);
}
.admin-main {
  background: #F4F4F4;
  padding: 40px;
  overflow-y: auto;
}
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.admin-topbar h1 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.stat-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-change {
  font-size: 0.75rem;
  color: #27AE60;
  font-weight: 600;
}
.stat-change.down { color: #C0392B; }

.admin-table-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.admin-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--light);
}
.admin-table-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  text-align: left;
  padding: 12px 24px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  background: #FAFAFA;
  border-bottom: 1px solid var(--light);
}
td {
  padding: 14px 24px;
  font-size: 0.85rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: #FAFAFA; }

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.status-badge.pending { background: #FEF3C7; color: #92400E; }
.status-badge.processing { background: #DBEAFE; color: #1E40AF; }
.status-badge.shipped { background: #D1FAE5; color: #065F46; }
.status-badge.delivered { background: #D1FAE5; color: #065F46; }
.status-badge.cancelled { background: #FEE2E2; color: #991B1B; }

.admin-form {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--light);
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition-fast);
  background: var(--white);
  border-radius: var(--radius-sm);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ============ PAGE HERO (generic) ============ */
.page-hero {
  background: var(--cream);
  padding: 60px 80px;
  border-bottom: 1px solid var(--light);
}
.page-hero .breadcrumb {
  font-size: 0.75rem;
  color: var(--mid);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-hero .breadcrumb a { color: var(--mid); transition: color var(--transition-fast); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span { color: var(--light); }

/* ============ EMPTY STATES ============ */
.empty-state {
  text-align: center;
  padding: 80px 40px;
  color: var(--mid);
}
.empty-state svg { margin: 0 auto 20px; opacity: 0.3; }
.empty-state h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--charcoal); }
.empty-state p { font-size: 0.9rem; margin-bottom: 28px; }

/* ============ PAGINATION ============ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 48px 0;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--light);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mid);
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--white);
  font-family: var(--font-body);
}
.page-btn:hover, .page-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* ============ LOADING SKELETON ============ */
.skeleton {
  background: linear-gradient(90deg, var(--light) 25%, #EBEBEB 50%, var(--light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============ SCROLL ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cat-large { grid-column: 1 / -1; height: 360px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-left, .nav-right .nav-link { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-container { padding: 0 24px; }
  .hero-content { padding: 0 40px; }
  .hero-scroll-hint { left: 40px; }
  .categories-section, .featured-section, .editorial-section,
  .instagram-section, .newsletter-section, .promise-section,
  .testimonials-section { padding-left: 24px; padding-right: 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-inner { grid-template-columns: 1fr; gap: 40px; }
  .editorial-image { max-height: 400px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-layout { grid-template-columns: 1fr; padding: 40px 24px; }
  .cart-layout { grid-template-columns: 1fr; padding: 40px 24px; }
  .cart-header { display: none; }
  .cart-item { grid-template-columns: 1fr auto; }
  .about-story { grid-template-columns: 1fr; padding: 60px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.8rem; }
  .hero-content { padding: 0 24px; }
  .hero-ctas { flex-direction: column; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testimonials-track { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1.5px solid var(--light); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .shop-hero, .page-hero { padding: 40px 24px; }
  .admin-stats { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
}