/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Raleway:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Core palette */
  --pink-light: #fce4ec;
  --pink: #f8bbd0;
  --pink-medium: #f48fb1;
  --pink-dark: #d81b60;
  --lavender-light: #f3e5f5;
  --lavender: #ce93d8;
  --lavender-medium: #ba68c8;
  --lavender-dark: #8e24aa;

  /* Premium accents */
  --gold: #c9a96e;
  --gold-light: #e8d5b7;
  --gold-pale: #f5ede0;
  --champagne: #faf6f0;
  --rose-dust: #e8c4c8;

  /* Text */
  --text-dark: #2c1810;
  --text-medium: #5d4037;
  --text-light: #8d6e63;
  --text-muted: #b8a09a;

  /* Backgrounds */
  --white: #ffffff;
  --off-white: #fefafc;
  --cream: #fdfbf9;

  /* Gradients */
  --gradient-main: linear-gradient(135deg, var(--pink-light) 0%, var(--lavender-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--pink-medium) 0%, var(--lavender-medium) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  --gradient-hero: linear-gradient(160deg, #fce4ec 0%, #f3e5f5 40%, #f5ede0 100%);
  --gradient-dark: linear-gradient(135deg, var(--text-dark) 0%, #4a2c2a 100%);

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(156, 39, 176, 0.08);
  --shadow-medium: 0 8px 40px rgba(156, 39, 176, 0.12);
  --shadow-strong: 0 16px 60px rgba(156, 39, 176, 0.18);
  --shadow-gold: 0 4px 24px rgba(201, 169, 110, 0.2);
  --shadow-elevated: 0 20px 80px rgba(0, 0, 0, 0.1);

  /* Geometry */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Typography */
  --font-heading: 'Tenor Sans', 'Georgia', serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: var(--pink);
  color: var(--white);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--champagne);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ===== PREMIUM ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(1deg); }
  66% { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes revealClip {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes rosePetalFall {
  0% {
    transform: translateY(-10vh) rotate(0deg) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(105vh) rotate(720deg) translateX(80px) scale(0.6);
    opacity: 0;
  }
}

@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 110, 0.2); }
  50% { box-shadow: 0 0 40px rgba(201, 169, 110, 0.4); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal .delay-1 { transition-delay: 0.1s; }
.reveal .delay-2 { transition-delay: 0.2s; }
.reveal .delay-3 { transition-delay: 0.3s; }
.reveal .delay-4 { transition-delay: 0.4s; }
.reveal .delay-5 { transition-delay: 0.5s; }

/* ===== ROSE PETALS DECORATION ===== */
.petals-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -30px;
  width: 16px;
  height: 16px;
  opacity: 0;
  animation: rosePetalFall linear infinite;
}

.petal-inner {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 30%, var(--pink) 0%, var(--rose-dust) 60%, transparent 80%);
  border-radius: 80% 0 50% 50%;
  transform: rotate(-30deg);
  box-shadow: inset -2px -2px 4px rgba(0,0,0,0.05);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(232, 196, 200, 0.2);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(201, 169, 110, 0.25);
}

.logo-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 110, 0.3);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  position: relative;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-medium);
  border-radius: 100px;
  transition: var(--transition);
}

.nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--gradient-accent);
  opacity: 0;
  transform: scale(0.85);
  transition: var(--transition);
  z-index: -1;
}

.nav a:hover {
  color: var(--pink-dark);
}

.nav a.active {
  color: var(--white);
}

.nav a.active::before {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 4px 20px rgba(244, 143, 177, 0.35);
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MAIN CONTENT ===== */
.main-content {
  padding-top: 80px;
  min-height: 100vh;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 80px 32px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(248, 187, 208, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -35%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(206, 147, 216, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-accent {
  position: absolute;
  top: 15%;
  left: 8%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-accent-2 {
  position: absolute;
  bottom: 20%;
  right: 12%;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 32px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 2px 20px rgba(201, 169, 110, 0.08);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--lavender-dark) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-medium);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.8s, height 0.8s;
}

.btn:hover::after {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(244, 143, 177, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(244, 143, 177, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-dark);
  border: 1.5px solid rgba(201, 169, 110, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.2);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--text-dark);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(201, 169, 110, 0.4);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 32px;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--gradient-main);
}

.section-light {
  background: var(--champagne);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}

.section-header p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 1px;
  margin: 20px auto 0;
}

/* ===== SHOP PHOTOS SECTION ===== */
.shop-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.shop-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  aspect-ratio: 16/11;
}

