/* ═══════════════════════════════════════════
   COASTAL EDITORIAL — CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════ */
:root {
  --navy: #0c1829;
  --navy-mid: #152238;
  --navy-light: #1e3352;
  --ocean: #1a5276;
  --teal: #1a8a7a;
  --teal-light: #22b8a0;
  --brass: #b8945a;
  --brass-light: #d4af6e;
  --brass-glow: rgba(184, 148, 90, 0.15);
  --sand: #f8f5f0;
  --sand-dark: #ede8e0;
  --cream: #faf9f7;
  --white: #ffffff;
  --text-light: #f0ece4;
  --text-light-dim: rgba(240, 236, 228, 0.6);
  --text-dark: #1a1a1a;
  --text-dark-mid: #4a4a4a;
  --text-dark-dim: #7a7a7a;
  --glass-dark: rgba(12, 24, 41, 0.6);
  --glass-dark-strong: rgba(12, 24, 41, 0.85);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --nav-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════ RESET ═══════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* Skip navigation (accessibility) */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-nav:focus {
  top: 12px;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ═══════ SCROLL REVEAL ═══════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"] { transform: translateX(-60px); }
[data-reveal="left"].is-visible { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal="right"].is-visible { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal="scale"].is-visible { transform: scale(1); }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ═══════════════════════════
   NAVIGATION
   ═══════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all 0.5s var(--ease);
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 41, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: all 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled::before {
  background: rgba(12, 24, 41, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 46px;
  width: auto;
  border-radius: 10px;
  background: var(--white);
  padding: 5px 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.logo:hover .logo-img {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

/* Nav links — centered */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 18px;
  border-radius: 50px;
  transition: color 0.3s, background 0.3s;
}
.nav-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Phone — right side */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brass-light);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid rgba(212,175,110,0.25);
  background: rgba(184,148,90,0.08);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.nav-phone:hover {
  background: rgba(184,148,90,0.15);
  border-color: rgba(212,175,110,0.4);
  transform: translateY(-1px);
}
.nav-phone svg {
  width: 15px; height: 15px;
  stroke: var(--brass-light);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 0;
  z-index: 1002;
  transition: background 0.3s;
}
.hamburger:active { background: rgba(255,255,255,0.15); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.hamburger.open { background: rgba(255,255,255,0.12); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--brass-light); }

/* ═══════════════════════════
   HERO — CINEMATIC FULL SCREEN
   ═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Cinematic overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(12,24,41,0.7) 0%,
      rgba(12,24,41,0.45) 35%,
      rgba(12,24,41,0.5) 60%,
      rgba(12,24,41,0.95) 100%
    );
}
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(184,148,90,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(26,90,118,0.12) 0%, transparent 100%);
}

/* Vignette */
.hero-vignette {
  position: absolute;
  inset: 0; z-index: 2;
  box-shadow: inset 0 0 200px rgba(0,0,0,0.3);
  pointer-events: none;
}

/* Grain texture */
.hero-grain {
  position: absolute;
  inset: 0; z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(60px, 10vw, 100px);
  max-width: 700px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 20px;
}
.hero-label-line {
  width: 40px;
  height: 1px;
  background: var(--brass-light);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 0 80px rgba(12,24,41,0.6);
}
.hero-content::before {
  content: '';
  position: absolute;
  top: -40px; left: -60px; right: -60px; bottom: -40px;
  background: radial-gradient(ellipse at center, rgba(12,24,41,0.55) 0%, transparent 70%);
  border-radius: 40px;
  z-index: -1;
  pointer-events: none;
}
.hero h1 strong {
  font-weight: 700;
  font-style: italic;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(240, 236, 228, 0.85);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 36px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.4);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 60px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s var(--ease);
}
.btn svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s var(--ease);
}
.btn:hover svg { transform: translateX(3px); }

.btn-gold {
  background: linear-gradient(135deg, var(--brass), var(--brass-light));
  color: var(--navy);
}
.btn-gold:hover {
  box-shadow: 0 8px 32px rgba(184,148,90,0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ═══════════════════════════
   TRUST STRIP
   ═══════════════════════════ */
.trust-strip {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
  position: relative;
  z-index: 5;
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}
.trust-item-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(184,148,90,0.1);
  border: 1px solid rgba(184,148,90,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item-icon svg {
  width: 20px; height: 20px;
  stroke: var(--brass-light);
  fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.trust-item-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1px;
}
.trust-item p {
  font-size: 0.76rem;
  color: var(--text-light-dim);
}

/* ═══════════════════════════
   FEATURED PRODUCTS — BENTO GRID
   ═══════════════════════════ */
.featured {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
  position: relative;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(36px, 5vw, 56px);
  gap: 24px;
  flex-wrap: wrap;
}
.section-head-left {}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}
.section-tag-line { width: 28px; height: 1.5px; background: var(--brass); border-radius: 1px; }

.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
}
.section-head h2 em {
  font-style: italic;
  color: var(--ocean);
}

.section-head-right p {
  font-size: 0.95rem;
  color: var(--text-dark-dim);
  max-width: 320px;
  line-height: 1.7;
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.bento-card:hover img { transform: scale(1.06); }

.bento-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(12,24,41,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 32px);
  transition: background 0.4s;
}
.bento-card:hover .bento-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(12,24,41,0.9) 100%);
}

