/* =========================================
   FLORART — Premium Çiçek Markası
   Design System & Core Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --blush:      #F7E8E8;
  --rose:       #E8B4B8;
  --rose-deep:  #C9848A;
  --petal:      #F2D7D7;
  --cream:      #FAF7F2;
  --ivory:      #F5F0E8;
  --sage:       #B8C9B0;
  --sage-deep:  #8FA882;
  --sage-light: #D8E6D4;
  --white:      #FFFFFF;
  --charcoal:   #2C2C2C;
  --stone:      #6B6560;
  --mist:       #9E9892;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --shadow-soft:  0 4px 30px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 40px rgba(0,0,0,0.10);
  --shadow-rose:  0 8px 40px rgba(201,132,138,0.20);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  48px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --nav-h: 80px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Tarayıcı default footer/header/article renk sıfırlama */
header, footer, main, article, aside, section,
blockquote footer, blockquote header {
  background: transparent;
  color: inherit;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

.display-xl { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 300; letter-spacing: -0.02em; }
.display-lg { font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 300; }
.display-md { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 400; }
.display-sm { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }

.body-lg  { font-size: 1.05rem; font-weight: 300; }
.body-md  { font-size: 0.9rem; }
.label    { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 4rem);
}

.section-pad { padding: clamp(4rem, 8vw, 9rem) 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 2.2em;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--rose-deep);
  color: var(--white);
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover {
  background: #b87078;
  transform: translateY(-2px);
  box-shadow: 0 12px 50px rgba(201,132,138,0.35);
}

.btn-outline {
  border: 1.5px solid var(--rose-deep);
  color: var(--rose-deep);
  background: transparent;
}
.btn-outline:hover {
  background: var(--rose-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--charcoal);
  border: 1.5px solid rgba(44,44,44,0.2);
}
.btn-ghost:hover {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}

.btn-light {
  background: rgba(255,255,255,0.9);
  color: var(--charcoal);
  backdrop-filter: blur(12px);
}
.btn-light:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-label {
  display: inline-block;
  color: var(--rose-deep);
  margin-bottom: 0.8rem;
}
.section-divider {
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--rose-deep), transparent);
  margin: 1.2rem auto 0;
}

/* ═══════════════════════════════════════
   LEAF PARTICLE ANIMATION
═══════════════════════════════════════ */
#leaf-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}
#leaf-canvas.hidden { opacity: 0; pointer-events: none; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}
.nav-logo .logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 400;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
  position: relative;
  transition: color var(--transition-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-deep);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: var(--transition);
  position: relative;
}
.nav-icon-btn:hover {
  background: var(--blush);
  color: var(--rose-deep);
}
.nav-icon-btn svg { width: 18px; height: 18px; stroke-width: 1.5; }

.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--rose-deep);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--charcoal);
  font-weight: 300;
  transition: color var(--transition-fast);
}
.mobile-menu a:hover { color: var(--rose-deep); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem) clamp(2rem, 5vw, 5rem) clamp(3rem, 6vw, 7rem) clamp(2rem, 7vw, 8rem);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--rose-deep);
}

.hero-title {
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
  margin-bottom: 1.8rem;
}
.hero-title em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero-subtitle {
  max-width: 420px;
  color: var(--stone);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
  margin-bottom: 2.8rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  animation: fadeUp 0.9s ease 1.1s forwards;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--charcoal);
}
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 0.2rem;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.hero-img-grid div {
  overflow: hidden;
  position: relative;
}
.hero-img-grid div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-img-grid div:hover img { transform: scale(1.05); }

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247,232,232,0.3) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}
.hero-badge-icon {
  width: 40px; height: 40px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════
   TICKER / MARQUEE
═══════════════════════════════════════ */
.ticker-section {
  background: var(--rose-deep);
  padding: 0.9rem 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}
.ticker-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

/* ═══════════════════════════════════════
   CATEGORIES
═══════════════════════════════════════ */
.categories-section { background: var(--white); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.cat-card:hover .cat-card-img { transform: scale(1.08); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.65) 0%, transparent 55%);
  transition: var(--transition);
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top, rgba(44,44,44,0.75) 0%, rgba(201,132,138,0.15) 100%);
}

.cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem;
  color: var(--white);
}
.cat-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.cat-card-count {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Featured card */
.cat-card.featured {
  grid-row: span 2;
  aspect-ratio: unset;
}

/* ═══════════════════════════════════════
   CAMPAIGN BANNER
═══════════════════════════════════════ */
.campaign-section { padding: clamp(2rem, 4vw, 4rem) 0; }

.campaign-banner {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #2C2C2C 0%, #3D2E2E 50%, #2C2C2C 100%);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  position: relative;
}

.campaign-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.campaign-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}

.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rose-deep);
  color: var(--white);
  padding: 0.4em 1.1em;
  border-radius: var(--radius-xl);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.campaign-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 1rem;
}
.campaign-title em { color: var(--rose); font-style: italic; }

.campaign-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  max-width: 360px;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.countdown {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.countdown-item {
  text-align: center;
}
.countdown-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1;
  min-width: 3rem;
}
.countdown-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(255,255,255,0.3);
  align-self: flex-start;
  margin-top: 0.1rem;
  font-weight: 300;
}

.campaign-visual {
  position: relative;
  overflow: hidden;
}
.campaign-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.campaign-banner:hover .campaign-visual img { transform: scale(1.04); }

.campaign-discount-chip {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 80px; height: 80px;
  background: var(--rose-deep);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 3;
  box-shadow: var(--shadow-rose);
  animation: float 3s ease-in-out infinite;
}
.campaign-discount-chip .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.campaign-discount-chip .off {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ═══════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════ */
.products-section { background: var(--cream); }

.products-filter {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.55em 1.4em;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(0,0,0,0.1);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--stone);
  background: var(--white);
  transition: var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--rose-deep);
  color: var(--white);
  border-color: var(--rose-deep);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ivory);
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.07); }

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35em 0.9em;
  border-radius: var(--radius-xl);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.product-tag.new    { background: var(--sage); color: var(--white); }
.product-tag.sale   { background: var(--rose-deep); color: var(--white); }
.product-tag.bestseller { background: var(--charcoal); color: var(--white); }