.shop-photo-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-elevated);
}

.shop-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shop-photo-card:hover img {
  transform: scale(1.08);
}

.shop-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(44, 24, 16, 0.5));
  pointer-events: none;
}

.shop-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 1;
}

.shop-photo-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.shop-photo-overlay p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ===== ADVANTAGES CAROUSEL ===== */
.carousel-section {
  overflow: hidden;
}

.carousel-container {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding: 0 60px;
  box-sizing: border-box;
}

.carousel-slide-inner {
  width: 100%;
  max-width: 560px;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(232, 196, 200, 0.2);
  transition: var(--transition);
}

.carousel-slide-inner:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.carousel-slide-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
}

.carousel-slide-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 169, 110, 0.2);
}

.carousel-slide-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.carousel-slide-inner p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 169, 110, 0.3);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-medium);
  transition: var(--transition);
}

.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-dust);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gradient-gold);
}

.carousel-progress {
  height: 3px;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 2px;
  margin-top: 32px;
  overflow: hidden;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-progress-bar {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width 0.3s linear;
  width: 0%;
}

/* ===== BOUQUETS CAROUSEL ===== */
.bouquets-carousel {
  max-width: 1100px;
  margin: 0 auto;
}

.bouquets-carousel-viewport {
  overflow: hidden;
  margin: 0 -10px;
}

.bouquets-carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.bouquets-carousel-slide {
  flex-shrink: 0;
  padding: 0 10px;
  box-sizing: border-box;
}

.bouquets-carousel-slide .bouquet-card {
  margin: 0;
}

.bouquets-carousel .carousel-controls {
  margin-top: 32px;
}

.bouquets-carousel .carousel-dot.active {
  background: var(--gradient-accent);
}

/* Desktop: 3 slides per view */
@media (min-width: 1025px) {
  .bouquets-carousel-slide {
    width: 33.333%;
  }
}

/* Tablet: 2 slides per view */
@media (min-width: 640px) and (max-width: 1024px) {
  .bouquets-carousel-slide {
    width: 50%;
  }
}

/* Mobile: 1 slide per view */
@media (max-width: 639px) {
  .bouquets-carousel-slide {
    width: 100%;
  }

  .bouquets-carousel-viewport {
    margin: 0;
  }

  .bouquets-carousel-slide {
    padding: 0;
  }
}

/* ===== BOUQUETS GRID ===== */
.bouquets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.bouquet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(232, 196, 200, 0.15);
  transform: translateY(0);
}

.bouquet-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(201, 169, 110, 0.2);
}

.bouquet-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gradient-main);
}

.bouquet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bouquet-card:hover .bouquet-card-img img {
  transform: scale(1.1);
}

.bouquet-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(44, 24, 16, 0.1));
  opacity: 0;
  transition: var(--transition);
}

.bouquet-card:hover .bouquet-card-img::after {
  opacity: 1;
}