.bento-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.bento-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.bento-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  line-height: 1.5;
}
.bento-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brass-light);
  transition: gap 0.3s var(--ease);
}
.bento-card:hover .bento-card-link { gap: 10px; }
.bento-card-link svg {
  width: 14px; height: 14px;
  stroke: var(--brass-light);
  fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Grid spans */
.bento-card-1 { grid-column: span 7; grid-row: span 2; }
.bento-card-2 { grid-column: span 5; grid-row: span 1; }
.bento-card-3 { grid-column: span 5; grid-row: span 1; }
.bento-card-4 { grid-column: span 4; grid-row: span 2; }
.bento-card-5 { grid-column: span 4; grid-row: span 1; }
.bento-card-6 { grid-column: span 4; grid-row: span 1; }
.bento-card-7 { grid-column: span 4; grid-row: span 1; }

/* ═══════════════════════════
   PRODUCT SLIDER
   ═══════════════════════════ */
.product-row {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--sand);
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.slider-track-container {
  overflow: hidden;
  border-radius: var(--radius);
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.product-slide {
  flex: 0 0 calc((100% - 60px) / 4);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid rgba(0,0,0,0.04);
}
.product-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.product-slide-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sand);
}
.product-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-slide:hover .product-slide-img img { transform: scale(1.06); }

.product-slide-body {
  padding: 20px;
}
.product-slide-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
}
.product-slide-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.product-slide-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ocean);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
}
.product-slide:hover .product-slide-link { gap: 10px; }
.product-slide-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Slider navigation arrows */
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.slider-arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(12,24,41,0.2);
}
.slider-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}
.slider-arrow:hover svg { stroke: var(--white); }
.slider-arrow:active { transform: scale(0.95); }

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand-dark);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  padding: 0;
}
.slider-dot.active {
  background: var(--navy);
  width: 32px;
  border-radius: 5px;
}

/* ═══════════════════════════
   ABOUT — SPLIT LAYOUT
   ═══════════════════════════ */
.about {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}
.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-floating-card {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(0,0,0,0.04);
}
.about-floating-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-floating-number span { color: var(--brass); }
.about-floating-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark-mid);
  line-height: 1.3;
}

.about-copy .section-tag { margin-bottom: 12px; }
.about-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-copy h2 em { font-style: italic; color: var(--ocean); }
.about-copy .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ocean);
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-copy p {
  font-size: 0.95rem;
  color: var(--text-dark-dim);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.about-stat {
  text-align: center;
  padding: 20px 8px;
  border-radius: var(--radius-sm);
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  transition: transform 0.3s var(--ease);
}
.about-stat:hover { transform: translateY(-4px); }
.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-stat-num span { color: var(--brass); font-size: 1.2rem; }
.about-stat-label {
  font-size: 0.76rem;
  color: var(--text-dark-dim);
  font-weight: 500;
  margin-top: 2px;
}

/* ═══════════════════════════
   MARKETPLACE
   ═══════════════════════════ */
.marketplace {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.marketplace::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,148,90,0.06), transparent 70%);
  pointer-events: none;
}
.marketplace-head { text-align: center; margin-bottom: clamp(40px, 5vw, 56px); }
.marketplace-head .section-tag { color: var(--brass-light); }
.marketplace-head .section-tag-line { background: var(--brass-light); }
.marketplace-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
}
.marketplace-head p {
  color: var(--text-light-dim);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 12px auto 0;
}

.marketplace-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.mp-logo-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px 16px 20px;
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease);
  text-decoration: none;
  color: var(--white);
  position: relative;
}
.mp-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.mp-logo-card:hover .mp-logo-arrow {
  opacity: 1;
  transform: translate(0, 0);
}
.mp-logo-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 10px;
  transition: transform 0.3s var(--ease);
}
.mp-logo-icon svg { width: 100%; height: 100%; }
.mp-logo-card:hover .mp-logo-icon { transform: scale(1.08); }
.mp-logo-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.mp-logo-arrow {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}

