/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Brand Palette */
  --bg-pink: #f9ebea;          /* Hero background soft dusty pink */
  --bg-white: #ffffff;         /* Clean background */
  --bg-soft-cream: #faf7f5;    /* Light beige background */
  --terracotta: #aa654c;       /* Button brown/terracotta accent */
  --terracotta-dark: #8c4e38;  /* Hover brown state */
  --text-dark: #2c2523;        /* Dark heading text */
  --text-muted: #665b57;       /* Body paragraph text */
  --border-color: #eeddd8;     /* Subtle divider line color */

  /* Typography */
  --font-serif-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', 'Caveat', cursive;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Border Radii */
  --max-width: 1280px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --transition-normal: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-normal);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background-color: var(--terracotta);
  color: #ffffff;
  text-align: center;
  font-size: 0.75rem;
  padding: 6px 16px;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: uppercase;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-pink);
  border-bottom: 1px solid rgba(170, 101, 76, 0.1);
  padding: 18px 0;
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.navbar.scrolled {
  background-color: rgba(249, 235, 234, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  line-height: 1;
}

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

.nav-item {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: capitalize;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item:hover, .nav-item.active {
  color: var(--terracotta);
}

.call-link {
  color: var(--terracotta) !important;
  font-weight: 700;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 0.75rem;
  color: var(--text-dark);
}

.dropdown-menu li a:hover {
  background-color: var(--bg-pink);
  color: var(--terracotta);
}

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

.icon-btn {
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-normal);
}

.icon-btn:hover {
  color: var(--terracotta);
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--terracotta);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background-color: var(--text-dark);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all var(--transition-normal);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.75rem;
}

.btn-terracotta {
  background-color: var(--terracotta);
  color: #ffffff;
}

.btn-terracotta:hover {
  background-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(170, 101, 76, 0.25);
  color: #ffffff;
}

.btn-outline {
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--terracotta);
  color: #ffffff;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  background-color: var(--bg-pink);
  padding: 40px 0 80px;
  overflow: hidden;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.hero-left {
  padding-right: 20px;
}

.hero-title-masked {
  font-family: var(--font-serif-display);
  font-size: 6.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 24px;
  
  /* Mask effect with image fill */
  background: url('https://fleuristes-et-fleurs.com/uploads/shops/webp/443bc2e5ffab7f0c4c51c988869807affc46d8b7.webp') center/cover;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-image-frame {
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-frame:hover .hero-img {
  transform: scale(1.03);
}

/* ==========================================================================
   CERTIFICATIONS & QUALITÉ BAR
   ========================================================================== */
.certifications-bar {
  background-color: var(--bg-soft-cream);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
}

.certifications-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.cert-image-wrapper {
  flex-shrink: 0;
  background-color: var(--bg-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  flex-grow: 1;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--bg-white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-normal);
}

.cert-item:hover {
  transform: translateY(-2px);
  border-color: var(--terracotta);
}

.cert-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cert-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.cert-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
  background-color: var(--bg-white);
  padding: 100px 0;
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.about-icon {
  background-color: var(--terracotta);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-title {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}

.about-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.avatar-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-line {
  width: 40px;
  height: 1px;
  background-color: var(--text-dark);
}

.author-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image-wrapper {
  position: relative;
  z-index: 2;
  width: 360px;
  height: 440px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accent-box {
  position: absolute;
  width: 220px;
  height: 24px;
  background-color: var(--terracotta);
  z-index: 1;
}

.accent-top-right {
  top: -12px;
  right: 20px;
}

.accent-bottom-left {
  bottom: -12px;
  left: 20px;
}

/* ==========================================================================
   BEST SELLERS SECTION
   ========================================================================== */
.best-sellers-section {
  background-color: var(--bg-soft-cream);
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
}

.best-sellers-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.sellers-header {
  text-align: center;
  margin-bottom: 50px;
}

.sellers-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.btn-sellers-cta {
  font-size: 0.72rem;
  padding: 8px 20px;
  letter-spacing: 0.05em;
}

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

.product-card {
  text-align: center;
  transition: transform var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
  background-color: var(--bg-pink);
}

.badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.product-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   OCCASIONS SECTION
   ========================================================================== */
.occasions-section {
  background-color: var(--bg-white);
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
}

.occasions-container, .vegetaux-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-header-centered {
  margin-bottom: 48px;
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  background-color: rgba(170, 101, 76, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.occasion-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  height: 340px;
}

.occasion-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.occasion-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.occasion-card:hover .occasion-img {
  transform: scale(1.06);
}

.occasion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 15, 14, 0.88) 0%, rgba(20, 15, 14, 0.3) 60%, rgba(0,0,0,0) 100%);
  padding: 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.occasion-tag {
  font-size: 0.7rem;
  font-weight: 700;
  background-color: var(--terracotta);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.occasion-overlay h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.occasion-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.4;
  margin-bottom: 16px;
  max-width: 440px;
}

/* ==========================================================================
   VÉGÉTAUX & CADEAUX SECTION
   ========================================================================== */
.vegetaux-section {
  background-color: var(--bg-soft-cream);
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
}

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

.veg-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.veg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.veg-img-box {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.veg-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--text-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.veg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.veg-card:hover .veg-img {
  transform: scale(1.05);
}

.veg-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.veg-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.veg-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.veg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

.veg-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--terracotta);
}

/* ==========================================================================
   INFO & CONTACT SECTION
   ========================================================================== */
.info-section {
  background-color: var(--bg-pink);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
}

.info-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.info-card {
  background-color: var(--bg-white);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-color);
}

.info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.phone-highlight a {
  color: var(--terracotta);
  font-weight: 700;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  border-bottom: 1px dashed #f2e4e0;
  padding-bottom: 4px;
}

.hours-list li span {
  font-weight: 700;
  color: var(--text-dark);
}

/* Minimal Circular Social Bar (Matches User Capture Pixel-Perfectly) */
.social-minimal-bar {
  background-color: var(--terracotta);
  padding: 28px 36px;
  margin: 40px auto 0;
  max-width: var(--max-width);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(170, 101, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-circle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.circle-social-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.circle-social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  background-color: var(--terracotta-dark);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(140, 78, 56, 0.4);
}

.circle-social-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}

.circle-social-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Map Section */
.map-section {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding: 0 32px;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.map-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--terracotta);
}

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--text-dark);
  color: #ffffff;
  padding: 60px 0 24px;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  color: #ffffff;
  font-size: 2.2rem;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.8rem;
  color: #a09590;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.footer-socials a:hover {
  background-color: var(--terracotta);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.8rem;
  color: #a09590;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col p {
  font-size: 0.8rem;
  color: #a09590;
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: #7a706b;
}

/* ==========================================================================
   ANIMATIONS & SCROLL OBSERVER
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title-masked {
    font-size: 5rem;
  }
  
  .about-container {
    gap: 40px;
  }

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

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

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

  .certifications-container {
    flex-direction: column;
    gap: 32px;
  }

  .cert-grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .info-container {
    grid-template-columns: 1fr;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-pink);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-container, .about-container {
    grid-template-columns: 1fr;
  }

  .hero-left, .about-left {
    padding-right: 0;
    text-align: center;
  }

  .hero-right {
    justify-content: center;
  }

  .about-header {
    justify-content: center;
  }

  .author-block {
    justify-content: center;
  }

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

@media (max-width: 480px) {
  .hero-title-masked {
    font-size: 3.6rem;
  }

  .products-grid, .vegetaux-grid {
    grid-template-columns: 1fr;
  }
}
