/* ============================================
   NOIR ATELIER — E-Commerce Showcase
   Mobile-first · Dark Luxury · Editorial
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
  --obsidian: #0b0b0f;
  --charcoal: #141418;
  --graphite: #1c1c22;
  --slate: #26262e;
  --ash: #3a3a44;
  --smoke: #6b6b78;
  --silver: #9e9eab;
  --pearl: #c8c8d2;
  --ivory: #e8e8ec;
  --snow: #f5f5f7;
  --white: #ffffff;

  --gold: #c9a84c;
  --gold-light: #dfc06e;
  --gold-dark: #a88a32;
  --gold-glow: rgba(201, 168, 76, .15);
  --gold-shimmer: rgba(201, 168, 76, .06);

  --danger: #e25555;
  --success: #4eca8b;

  --ff-display: 'Playfair Display', 'Georgia', serif;
  --ff-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-out-quart: cubic-bezier(.25, 1, .5, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  --header-h: 72px;
  --container: 1200px;
  --gap: 16px;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--pearl);
  background: var(--obsidian);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .5s var(--ease-out-expo), box-shadow .5s var(--ease-out-expo), height .5s var(--ease-out-expo);
}
.header.scrolled {
  background: rgba(11, 11, 15, .92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(201, 168, 76, .08);
  height: 60px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.header-logo a { display: flex; align-items: center; }
.header-logo img { height: 36px; width: auto; }
.logo-text {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
}
.logo-text span { color: var(--gold); }

/* Desktop Nav */
.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 32px; }
.nav-desktop a {
  position: relative;
  font-size: .85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--silver);
  padding: 4px 0;
  transition: color .3s;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease-out-expo);
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--gold); }
.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 16px; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--pearl);
  padding: 6px 10px;
  border: 1px solid var(--ash);
  border-radius: var(--radius-sm);
  transition: all .3s;
}
.lang-switcher-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-switcher-btn svg { width: 12px; height: 12px; transition: transform .3s; }
.lang-switcher.open .lang-switcher-btn svg { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  background: var(--graphite);
  border: 1px solid var(--ash);
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .3s var(--ease-out-expo);
  overflow: hidden;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--silver);
  transition: all .2s;
}
.lang-dropdown a:hover { background: var(--slate); color: var(--gold); }
.lang-dropdown a.active { color: var(--gold); background: var(--gold-shimmer); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--pearl);
  border-radius: 2px;
  transition: all .4s var(--ease-out-expo);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all .4s;
}
.nav-mobile-overlay.active { opacity: 1; visibility: visible; }

.nav-mobile {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--charcoal);
  border-left: 1px solid var(--ash);
  z-index: 999;
  transform: translateX(100%);
  transition: transform .5s var(--ease-out-expo);
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.nav-mobile.active { transform: translateX(0); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 0; }
.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--pearl);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: all .3s;
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold); padding-left: 8px; }
.mobile-lang {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ash);
}
.mobile-lang-title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--smoke);
  margin-bottom: 12px;
}
.mobile-lang a {
  display: inline-block;
  padding: 6px 14px;
  margin-right: 8px;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid var(--ash);
  border-radius: var(--radius-sm);
  transition: all .3s;
}
.mobile-lang a.active,
.mobile-lang a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-shimmer);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out-expo);
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s linear;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 15, .5) 0%,
    rgba(11, 11, 15, .3) 40%,
    rgba(11, 11, 15, .7) 100%
  );
}
.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-slide-content {
  max-width: 600px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s var(--ease-out-expo) .3s;
}
.hero-slide.active .hero-slide-content {
  opacity: 1;
  transform: translateY(0);
}
.hero-slide-content h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.hero-slide-content h1::first-line { color: var(--gold); }
.hero-slide-content p {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: var(--silver);
  margin-bottom: 32px;
  max-width: 480px;
}

/* Hero Placeholder (no image) */
.hero-slide-bg:empty {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--graphite) 50%, var(--charcoal) 100%);
}

/* Hero Buttons */
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, .25);
  border-radius: 3px;
  cursor: pointer;
  transition: all .4s var(--ease-out-expo);
}
.slider-dot.active {
  width: 48px;
  background: var(--gold);
}
.slider-arrows {
  position: absolute;
  bottom: 32px;
  right: var(--gap);
  z-index: 10;
  display: none;
  gap: 8px;
}
.slider-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: var(--pearl);
  transition: all .3s;
}
.slider-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-shimmer);
}
.slider-arrow svg { width: 18px; height: 18px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all .4s var(--ease-out-expo);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--obsidian);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .25);
}
.btn-outline {
  background: transparent;
  border-color: var(--pearl);
  color: var(--pearl);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-dark {
  background: var(--graphite);
  border-color: var(--ash);
  color: var(--pearl);
}
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .25);
}
.btn-whatsapp svg { width: 18px; height: 18px; }
.btn-lg { padding: 14px 36px; font-size: .9rem; }
.btn-sm { padding: 8px 18px; font-size: .78rem; }
.w-full { width: 100%; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 64px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: -.01em;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}
.section-label {
  display: block;
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
.product-card {
  background: var(--charcoal);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .04);
  transition: all .5s var(--ease-out-expo);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, .15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4), 0 0 0 1px rgba(201, 168, 76, .08);
}
.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--graphite);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out-expo);
}
.product-card:hover .product-card-image img { transform: scale(1.08); }