/* Brand colors */
.mp-trendyol .mp-logo-icon { background: linear-gradient(135deg, #f27a1a, #ff8c00); }
.mp-trendyol:hover { background: rgba(242, 122, 26, 0.12); border-color: rgba(242, 122, 26, 0.3); }
.mp-hepsi .mp-logo-icon { background: linear-gradient(135deg, #ff6000, #e24d00); }
.mp-hepsi:hover { background: rgba(255, 96, 0, 0.12); border-color: rgba(255, 96, 0, 0.3); }
.mp-n11 .mp-logo-icon { background: linear-gradient(135deg, #7b3fa0, #9b59b6); }
.mp-n11:hover { background: rgba(123, 63, 160, 0.12); border-color: rgba(123, 63, 160, 0.3); }
.mp-pttavm .mp-logo-icon { background: linear-gradient(135deg, #ffc107, #e6a800); }
.mp-pttavm:hover { background: rgba(255, 193, 7, 0.12); border-color: rgba(255, 193, 7, 0.3); }
.mp-pazarama .mp-logo-icon { background: linear-gradient(135deg, #6d28d9, #7c3aed); }
.mp-pazarama:hover { background: rgba(109, 40, 217, 0.12); border-color: rgba(109, 40, 217, 0.3); }
.mp-amazon .mp-logo-icon { background: linear-gradient(135deg, #ff9900, #e68a00); }
.mp-amazon:hover { background: rgba(255, 153, 0, 0.12); border-color: rgba(255, 153, 0, 0.3); }
.mp-ciceksepeti .mp-logo-icon { background: linear-gradient(135deg, #e91e63, #c2185b); }
.mp-ciceksepeti:hover { background: rgba(233, 30, 99, 0.12); border-color: rgba(233, 30, 99, 0.3); }
}

/* ═══════════════════════════
   CONTACT
   ═══════════════════════════ */
.contact {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--sand);
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 80px);
  padding: clamp(40px, 5vw, 64px) 0;
}

.contact-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 12px;
}
.contact-left h2 em { font-style: italic; color: var(--ocean); }
.contact-left > p {
  font-size: 0.95rem;
  color: var(--text-dark-dim);
  line-height: 1.8;
  margin-bottom: 36px;
}

.c-item {
  display: flex; gap: 16px;
  margin-bottom: 28px;
}
.c-item-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.c-item-icon svg {
  width: 20px; height: 20px;
  stroke: var(--brass-light);
  fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.c-item-text h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.c-item-text p, .c-item-text a {
  font-size: 0.88rem;
  color: var(--text-dark-dim);
  line-height: 1.6;
}
.c-item-text a:hover { color: var(--ocean); }

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--sand);
  outline: none;
  transition: all 0.3s;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--text-dark-dim);
  opacity: 0.5;
}
.field input:focus, .field textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(26,82,118,0.08);
  background: var(--white);
}
.field textarea { min-height: 120px; resize: vertical; }

.form-send {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s var(--ease);
  letter-spacing: 0.3px;
}
.form-send:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(12,24,41,0.2);
}
.form-send svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */
.footer {
  background: var(--navy);
  color: var(--text-light-dim);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 10% 100%, rgba(26,82,118,0.08), transparent),
    radial-gradient(ellipse 30% 50% at 90% 0%, rgba(184,148,90,0.05), transparent);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.footer-brand-text {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 300px;
  margin-top: 16px;
}
.footer-socials {
  display: flex; gap: 10px; margin-top: 20px;
}
.f-social {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.f-social:hover {
  background: rgba(184,148,90,0.12);
  border-color: rgba(184,148,90,0.25);
  transform: translateY(-2px);
}
.f-social svg {
  width: 17px; height: 17px;
  fill: var(--text-light-dim);
  transition: fill 0.3s;
}
.f-social:hover svg { fill: var(--brass-light); }

.footer-col h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 5px 0;
  color: var(--text-light-dim);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col a:hover { color: var(--brass-light); padding-left: 6px; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  position: relative;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: var(--text-light-dim);
  font-size: 0.78rem;
  transition: color 0.3s;
}
.footer-bottom-links a:hover {
  color: var(--brass-light);
}

/* ═══════════════════════════
   BREADCRUMB
   ═══════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dark-dim);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--ocean);
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--brass); }
.breadcrumb .separator {
  color: var(--text-dark-dim);
  opacity: 0.4;
}
.breadcrumb .current {
  color: var(--text-dark);
  font-weight: 500;
}

/* ═══════════════════════════
   PAGE HEADER (category, about, contact pages)
   ═══════════════════════════ */
.page-header {
  background: var(--navy);
  padding: calc(var(--nav-h) + 40px) 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(184,148,90,0.08), transparent),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(26,82,118,0.1), transparent);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1,
.page-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-header p {
  color: var(--text-light-dim);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.7;
}
.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(184,148,90,0.12);
  border: 1px solid rgba(184,148,90,0.2);
  color: var(--brass-light);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ═══════════════════════════
   CATEGORY PAGE — PRODUCT GRID
   ═══════════════════════════ */
.category-products {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--cream);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sand);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body {
  padding: 24px;
}
.product-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-body p {
  font-size: 0.88rem;
  color: var(--text-dark-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ocean);
  transition: gap 0.3s var(--ease);
}
.product-card:hover .product-card-link { gap: 10px; }
.product-card-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ═══════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════ */
.product-detail {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--cream);
}
.product-detail-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  overflow: hidden;
}
.product-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  max-width: 480px;
}
.product-gallery-main {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  margin-bottom: 10px;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}
/* Gallery Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: all 0.25s var(--ease);
  opacity: 0;
}
.product-gallery-main:hover .gallery-arrow {
  opacity: 1;
}
.gallery-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(-50%) scale(1.08);
}
.gallery-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-dark);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gallery-arrow-prev { left: 12px; }
.gallery-arrow-next { right: 12px; }

/* Gallery Counter */
.gallery-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  z-index: 3;
  letter-spacing: 0.5px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.25s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}
.lightbox-close svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.25s, transform 0.25s;
}
.lightbox-arrow:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.08);
}
.lightbox-arrow svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lightbox-arrow-prev { left: 20px; }
.lightbox-arrow-next { right: 20px; }
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 60px rgba(0,0,0,0.5);
  transition: transform 0.35s var(--ease);
}
.lightbox.active .lightbox-img-wrap img {
  animation: lightboxZoomIn 0.35s var(--ease);
}
@keyframes lightboxZoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.product-gallery-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  flex-shrink: 0;
}
.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--ocean);
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info .section-tag { margin-bottom: 8px; }
.product-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ocean);
  padding: 8px 18px 8px 14px;
  border-radius: 50px;
  background: rgba(26, 82, 118, 0.06);
  border: 1px solid rgba(26, 82, 118, 0.12);
  margin-bottom: 16px;
  transition: all 0.3s var(--ease);
}
.product-category-tag:hover {
  background: rgba(26, 82, 118, 0.12);
  border-color: rgba(26, 82, 118, 0.25);
  gap: 8px;
  color: var(--navy);
}
.product-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.product-info .description {
  font-size: 0.95rem;
  color: var(--text-dark-dim);
  line-height: 1.8;
  margin-bottom: 24px;
}
.product-info .description p { margin-bottom: 12px; }