.bouquet-card-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(0.8) translateY(-10px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.bouquet-card:hover .bouquet-card-zoom {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.bouquet-card-body {
  padding: 24px;
  background: var(--white);
}

.bouquet-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

.bouquet-card-body p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
}

.bouquet-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--pink-medium);
}

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--gradient-main);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-strong);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(44, 24, 16, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transform: scale(0.8) translateY(10px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.gallery-item:hover .gallery-item-overlay span {
  transform: scale(1) translateY(0);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  backdrop-filter: blur(40px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: scaleIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease;
}

.lightbox-close {
  position: fixed;
  top: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(1.05);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

.lightbox-counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  z-index: 10001;
}

/* ===== CONTACTS PAGE ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(232, 196, 200, 0.15);
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(201, 169, 110, 0.3);
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--gradient-main);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: relative;
}

.contact-item-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.contact-item h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-item p,
.contact-item a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.5;
}

.contact-item a:hover {
  color: var(--pink-dark);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(244, 143, 177, 0.25);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(244, 143, 177, 0.35);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 3px solid rgba(201, 169, 110, 0.2);
  aspect-ratio: 4/3;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FAQ PAGE ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(232, 196, 200, 0.15);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
}

.faq-item.active {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: var(--shadow-medium);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  text-align: left;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
  color: var(--lavender-medium);
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gradient-gold);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 32px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-medium);
  font-weight: 300;
  line-height: 1.8;
}

.faq-answer-inner a {
  color: var(--pink-dark);
  font-weight: 500;
}

.faq-answer-inner a:hover {
  color: var(--gold);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 32px 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0.3;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logotype {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-logotype span {
  color: var(--gold);
}

.footer-description {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.footer-contact-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(201, 169, 110, 0.3);
  margin: 0 auto 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
  background: var(--gradient-hero);
  padding: 120px 32px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(248, 187, 208, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 80px 32px;
  background: var(--gradient-main);
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.cta-section p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contacts-grid {
    gap: 32px;
  }

  .section {
    padding: 80px 24px;
  }

  .hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .bouquets-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 24px;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
    z-index: 1000;
  }

  .nav.open {
    right: 0;
  }

  .nav a {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.85rem;
    border-radius: 12px;
  }

  .nav a::before {
    border-radius: 12px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 100px 20px 70px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
    margin-bottom: 24px;
  }

  .hero-accent,
  .hero-accent-2 {
    display: none;
  }

  /* Sections */
  .section {
    padding: 60px 20px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  /* Buttons */
  .btn {
    padding: 14px 28px;
    font-size: 0.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Contacts */
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-item {
    padding: 20px;
  }

  .contact-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.1rem;
  }

  .contact-item h3 {
    font-size: 0.7rem;
  }

  .contact-item p,
  .contact-item a {
    font-size: 0.95rem;
  }

  .social-links {
    flex-direction: column;
    gap: 8px;
  }

  .social-link {
    justify-content: center;
    padding: 10px 20px;
  }

  .map-container {
    aspect-ratio: 16/9;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
  }

  .gallery-item {
    border-radius: var(--radius);
  }

  .gallery-item-overlay span {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  /* Bouquets */
  .bouquets-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
  }

  .bouquet-card {
    border-radius: var(--radius);
  }

  .bouquet-card-body {
    padding: 16px;
  }

  .bouquet-card-body h3 {
    font-size: 0.95rem;
  }

  .bouquet-card-body p {
    font-size: 0.8rem;
  }

  .bouquet-card-zoom {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    top: 10px;
    right: 10px;
  }

  /* Shop photos */
  .shop-photos {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .shop-photo-card {
    aspect-ratio: 16/10;
    border-radius: var(--radius);
  }

  .shop-photo-overlay {
    padding: 20px;
  }

  .shop-photo-overlay h3 {
    font-size: 1.1rem;
  }

  /* Carousel */
  .carousel-container {
    max-width: 100%;
  }

  .carousel-slide {
    padding: 0 32px;
  }

  .carousel-slide-inner {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
  }

  .carousel-slide-inner h3 {
    font-size: 1.2rem;
  }

  .carousel-slide-inner p {
    font-size: 0.85rem;
  }

  .carousel-slide-icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .carousel-controls {
    gap: 14px;
    margin-top: 28px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-dot {
    width: 7px;
    height: 7px;
  }

  .carousel-dot.active {
    width: 24px;
  }

  .carousel-progress {
    margin-top: 24px;
    max-width: 280px;
  }

  /* CTA */
  .cta-section {
    padding: 60px 20px;
  }

  .cta-section h2 {
    font-size: 1.4rem;
  }

  .cta-section p {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Lightbox */
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .lightbox-content img {
    border-radius: var(--radius);
    max-width: 95vw;
    max-height: 80vh;
  }

  .lightbox-counter {
    bottom: 16px;
    font-size: 0.75rem;
  }

  /* FAQ */
  .faq-list {
    gap: 12px;
  }

  .faq-item {
    border-radius: var(--radius);
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
    gap: 12px;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 1.1rem;
  }

  .faq-answer-inner {
    padding: 0 20px 20px;
    font-size: 0.85rem;
  }

  /* Page header */
  .page-header {
    padding: 100px 20px 48px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer {
    padding: 40px 20px 32px;
  }

  .footer-contact-row {
    flex-direction: column;
    gap: 10px;
  }

  .footer-contact-item {
    font-size: 0.8rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-logotype {
    font-size: 1.3rem;
  }

  .footer-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
    height: 60px;
  }

  .logo-img-wrap {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-sub {
    font-size: 0.5rem;
  }

  .main-content {
    padding-top: 60px;
  }

  /* Hero */
  .hero {
    padding: 80px 16px 60px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 5px 14px;
  }

  .hero-buttons .btn {
    max-width: 240px;
    padding: 12px 24px;
    font-size: 0.75rem;
  }

  /* Sections */
  .section {
    padding: 48px 16px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header p {
    font-size: 0.85rem;
  }

  .section-divider {
    width: 60px;
    margin-top: 14px;
  }

  .section-header {
    margin-bottom: 28px;
  }

  /* Buttons */
  .btn {
    padding: 12px 20px;
    font-size: 0.75rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-item {
    border-radius: 10px;
  }

  .gallery-item-overlay span {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  /* Bouquets */
  .bouquets-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .bouquet-card {
    border-radius: 12px;
  }

  .bouquet-card-body {
    padding: 12px;
  }

  .bouquet-card-body h3 {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }

  .bouquet-card-body p {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .bouquet-card-zoom {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
    top: 8px;
    right: 8px;
  }

  /* Shop photos */
  .shop-photos {
    gap: 12px;
  }

  .shop-photo-card {
    aspect-ratio: 16/9;
    border-radius: 12px;
  }

  .shop-photo-overlay {
    padding: 16px;
  }

  .shop-photo-overlay h3 {
    font-size: 0.95rem;
  }

  .shop-photo-overlay p {
    font-size: 0.75rem;
  }

  /* Carousel */
  .carousel-slide {
    padding: 0 20px;
  }

  .carousel-slide-inner {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .carousel-slide-icon {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .carousel-slide-inner h3 {
    font-size: 1rem;
  }

  .carousel-slide-inner p {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .carousel-controls {
    gap: 10px;
    margin-top: 20px;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
  }

  .carousel-dot.active {
    width: 20px;
  }

  .carousel-progress {
    max-width: 200px;
    margin-top: 16px;
  }

  /* Contacts */
  .contact-item {
    padding: 16px;
    gap: 14px;
  }

  .contact-item-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 1rem;
  }

  .contact-item h3 {
    font-size: 0.65rem;
  }

  .contact-item p,
  .contact-item a {
    font-size: 0.85rem;
  }

  .social-link {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .map-container {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
  }

  /* FAQ */
  .faq-question {
    padding: 16px 16px;
    font-size: 0.85rem;
    gap: 10px;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    font-size: 0.95rem;
  }

  .faq-answer-inner {
    padding: 0 16px 16px;
    font-size: 0.8rem;
    line-height: 1.6;
  }

  /* Page header */
  .page-header {
    padding: 80px 16px 36px;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  .page-header p {
    font-size: 0.85rem;
  }

  /* CTA */
  .cta-section {
    padding: 48px 16px;
  }

  .cta-section h2 {
    font-size: 1.2rem;
  }

  .cta-section p {
    font-size: 0.85rem;
  }

  .cta-buttons .btn {
    max-width: 240px;
    padding: 12px 20px;
  }

  /* Footer */
  .footer {
    padding: 32px 16px 24px;
  }

  .footer-logotype {
    font-size: 1.1rem;
  }

  .footer-contact-item {
    font-size: 0.75rem;
  }

  .footer-links a {
    font-size: 0.75rem;
  }

  .footer-copyright {
    font-size: 0.65rem;
  }
}

/* Fix for very small screens */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.3rem;
  }

  .gallery-grid {
    gap: 6px;
  }

  .gallery-item {
    border-radius: 8px;
  }

  .bouquets-grid {
    gap: 8px;
  }

  .bouquet-card-body {
    padding: 10px;
  }

  .bouquet-card-body h3 {
    font-size: 0.75rem;
  }

  .bouquet-card-body p {
    font-size: 0.65rem;
  }
}
/* ===== NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--gradient-accent);
  z-index: 99999;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

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