/* Product placeholder gradient */
.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--graphite) 0%, var(--slate) 50%, var(--graphite) 100%);
  position: relative;
}
.product-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, var(--gold-shimmer) 0%, transparent 70%);
}
.product-image-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--ash);
}

/* Category badge */
.category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 12px;
  background: rgba(11, 11, 15, .75);
  backdrop-filter: blur(8px);
  color: var(--gold);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 168, 76, .2);
  z-index: 2;
}

/* Product overlay */
.product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 11, 15, .6);
  opacity: 0;
  transition: opacity .4s;
}
.product-card:hover .product-overlay { opacity: 1; }

/* Product body */
.product-card-body {
  padding: 16px;
}
.product-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 6px;
  transition: color .3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card:hover .product-card-body h3 { color: var(--gold); }
.product-price {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-short-desc {
  font-size: .82rem;
  color: var(--smoke);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.category-card {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  background: var(--graphite);
}
.category-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out-expo);
}
.category-card:hover .category-card-bg { transform: scale(1.08); }
.category-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--graphite), var(--slate));
}
.category-card-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, var(--gold-shimmer) 0%, transparent 70%);
}
.category-card-placeholder svg {
  width: 36px;
  height: 36px;
  color: var(--ash);
  position: relative;
  z-index: 1;
}
.category-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(11, 11, 15, .55);
  transition: background .4s;
  text-align: center;
  padding: 16px;
}
.category-card:hover .category-card-overlay { background: rgba(11, 11, 15, .7); }
.category-card-overlay h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  transition: color .3s;
}
.category-card:hover .category-card-overlay h3 { color: var(--gold); }
.category-card-overlay .count {
  font-size: .75rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Categories Page Grid */
.categories-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.category-page-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  background: var(--graphite);
}
.category-page-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out-expo);
}
.category-page-card:hover .category-page-card-bg { transform: scale(1.08); }
.category-page-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--graphite), var(--slate));
}
.category-page-card-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--ash);
}
.category-page-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(11, 11, 15, .55);
  transition: background .4s;
  padding: 16px;
  text-align: center;
}
.category-page-card:hover .category-page-card-overlay { background: rgba(11, 11, 15, .7); }
.category-page-card-overlay h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  transition: color .3s;
}
.category-page-card:hover .category-page-card-overlay h3 { color: var(--gold); }
.category-page-card-overlay .count {
  font-size: .8rem;
  color: var(--silver);
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: 120px 0 40px;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-shimmer) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 8px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--smoke);
}
.breadcrumb a { color: var(--silver); transition: color .3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .separator { color: var(--ash); }
.breadcrumb .current { color: var(--gold); }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-page { padding: 48px 0 64px; }

/* Filter Tags */
.products-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}
.filter-tag {
  padding: 8px 18px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--silver);
  border: 1px solid var(--ash);
  border-radius: var(--radius-sm);
  transition: all .3s;
}
.filter-tag:hover,
.filter-tag.active {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-shimmer);
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail { padding: 48px 0 64px; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.product-detail-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--graphite);
  position: relative;
}
.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-image .product-image-placeholder {
  border-radius: var(--radius);
}
.product-detail-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  padding: 6px 14px;
  background: var(--gold-shimmer);
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.product-detail-info h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 16px;
}
.product-detail-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  font-family: var(--ff-body);
}
.product-detail-description {
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 32px;
}
.product-detail-description p { margin-bottom: 12px; }
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.mt-3 { margin-top: 16px; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.about-preview-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.about-preview-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, .1);
  pointer-events: none;
}
.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-preview-content h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
.about-preview-content p {
  color: var(--silver);
  margin-bottom: 24px;
  line-height: 1.8;
}

/* About Page */
.about-page { padding: 48px 0 64px; }
.about-content {
  max-width: 800px;
  margin: 0 auto;
}
.about-content-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16/9;
}
.about-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content-text {
  color: var(--silver);
  line-height: 1.8;
}
.about-content-text p { margin-bottom: 16px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 64px 0;
  text-align: center;
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, var(--gold-shimmer) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 12px;
  position: relative;
}
.cta-section p {
  color: var(--silver);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page { padding: 48px 0 64px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  transition: border-color .3s;
}
.contact-info-card:hover { border-color: rgba(201, 168, 76, .15); }
.contact-info-card .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-shimmer);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.contact-info-card .icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-info-card h4 {
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--smoke);
  margin-bottom: 2px;
}
.contact-info-card p,
.contact-info-card a {
  font-size: .9rem;
  color: var(--pearl);
}
.contact-info-card a:hover { color: var(--gold); }