.product-fav {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.product-fav:hover { background: var(--blush); }
.product-fav svg { width: 15px; height: 15px; stroke-width: 1.5; color: var(--stone); transition: var(--transition-fast); }
.product-fav.active svg { fill: var(--rose-deep); stroke: var(--rose-deep); }
.product-fav:hover svg { color: var(--rose-deep); }

.product-actions {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
}
.product-card:hover .product-actions { transform: translateY(0); }

.product-add-btn {
  flex: 1;
  padding: 0.7em 1em;
  border-radius: var(--radius-xl);
  background: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
  font-family: var(--font-body);
}
.product-add-btn:hover { background: var(--rose-deep); color: var(--white); }

.product-quick-view {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.product-quick-view:hover { background: var(--white); }
.product-quick-view svg { width: 16px; height: 16px; stroke-width: 1.5; }

.product-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
}

.product-category {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  font-weight: 400;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}
.stars { color: #F4C542; font-size: 0.7rem; letter-spacing: 0.05em; }
.rating-count { font-size: 0.7rem; color: var(--mist); }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 400;
}
.product-price .old-price {
  font-size: 0.9rem;
  color: var(--mist);
  text-decoration: line-through;
  margin-right: 0.5rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════
   FEATURE STRIPS
═══════════════════════════════════════ */
.features-strip {
  background: var(--ivory);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1rem;
}
.feature-icon-wrap {
  width: 50px; height: 50px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  transition: var(--transition);
}
.feature-item:hover .feature-icon-wrap {
  background: var(--rose);
  transform: scale(1.05);
}
.feature-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.feature-desc {
  font-size: 0.78rem;
  color: var(--mist);
  line-height: 1.6;
  font-weight: 300;
}

/* ═══════════════════════════════════════
   GLASS TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-section {
  background: linear-gradient(135deg, var(--blush) 0%, var(--ivory) 50%, var(--sage-light) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,180,184,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.7);
  box-shadow: var(--shadow-soft);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--rose-deep);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 400;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
}
.testimonial-role {
  font-size: 0.72rem;
  color: var(--mist);
  margin-top: 0.1rem;
}

/* ═══════════════════════════════════════
   INSTAGRAM STRIP
═══════════════════════════════════════ */
.instagram-section {
  background: var(--white);
  text-align: center;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.instagram-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,132,138,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.instagram-item:hover img { transform: scale(1.1); }
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-overlay svg { width: 24px; height: 24px; stroke: var(--white); stroke-width: 1.5; }

/* ═══════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════ */
.newsletter-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(201,132,138,0.12);
  pointer-events: none;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.newsletter-text .section-label { color: var(--rose); }
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.2;
}
.newsletter-title em { color: var(--rose); font-style: italic; }
.newsletter-desc {
  color: rgba(255,255,255,0.5);
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-weight: 300;
}
.newsletter-form {
  flex-shrink: 0;
  width: 100%;
  max-width: 420px;
}
.newsletter-input-wrap {
  display: flex;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px;
}
.newsletter-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 0.8em 1.2em;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
}
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-privacy {
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  margin-top: 0.8rem;
  text-align: center;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #1A1A1A;
  color: rgba(255,255,255,0.6);
  padding: clamp(3rem, 6vw, 6rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.83rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.social-btn svg { width: 15px; height: 15px; stroke-width: 1.5; }

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.4rem;
  font-family: var(--font-body);
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.83rem;
  font-weight: 300;
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}
.footer-contact-item svg { width: 15px; height: 15px; margin-top: 3px; flex-shrink: 0; stroke-width: 1.5; opacity: 0.6; }
.footer-contact-item span { font-size: 0.82rem; font-weight: 300; line-height: 1.6; }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.75rem; font-weight: 300; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.75rem; font-weight: 300; transition: color var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--white); }

/* ═══════════════════════════════════════
   PRODUCTS PAGE
═══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--blush) 0%, var(--ivory) 100%);
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  text-align: center;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: var(--mist);
  letter-spacing: 0.08em;
}
.breadcrumb a:hover { color: var(--rose-deep); }
.breadcrumb-sep { opacity: 0.4; }

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 0 5rem;
}

.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
}
.sidebar-section { margin-bottom: 2rem; }
.sidebar-section:last-child { margin-bottom: 0; }
.sidebar-title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.sidebar-check-list { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-check {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.sidebar-check:hover { background: var(--blush); }
.sidebar-check input { accent-color: var(--rose-deep); }
.sidebar-check label { font-size: 0.82rem; cursor: pointer; color: var(--stone); }

.price-range { padding: 0.5rem 0; }
.price-slider {
  width: 100%;
  accent-color: var(--rose-deep);
  margin-bottom: 0.5rem;
}
.price-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--stone);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.shop-count { font-size: 0.8rem; color: var(--mist); }
.shop-sort select {
  border: none;
  background: none;
  font-size: 0.8rem;
  color: var(--charcoal);
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
}

/* ═══════════════════════════════════════
   PRODUCT DETAIL PAGE
═══════════════════════════════════════ */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: calc(var(--nav-h) + 2rem) 0 5rem;
}

.product-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.product-main-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ivory);
  margin-bottom: 1rem;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }

.product-thumbnails {
  display: flex;
  gap: 0.7rem;
}
.thumb-item {
  width: 80px; height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.thumb-item.active, .thumb-item:hover { border-color: var(--rose-deep); }

.product-info { padding: 1rem 0; }
.product-detail-category {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.8rem;
}
.product-detail-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1.1;
}
.product-detail-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.product-detail-old {
  font-size: 1rem;
  color: var(--mist);
  text-decoration: line-through;
  margin-left: 0.8rem;
  font-weight: 300;
}

.product-detail-desc {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.9;
  margin: 1.5rem 0;
  font-weight: 300;
}

.product-options { margin-bottom: 1.5rem; }
.option-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.7rem;
  color: var(--charcoal);
}
.option-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.option-btn {
  padding: 0.5em 1.2em;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(0,0,0,0.12);
  font-size: 0.8rem;
  color: var(--stone);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.option-btn.active, .option-btn:hover {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}

.qty-add-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.qty-btn {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--charcoal);
  transition: background var(--transition-fast);
  font-weight: 300;
}
.qty-btn:hover { background: var(--blush); }
.qty-num {
  width: 48px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  outline: none;
  font-family: var(--font-body);
}
.add-to-cart-btn {
  flex: 1;
}

.product-meta {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.meta-row {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.meta-label { color: var(--mist); font-weight: 300; }
.meta-val { color: var(--charcoal); font-weight: 400; }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-stack {
  position: relative;
  aspect-ratio: 4/5;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 80%;
  aspect-ratio: 3/4;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--cream);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-text .section-label { text-align: left; }
.about-text h2 { text-align: left; margin-bottom: 1.5rem; }
.about-text p {
  color: var(--stone);
  font-size: 0.93rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.about-text .section-divider { margin: 0 0 1.5rem; }

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.value-desc { font-size: 0.82rem; color: var(--stone); line-height: 1.7; font-weight: 300; }

.team-section { background: var(--ivory); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card { text-align: center; }
.team-img {
  width: 140px; height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: var(--rose);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-soft);
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  padding: calc(var(--nav-h) + 2rem) 0 5rem;
}

.contact-info-card {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.contact-info-card h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  color: var(--white);
}
.contact-info-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--rose-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--white); stroke-width: 1.5; }
.contact-detail-title { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); margin-bottom: 0.3rem; }
.contact-detail-val { font-size: 0.88rem; color: var(--white); font-weight: 300; }

.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #25D366;
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.whatsapp-cta:hover { background: #128C7E; transform: translateY(-2px); }
.whatsapp-cta svg { width: 20px; height: 20px; fill: var(--white); flex-shrink: 0; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.form-control {
  width: 100%;
  padding: 0.85em 1.1em;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition-fast);
  font-weight: 300;
}
.form-control:focus { border-color: var(--rose-deep); background: var(--white); }
.form-control::placeholder { color: var(--mist); }
textarea.form-control { resize: none; height: 130px; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2rem;
  height: 200px;
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--mist);
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }

/* ═══════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse-rose {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,132,138,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(201,132,138,0); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.text-rose    { color: var(--rose-deep); }
.text-muted   { color: var(--mist); }
.text-center  { text-align: center; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-1 { gap: 0.5rem; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: calc(var(--nav-h) + 2rem) 2rem 3rem; text-align: center; }
  .hero-eyebrow, .hero-cta { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-right { height: 55vw; }
  .hero-badge { left: 1rem; bottom: 1rem; }

  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card.featured { grid-row: span 1; }

  .campaign-banner { grid-template-columns: 1fr; }
  .campaign-visual { height: 280px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .shop-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .sidebar-section { margin-bottom: 0; }

  .product-detail-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }

  .about-story { grid-template-columns: 1fr; }
  .about-img-stack { aspect-ratio: auto; height: 400px; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }

  .newsletter-inner { flex-direction: column; text-align: center; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-right { height: 60vw; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { width: 100%; max-width: 100%; }
  .campaign-banner { min-height: auto; }
  .countdown { gap: 0.8rem; }
  .hero-badge { display: none; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}