/* ===========================
   GÜLLER ÇİÇEKÇİLİK — STYLES
   =========================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-700: #be123c;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --green-500: #22c55e;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;

  --text-primary: #1a0a0e;
  --text-secondary: #6b3947;
  --text-muted: #9d6070;
  --bg-light: #fff8f8;
  --bg-section: #fdf4f6;

  --shadow-sm: 0 1px 3px rgba(180,60,90,.08);
  --shadow-md: 0 4px 16px rgba(180,60,90,.12);
  --shadow-lg: 0 8px 40px rgba(180,60,90,.18);
  --shadow-xl: 0 20px 60px rgba(180,60,90,.22);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ======= UTILITIES ======= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }

.glass {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.7);
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn i { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  color: #fff;
  box-shadow: 0 4px 20px rgba(244,63,94,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244,63,94,.45);
  background: linear-gradient(135deg, var(--rose-600), var(--rose-500));
}

.btn-ghost {
  background: rgba(255,255,255,.2);
  color: #fff;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--rose-600);
  border-color: var(--rose-300, #fda4af);
}
.btn-outline:hover {
  background: var(--rose-50);
  transform: translateY(-2px);
}

.btn-nav {
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  color: #fff;
  padding: 10px 22px;
  font-size: .875rem;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  gap: 10px;
}
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }

.btn-lg { padding: 16px 32px; font-size: 1rem; }

.wa-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ======= NAV ======= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}
.nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav.scrolled .nav-logo { color: var(--rose-600); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all var(--transition);
}
.nav-links a:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle i { width: 24px; height: 24px; }

/* ======= HERO ======= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #4a0520 0%, #831843 30%, #be185d 60%, #e11d48 100%);
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #fb7185, transparent);
  top: -200px; right: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #c084fc, transparent);
  bottom: -100px; left: -100px;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #fbbf24, transparent);
  top: 50%; left: 40%;
  transform: translate(-50%, -50%);
}

.hero > * { position: relative; z-index: 1; }

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.95);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}
.hero-badge i { width: 16px; height: 16px; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #fbbf24, #fb7185);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.3);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
}

.hero-card {
  width: 340px;
  height: 340px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.flower-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.flower-item {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  animation: floatFlower 3s ease-in-out infinite;
  cursor: default;
  transition: transform .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.flower-item:hover { transform: scale(1.15) rotate(5deg); }

.fi-1 { animation-delay: 0s; }
.fi-2 { animation-delay: .3s; }
.fi-3 { animation-delay: .6s; }
.fi-4 { animation-delay: .9s; }
.fi-5 { animation-delay: 1.2s; }
.fi-6 { animation-delay: 1.5s; }

@keyframes floatFlower {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-card-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.star-icon { width: 16px; height: 16px; color: var(--amber-400); fill: var(--amber-400); }

/* ======= SECTIONS ======= */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-section); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose-100), #fce7f3);
  color: var(--rose-600);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  position: relative;
  border: 1px solid rgba(244,63,94,.08);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.product-card--featured {
  border: 2px solid var(--rose-400);
  transform: scale(1.02);
}
.product-card--featured:hover { transform: scale(1.02) translateY(-6px); }

.featured-ribbon {
  position: absolute;
  top: 20px; right: -30px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  color: #fff;
  padding: 4px 40px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  transform: rotate(45deg);
  box-shadow: var(--shadow-md);
}

.product-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pv-buket { background: linear-gradient(135deg, #fff1f2, #fce7f3); }
.pv-aranjman { background: linear-gradient(135deg, #fdf4ff, #fce7f3); }
.pv-saksi { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }

.product-emoji {
  font-size: 5rem;
  animation: floatFlower 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.15));
}

.product-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(244,63,94,.06), transparent 70%);
}

.product-info { padding: 24px; }