/* Contact Map */
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, .04);
}
.contact-map iframe { width: 100%; height: 100%; filter: grayscale(.8) invert(.92) contrast(1.1); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  padding: 28px 20px;
}
.contact-form-wrapper h2 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--silver);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--graphite);
  border: 1px solid var(--ash);
  border-radius: var(--radius-sm);
  color: var(--pearl);
  font-size: .9rem;
  transition: all .3s;
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-shimmer);
}
.form-control::placeholder { color: var(--smoke); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-error {
  font-size: .78rem;
  color: var(--danger);
  margin-top: 4px;
  min-height: 18px;
}

/* Alert */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  margin-bottom: 16px;
}
.alert-success {
  background: rgba(78, 202, 139, .1);
  border: 1px solid rgba(78, 202, 139, .2);
  color: var(--success);
}
.alert-error {
  background: rgba(226, 85, 85, .1);
  border: 1px solid rgba(226, 85, 85, .2);
  color: var(--danger);
}
.hidden { display: none !important; }

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, .04);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 32px; }
.footer-col p {
  font-size: .88rem;
  color: var(--smoke);
  line-height: 1.7;
}
.footer-col h3 {
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--pearl);
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ash);
  border-radius: 50%;
  color: var(--silver);
  font-size: .9rem;
  transition: all .3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-shimmer);
}
.footer-social a img { width: 16px; height: 16px; filter: brightness(0) invert(.7); transition: filter .3s; }
.footer-social a:hover img { filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(10deg); }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: .88rem;
  color: var(--smoke);
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 4px;
  height: 1px;
  background: var(--ash);
  transition: all .3s;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a:hover::before { width: 8px; background: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .88rem;
  color: var(--smoke);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .04);
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: var(--smoke);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  transition: all .3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .3);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
  text-align: center;
  padding: 64px 16px;
  color: var(--smoke);
}
.empty-state svg { width: 48px; height: 48px; margin: 0 auto 16px; color: var(--ash); }
.empty-state h3 { font-size: 1.1rem; color: var(--silver); margin-bottom: 4px; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
.pagination-wrapper nav { display: flex; }
.pagination-wrapper nav > div:first-child { display: none; }
.pagination-wrapper nav > div:last-child { display: flex; }
.pagination-wrapper nav > div:last-child > div:first-child { display: none; }
.pagination-wrapper nav > div:last-child > div:last-child {
  display: flex;
  gap: 6px;
}
.pagination-wrapper nav a,
.pagination-wrapper nav span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--ash);
  border-radius: var(--radius-sm);
  color: var(--silver);
  transition: all .3s;
}
.pagination-wrapper nav a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.pagination-wrapper nav span[aria-current="page"] span {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--obsidian);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.products-grid .reveal:nth-child(1) { transition-delay: 0s; }
.products-grid .reveal:nth-child(2) { transition-delay: .08s; }
.products-grid .reveal:nth-child(3) { transition-delay: .16s; }
.products-grid .reveal:nth-child(4) { transition-delay: .24s; }

/* ============================================
   TEXT HELPERS
   ============================================ */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }

/* section-light is used on dark bg to add subtle contrast */
.section-light {
  background: var(--charcoal);
}

/* ============================================
   MEDIA QUERIES — Mobile First
   ============================================ */

/* >= 480px — Large phones */
@media (min-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-cards { grid-template-columns: repeat(2, 1fr); }
}

/* >= 768px — Tablets */
@media (min-width: 768px) {
  :root { --gap: 20px; --header-h: 80px; }
  body { font-size: 16px; }

  .section { padding: 80px 0; }

  .hero-slider { max-height: 700px; }

  .slider-arrows { display: flex; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-page-grid { grid-template-columns: repeat(3, 1fr); }

  .product-detail-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .product-detail-image { aspect-ratio: 1; }

  .about-preview { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrapper { padding: 32px; }

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

  .cta-section { padding: 80px 0; }

  .page-header { padding: 140px 0 48px; }
}

/* >= 992px — Desktops */
@media (min-width: 992px) {
  :root { --gap: 24px; }

  .hamburger { display: none; }
  .nav-desktop { display: block; }

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

  .hero-slider { max-height: 800px; }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

/* >= 1200px — Large desktops */
@media (min-width: 1200px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }

  .hero-slide-content { max-width: 650px; }
  .hero-slide-content h1 { font-size: 3.5rem; }

  .section { padding: 100px 0; }

  .product-detail-grid { gap: 60px; }
}