.specs-table {
  width: 100%;
  margin-bottom: 32px;
  border-collapse: collapse;
  table-layout: fixed;
}
.specs-table tr {
  border-bottom: 1px solid var(--sand-dark);
}
.specs-table td {
  padding: 12px 0;
  font-size: 0.9rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
.specs-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 40%;
}
.specs-table td:last-child {
  color: var(--text-dark-dim);
}

.product-info {
  min-width: 0;
  overflow: hidden;
  max-width: 100%;
}
.product-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 100%;
}
.product-cta .btn,
.product-cta .btn-whatsapp {
  box-sizing: border-box;
  max-width: 100%;
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease);
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-whatsapp svg {
  width: 20px; height: 20px;
  fill: currentColor;
}

.related-products {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--sand);
}

/* ═══════════════════════════
   ABOUT PAGE (full)
   ═══════════════════════════ */
.about-full {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
}
.about-full-content {
  max-width: 800px;
  margin: 0 auto;
}
.about-full-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.about-full-content p {
  font-size: 0.95rem;
  color: var(--text-dark-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ═══════════════════════════
   CONTACT PAGE
   ═══════════════════════════ */
.contact-page-map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}
.contact-page-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Flash messages */
.flash-message {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.flash-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.flash-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ═══════════════════════════
   404 PAGE
   ═══════════════════════════ */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 20px 60px;
}
.page-404 h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}
.page-404 p {
  font-size: 1.1rem;
  color: var(--text-dark-dim);
  margin-bottom: 24px;
}
.page-404-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-404-links .btn {
  font-size: 0.9rem;
  padding: 12px 24px;
}
.page-404-links .btn svg {
  width: 18px;
  height: 18px;
}
.page-404 a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ocean);
  font-weight: 600;
  transition: color 0.3s;
}
.page-404 a:hover { color: var(--brass); }