.product-tag {
  display: inline-block;
  background: var(--rose-100);
  color: var(--rose-700);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.product-tag--gold { background: #fef3c7; color: #92400e; }
.product-tag--green { background: #dcfce7; color: #166534; }

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.product-desc {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-secondary);
}
.product-features i {
  width: 16px; height: 16px;
  color: var(--green-500);
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-price {
  font-size: .875rem;
  font-weight: 600;
  color: var(--rose-600);
}

/* ======= FEATURES ======= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(244,63,94,.06);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon i { width: 24px; height: 24px; }

.fi-pink { background: linear-gradient(135deg, #fce7f3, #ffe4e6); color: var(--rose-500); }
.fi-rose { background: linear-gradient(135deg, #ffe4e6, #fecdd3); color: var(--rose-600); }
.fi-purple { background: linear-gradient(135deg, #f5f3ff, #ede9fe); color: var(--purple-500); }
.fi-gold { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #b45309; }
.fi-green { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #15803d; }
.fi-blue { background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #1d4ed8; }

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ======= ABOUT ======= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-card {
  width: 380px;
  height: 380px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, rgba(253,232,234,.8), rgba(255,241,242,.9));
}

.about-flowers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.af {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatFlower 4s ease-in-out infinite;
}
.af-1 { animation-delay: 0s; }
.af-2 { animation-delay: .5s; }
.af-3 { animation-delay: 1s; }
.af-4 { animation-delay: 1.5s; }
.af-5 { animation-delay: 2s; }
.af-6 { animation-delay: 2.5s; }

.about-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--rose-700);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.about-badge i { width: 16px; height: 16px; color: var(--rose-500); }

.about-content .section-badge { margin-bottom: 12px; }
.about-content .section-title { text-align: left; margin-bottom: 16px; }
.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.ah-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9375rem;
  color: var(--text-secondary);
}
.ah-item i { width: 20px; height: 20px; color: var(--rose-500); flex-shrink: 0; }
.ah-item strong { color: var(--text-primary); }

/* ======= ORDER FORM ======= */
.order-wrapper { max-width: 780px; margin: 0 auto; }

.order-form {
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group--full { margin-bottom: 28px; }

.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.req { color: var(--rose-500); }

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap > i {
  position: absolute;
  left: 14px;
  width: 18px; height: 18px;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
}
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 2px solid #fecdd3;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--text-primary);
  background: rgba(255,255,255,.8);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--rose-400);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(244,63,94,.1);
}
.input-wrap textarea { resize: vertical; min-height: 110px; padding-top: 14px; }
.input-wrap--textarea { align-items: flex-start; }
.input-wrap--textarea > i { top: 16px; }

.form-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.order-success {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #fff1f2, #fce7f3);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.order-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--rose-700);
  margin-bottom: 12px;
}
.order-success p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ======= CONTACT ======= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info .section-badge { margin-bottom: 12px; }
.contact-info .section-title { text-align: left; margin-bottom: 12px; }
.contact-info > p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--rose-100), #fce7f3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { width: 20px; height: 20px; color: var(--rose-500); }
.contact-item strong {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 2px;
}
.contact-item span { font-size: .9375rem; color: var(--text-muted); }

.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--rose-100), #fce7f3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-500);
  text-decoration: none;
  transition: all var(--transition);
}
.social-btn:hover {
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.social-btn i { width: 20px; height: 20px; }

.map-placeholder {
  height: 360px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(253,232,234,.6), rgba(255,241,242,.8));
  box-shadow: var(--shadow-lg);
}
.map-placeholder i { width: 48px; height: 48px; color: var(--rose-400); opacity: .6; }
.map-placeholder p {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--rose-700);
}
.map-placeholder span { font-size: .9rem; color: var(--text-muted); }

/* ======= FOOTER ======= */
.footer {
  background: linear-gradient(135deg, #1a0a0e, #4a0520);
  color: rgba(255,255,255,.8);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #fff;
}
.footer-tagline { font-size: .9375rem; color: rgba(255,255,255,.6); font-style: italic; }
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.4); }

/* ======= MODAL ======= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,10,14,.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  max-width: 440px;
  width: 100%;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: slideUp .3s cubic-bezier(.4,0,.2,1);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.modal-close:hover { background: var(--rose-50); color: var(--rose-500); }
.modal-close i { width: 20px; height: 20px; }

.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.modal p { font-size: .9375rem; color: var(--text-muted); margin-bottom: 28px; }

.modal-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card--featured { transform: none; }
  .product-card--featured:hover { transform: translateY(-6px); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { order: -1; }
  .hero { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { padding-left: 0; margin-top: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .nav.mobile-open .nav-links a { color: var(--text-secondary); padding: 10px 16px; }
  .nav.mobile-open .btn-nav { display: flex; margin: 8px 24px 16px; }
  .nav-toggle { color: var(--text-primary); }

  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .order-form { padding: 32px 24px; }
  .hero-card { width: 280px; height: 280px; }
  .about-card { width: 300px; height: 300px; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .stat-divider { display: none; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { justify-content: center; }
}