/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */
@media (max-width: 1024px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
  }
  .bento-card-1 { grid-column: span 6; grid-row: span 1; min-height: 320px; }
  .bento-card-2 { grid-column: span 3; grid-row: span 1; min-height: 260px; }
  .bento-card-3 { grid-column: span 3; grid-row: span 1; min-height: 260px; }
  .bento-card-4 { grid-column: span 3; grid-row: span 1; min-height: 260px; }
  .bento-card-5 { grid-column: span 3; grid-row: span 1; min-height: 260px; }
  .bento-card-6 { grid-column: span 3; grid-row: span 1; min-height: 260px; }
  .bento-card-7 { grid-column: span 3; grid-row: span 1; min-height: 260px; }

  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-floating-card { right: 16px; }

  .product-detail-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; max-width: 100%; }
  .product-gallery-main { height: 360px; }
  .gallery-arrow { opacity: 1; width: 38px; height: 38px; }
  .gallery-arrow svg { width: 18px; height: 18px; }
  .lightbox-arrow { width: 44px; height: 44px; }
  .lightbox-arrow svg { width: 20px; height: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 768px) {
  .nav .container { display: flex; justify-content: space-between; }
  .nav-menu, .nav-phone { display: none; }
  .hamburger { display: flex; }

  .trust-strip .container {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .bento {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .bento-card-1 { grid-column: span 2; min-height: 280px; }
  .bento-card-2,
  .bento-card-3,
  .bento-card-4,
  .bento-card-5,
  .bento-card-6,
  .bento-card-7 {
    grid-column: span 1; grid-row: span 1; min-height: 220px;
  }

  .product-slide { flex: 0 0 calc((100% - 40px) / 3); }
  .slider-arrow { width: 44px; height: 44px; }

  .marketplace-logos { gap: 10px; }
  .mp-logo-card { padding: 12px 20px 12px 14px; gap: 10px; }
  .mp-logo-icon { width: 36px; height: 36px; padding: 8px; }
  .mp-logo-label { font-size: 0.85rem; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }

  .section-head { flex-direction: column; align-items: flex-start; }

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

  .product-grid { grid-template-columns: 1fr 1fr; }

  .product-gallery-main { height: 300px; }
  .product-gallery-thumbs { gap: 6px; }
  .product-gallery-thumb { width: 56px; height: 56px; }

  .product-cta { flex-direction: column; }
  .product-cta .btn,
  .product-cta .btn-whatsapp {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .product-cta .btn-whatsapp { padding: 13px 24px; }
  .product-cta .btn { padding: 13px 24px; }
  .specs-table { font-size: 0.85rem; }
  .specs-table td { padding: 10px 0; padding-right: 8px; }
}

@media (max-width: 480px) {
  .trust-strip .container { grid-template-columns: 1fr; gap: 8px; }
  .trust-item {
    padding: 10px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
  }

  .bento { grid-template-columns: 1fr; }
  .bento-card-1,
  .bento-card-2,
  .bento-card-3,
  .bento-card-4,
  .bento-card-5,
  .bento-card-6,
  .bento-card-7 {
    grid-column: span 1; min-height: 240px;
  }

  .product-slide { flex: 0 0 calc(100% - 20px); }
  .slider-arrow { width: 40px; height: 40px; }
  .slider-arrow svg { width: 16px; height: 16px; }

  .about-stats { grid-template-columns: 1fr; }
  .about-floating-card { position: relative; bottom: auto; right: auto; margin-top: 16px; }

  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }

  .product-cta .btn-whatsapp { padding: 12px 20px; font-size: 0.84rem; }
  .product-cta .btn { padding: 12px 20px; font-size: 0.84rem; }
  .specs-table td { font-size: 0.82rem; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .product-grid { grid-template-columns: 1fr; }

  .product-gallery-main { height: 260px; }
  .product-gallery-thumbs { gap: 4px; }
  .product-gallery-thumb { width: 48px; height: 48px; }
  .gallery-arrow { width: 34px; height: 34px; }
  .gallery-arrow svg { width: 16px; height: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; }
  @keyframes scrollPulse { 0%, 100% { opacity: 1; } }
}
