/* components.css – hero, bubbles, cards, 3D carousel, gallery masonry, contact, buttons */

/* Background bubbles */

.bubbles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, rgba(255, 232, 244, 0.2));
  box-shadow: 0 18px 40px rgba(231, 53, 143, 0.24);
  animation: floatUp 18s linear infinite;
}

.bubble-small {
  width: 80px;
  height: 80px;
  left: 5%;
  bottom: -120px;
  animation-duration: 22s;
}

.bubble-medium {
  width: 120px;
  height: 120px;
  left: 70%;
  bottom: -160px;
  animation-duration: 26s;
}

.bubble-large {
  width: 220px;
  height: 220px;
  left: 40%;
  bottom: -260px;
  animation-duration: 30s;
}

/* Hero */
/* ----------------------------------------- */
/*                MODERN HERO                */
/*     Ultra-smooth, glassy, cinematic       */
/* ----------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
  isolation: isolate; /* prevents weird stacking bugs */
}

/* --- BACKGROUND VIDEO --- */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  filter: brightness(0.55) saturate(1.25) contrast(1.05);
  z-index: -3;
  
  /* cinematic slow zoom */
  animation: heroZoom 16s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* --- MULTI-LAYERED OVERLAY (depth + color mood) --- */
.hero-overlay {
  position: absolute;
  inset: 0;
  
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 170, 221, 0.35), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(122, 30, 160, 0.35), transparent 60%),
    linear-gradient(120deg, rgba(24, 10, 28, 0.72), rgba(58, 18, 66, 0.65), rgba(19, 8, 22, 0.75));
  
  backdrop-filter: blur(2px);
  z-index: -2;
}

/* --- HERO CONTENT CARD (glassy + elevated) --- */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 48px 32px;
  margin-left: 8%;
  border-radius: 28px;
  
  background: rgba(255, 225, 240, 0.14);
  border: 1px solid rgba(255, 170, 221, 0.25);
  
  backdrop-filter: blur(30px) saturate(130%);
  box-shadow:
    0 10px 40px rgba(255, 50, 150, 0.25),
    0 0 40px rgba(255, 160, 230, 0.12) inset;
  
  transform: translateY(20px);
  opacity: 0;
  animation: heroFadeUp 1.2s ease forwards 0.2s;
}

@keyframes heroFadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ----------------------------------------- */
/*                 TEXT STYLING              */
/* ----------------------------------------- */

.hero-tagline {
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 12px;
  color: rgba(255, 230, 245, 0.9);
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.8rem, 4vw, 3.7rem);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 100, 200, 0.4);
}

.hero-desc {
  margin: 0 0 26px;
  font-size: 1.05rem;
  opacity: 0.95;
  line-height: 1.55;
  color: rgba(255, 240, 250, 0.95);
}

/* ----------------------------------------- */
/*                 BUTTONS                   */
/* ----------------------------------------- */

/* ----------------------------------------- */
/*           FRIENDLY SOFT BUTTONS           */
/* ----------------------------------------- */

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

/* 💗 General Button Style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 22px; /* softer, friendlier */
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  
  letter-spacing: 0.02em;
  
  transition: 
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.3s ease;
}

/* 💗 Primary button — soft gradient, glow */
.btn-primary {
  background: linear-gradient(145deg, #ff83c7, #e7358f);
  color: #fff;

  box-shadow:
    0 6px 20px rgba(231, 53, 143, 0.35),
    0 0 16px rgba(255, 140, 210, 0.35);
  
  border-radius: 28px; /* extra round */
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 10px 26px rgba(231, 53, 143, 0.45),
    0 0 20px rgba(255, 140, 210, 0.5);
}

/* 💗 Ghost button — soft pastel look */
.btn-ghost {
  background: rgba(255, 240, 250, 0.25);
  border: 1px solid rgba(255, 240, 250, 0.4);
  color: #fff;

  box-shadow:
    0 0 10px rgba(255, 210, 240, 0.2) inset,
    0 4px 14px rgba(0,0,0,0.06);
  
  border-radius: 28px;
}

.btn-ghost:hover {
  background: rgba(255, 240, 250, 0.4);
  transform: translateY(-2px);
  box-shadow:
    0 0 12px rgba(255, 210, 240, 0.3) inset,
    0 6px 18px rgba(0,0,0,0.09);
}


/* ----------------------------------------- */
/*                 BADGES                    */
/* ----------------------------------------- */

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  animation: heroBadgesFade 1.2s ease forwards 0.7s;
}

@keyframes heroBadgesFade {
  to { opacity: 1; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 240, 250, 0.18);
  font-size: 0.85rem;
  color: #fff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 240, 250, 0.25);
  transition: 0.25s ease;
}

.badge:hover {
  background: rgba(255, 240, 250, 0.25);
  transform: translateY(-2px);
}

/* ----------------------------------------- */
/*             MOBILE RESPONSIVE             */
/* ----------------------------------------- */

@media (max-width: 768px) {
  .hero {
    padding-top: 60px;
    min-height: 90vh;
  }

  .hero-content {
    width: 92%;
    margin: 0 auto;
    padding: 28px 20px;
    border-radius: 22px;
    backdrop-filter: blur(20px);
    background: rgba(255, 240, 250, 0.12);
  }

  .hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
  }

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

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .badge {
    padding: 5px 12px;
    font-size: 0.78rem;
  }
}


/* About cards */
/* ---------------------------------------------------- */
/*                 MODERN ABOUT CARDS                   */
/*          Glass, Glow, Soft Depth, Luxury             */
/* ---------------------------------------------------- */

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  perspective: 1000px; /* smoother 3D hover */
}

/* --- Card Styling (Modern Glass Look) --- */
.about-card {
  background: rgba(255, 240, 250, 0.25);
  border-radius: 22px;
  padding: 26px 22px 22px;

  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  border: 1px solid rgba(255, 180, 220, 0.35);
  box-shadow:
    0 12px 40px rgba(231, 53, 143, 0.10),
    inset 0 0 18px rgba(255, 255, 255, 0.18);

  transform-origin: center;
  transform: translateY(0) scale(1);
  transition:
    transform .45s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow .45s ease,
    background .45s ease,
    border-color .45s ease;
}

/* --- Hover (Soft Float + Glow) --- */
.about-card:hover {
  transform: translateY(-10px) scale(1.03) rotate3d(0.35, -0.15, 0, 8deg);
  background: rgba(255, 240, 250, 0.40);

  box-shadow:
    0 20px 55px rgba(231, 53, 143, 0.22),
    inset 0 0 26px rgba(255, 255, 255, 0.28);

  border-color: rgba(255, 220, 245, 0.75);
}

/* --- Icon Container (Glow Bubble) --- */
.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;

  background: radial-gradient(circle at 35% 25%, #ffffff, #ffd6ec);
  box-shadow:
    0 14px 30px rgba(231, 53, 143, 0.22),
    inset 0 0 15px rgba(255, 255, 255, 0.35);

  color: var(--color-primary);
  font-size: 1.25rem;
  transition: transform .4s ease;
}

.about-card:hover .icon-wrap {
  transform: scale(1.12) rotate(4deg);
}

/* --- Title --- */
.about-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #4c284f;
  letter-spacing: 0.01em;
}

/* --- Description --- */
.about-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(45, 23, 52, 0.75);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .about-cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-card {
    padding: 22px 18px;
  }

  .icon-wrap {
    width: 48px;
    height: 48px;
  }
}

/* -------------------------------------------------- */
/*                     PRODUCTS                       */
/*          Modern, soft, luxury aesthetic            */
/* -------------------------------------------------- */

.products {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fff8fc 35%,
    #ffe5f2 100%
  );
  padding-bottom: 40px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  perspective: 900px; /* enhance 3D hover */
}

/* Product card – Glass, Glow, Depth */
.product-card {
  background: rgba(255, 245, 252, 0.45);
  border-radius: 24px;
  padding: 22px 20px 24px;

  border: 1px solid rgba(255, 210, 240, 0.45);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);

  box-shadow:
    0 12px 40px rgba(149, 63, 255, 0.10),
    inset 0 0 22px rgba(255, 255, 255, 0.18);

  cursor: pointer;
  transform: translateY(0) rotate3d(0, 0, 0, 0);
  transition:
    transform .45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .45s ease,
    background .45s ease,
    border-color .45s ease;
}

/* Hover card 3D float + glow */
.product-card:hover {
  transform: translateY(-14px) scale(1.03) rotate3d(.35, -.25, 0, 8deg);
  background: rgba(255, 240, 248, 0.65);

  box-shadow:
    0 26px 60px rgba(149, 63, 255, 0.18),
    inset 0 0 28px rgba(255, 255, 255, 0.24);

  border-color: rgba(255, 220, 245, 0.75);
}

/* -------------------------------------------------- */
/*                     IMAGE AREA                     */
/* -------------------------------------------------- */

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* PERFECT SQUARE, adapts to screen */
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 10px 30px rgba(231, 53, 143, 0.18);
  transition: transform .5s ease;
}


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

/* Image fade/zoom transitions */
.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit:cover;

  transition:
    opacity .6s ease,
    transform .6s ease;
}

/* Front image fades out on hover */
.img-front {
  opacity: 1;
  z-index: 1;
}
.product-card:hover .img-front {
  opacity: 0;
  transform: scale(1.06);
}

/* Back image fades in on hover */
.img-back {
  opacity: 0;
  z-index: 2;
}
.product-card:hover .img-back {
  opacity: 1;
  transform: scale(1.03);
}

/* -------------------------------------------------- */
/*                    TEXT AREA                       */
/* -------------------------------------------------- */

.product-card h3 {
  margin: 6px 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #4b224f;
  letter-spacing: 0.01em;
}

.product-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(45, 23, 52, 0.75);
}

/* Small note text */
.products-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.98rem;
  color: #6e3d72;
}

.products-note a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* -------------------------------------------------- */
/*                   RESPONSIVE                       */
/* -------------------------------------------------- */

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  
  .product-card {
    padding: 20px 18px 22px;
    border-radius: 20px;
  }

   .product-image {
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 18px;
  }
}


/* ------------------------------------------------------ */
/*            MINIMAL + PREMIUM FLAVORS CAROUSEL          */
/* ------------------------------------------------------ */

.flavors-3d {
  background: radial-gradient(circle at 50% 0%, #ffe1f2, #fff5fa 40%, #ffffff);
  padding-bottom: 50px;
}

/* Swiper container */
.flavors-swiper {
  width: 100%;
  padding: 30px 0 70px;
}

/* ------------------------------------------------------ */
/*                     SLIDE CARD                        */
/* ------------------------------------------------------ */

.flavors-swiper .swiper-slide {
  width: 200px;
  border-radius: 20px;
  padding: 16px;
  
  background: rgba(255, 240, 250, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 200, 230, 0.35);
  box-shadow: 0 6px 20px rgba(231, 53, 143, 0.10);

  text-align: center;
  
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

/* ACTIVE slide – small lift only */
.flavors-swiper .swiper-slide-active {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 30px rgba(231, 53, 143, 0.15);
  background: rgba(255, 240, 250, 0.75);
}

/* ------------------------------------------------------ */
/*                       IMAGE                           */
/* ------------------------------------------------------ */

.flavors-swiper .swiper-slide img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 10px;
  
  transition: transform .4s ease, filter .4s ease;
  box-shadow: 0 8px 22px rgba(231, 53, 143, 0.16);
}

.flavors-swiper .swiper-slide-active img {
  transform: scale(1.03);
  filter: brightness(1.08);
}

/* ------------------------------------------------------ */
/*                      TEXT                             */
/* ------------------------------------------------------ */

.flavors-swiper .swiper-slide h3 {
  margin: 0;
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: #4b224f;
  letter-spacing: 0.01em;
}

/* ------------------------------------------------------ */
/*                 ARROWS & PAGINATION                   */
/* ------------------------------------------------------ */

.flavors-3d .swiper-button-next,
.flavors-3d .swiper-button-prev {
  color: var(--color-primary);
  width: 34px;
  height: 34px;

  background: rgba(255, 240, 250, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 50%;

  transition: background .3s ease, transform .3s ease;
}

.flavors-3d .swiper-button-next:hover,
.flavors-3d .swiper-button-prev:hover {
  background: rgba(255, 240, 250, 0.55);
  transform: scale(1.15);
}

.flavors-3d .swiper-pagination-bullet {
  background: rgba(231, 53, 143, 0.35);
  opacity: 1;
}

.flavors-3d .swiper-pagination-bullet-active {
  background: var(--color-primary);
  box-shadow: 0 0 6px rgba(231, 53, 143, 0.45);
}

/* ------------------------------------------------------ */
/*                   RESPONSIVENESS                      */
/* ------------------------------------------------------ */

@media (max-width: 768px) {
  .flavors-swiper .swiper-slide {
    width: 160px;
    padding: 14px;
    border-radius: 18px;
  }
}

/* ------------------------------------------------------ */
/*                FLAVOR MODAL POPUP                     */
/* ------------------------------------------------------ */

.flavor-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  cursor: pointer;
}

.flavor-modal.active {
  display: flex;
  animation: modalFade .3s ease;
}

@keyframes modalFade {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.flavor-modal-content {
  background: rgba(255,240,250,0.85);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 24px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(231, 53, 143, 0.2);
  cursor: auto;
  animation: modalCard .35s ease;
}

@keyframes modalCard {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.flavor-modal-content img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 12px;
}

.flavor-modal-content h3 {
  font-size: 1.2rem;
  margin-top: 4px;
  color: #4b224f;
  font-weight: 600;
}


/* ------------------------------------------------------ */
/*                GALLERY MASONRY v.2025                  */
/* ------------------------------------------------------ */

.gallery-section {
  background: linear-gradient(180deg, #ffffff, #fff8fc 40%, #ffeaf5 100%);
  padding-bottom: 40px;
}

/* Masonry grid */
.masonry-grid {
  columns: 4;
  column-gap: 22px;
  padding: 10px 0;
}

/* Masonry item – Soft Glass Tile */
.masonry-item {
  break-inside: avoid;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: zoom-in;

  background: rgba(255, 240, 250, 0.25);
  backdrop-filter: blur(6px);

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.08),
    inset 0 0 18px rgba(255, 255, 255, 0.25);

  transition:
    transform .45s cubic-bezier(.25,1,.30,1),
    box-shadow .45s ease,
    filter .45s ease;
}

/* Smooth elevation on hover */
.masonry-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 22px 40px rgba(231, 53, 143, 0.15),
    inset 0 0 28px rgba(255, 255, 255, 0.32);
}

/* Image styling */
.masonry-item img {
  width: 100%;
  border-radius: 22px;
  display: block;

  transition:
    transform .55s ease,
    filter .55s ease;
}

/* Hover zoom + vibrance */
.masonry-item:hover img {
  transform: scale(1.14);
  filter: brightness(1.15) contrast(1.05) saturate(1.25);
}

/* Pink soft glow overlay */
.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(231, 53, 143, 0.18),
    transparent 65%
  );
  
  opacity: 0;
  transition: opacity .5s ease;
}

.masonry-item:hover::after {
  opacity: 1;
}

/* Tall & wide shapes */
.masonry-item.tall img {
  min-height: 280px;
  object-fit: cover;
}

.masonry-item.wide img {
  min-height: 200px;
  object-fit: cover;
}

/* ------------------------------------------------------ */
/*                     GALLERY MODAL                      */
/* ------------------------------------------------------ */

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 0, 20, 0.82);
  backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 5000;
}

.gallery-modal.open {
  opacity: 1;
  pointer-events: auto;
}

/* Modern close button */
.gallery-modal .close {
  position: fixed;
  top: 22px;
  right: 26px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);

  transition: transform .2s ease;
}
.gallery-modal .close:hover {
  transform: scale(1.2);
}

/* Modal image */
#galleryModalImg {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 28px;

  box-shadow:
    0 22px 60px rgba(231, 53, 143, 0.28),
    0 0 35px rgba(255, 150, 220, 0.35);

  animation: modalPop .35s cubic-bezier(.25,1,.25,1);
}

/* Modal entrance animation */
@keyframes modalPop {
  from {
    transform: scale(0.88);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Caption */
#galleryCaption {
  margin-top: 16px;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  opacity: 0.85;
}

/* Contact */

/* Contact Section Background */
.contact-section {
  background: linear-gradient(180deg, #fff7fb 0, #ffe8f4 50%, #fff 100%);
}

/* Layout */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Contact Form Card */
.contact-form {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

/* Form Fields */
.form-group {
  position: relative;
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(43, 18, 48, 0.14);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.96rem;
  outline: none;
  background: rgba(255, 255, 255, 0.98);
  transition: border var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), transform 0.12s ease-out;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Floating label */
.form-group label {
  position: absolute;
  left: 14px;
  top: 11px;
  font-size: 0.78rem;
  color: rgba(43, 18, 48, 0.52);
  pointer-events: none;
  transition: transform var(--transition-fast), opacity var(--transition-fast),
    top var(--transition-fast), font-size var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(231, 53, 143, 0.8);
  box-shadow: 0 0 0 1px rgba(231, 53, 143, 0.3);
  transform: translateY(-1px);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -7px;
  font-size: 0.7rem;
  opacity: 0.9;
  background: var(--color-white);
  padding: 0 5px;
  border-radius: 999px;
}

/* Submit Button */
.submit-btn {
  margin-top: 4px;
  min-width: 140px;
}

/* Inline Messages */
.form-message {
  margin-top: 10px;
  font-size: 0.9rem;
  min-height: 22px;
}

.form-message.success {
  color: #1a7f4b;
}

.form-message.error {
  color: #c62828;
}

/* Contact Info */
.contact-info {
  padding: 6px 4px;
}

.contact-info h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.contact-info i {
  color: var(--color-primary);
}

/* ------------------------------
   🌸 GDPR CONSENT CHECKBOX
------------------------------ */

.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 1px;
  margin: 10px 0 5px;
  font-size: 0.9rem;
  line-height: 1.35;
  color: rgba(234, 232, 235, 0.65);
  padding-left: 2px;
}

.consent-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #e7358f;  /* TeaBoom pink */
  border-radius: 4px;
}

.consent-box-2 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 5px;
  font-size: 0.9rem;
  line-height: 1.35;
  color: rgba(131, 36, 140, 0.65);
  padding-left: 2px;
}

.consent-box-2 input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #e7358f;  /* TeaBoom pink */
  border-radius: 4px;
}

.consent-box-3 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 5px;
  font-size: 0.9rem;
  line-height: 1.35;
  color: rgba(131, 36, 140, 0.65);
  padding-left: 2px;
}

.consent-box-3 input[type="checkbox"] {
  width: 14px;
  height: 15px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #e7358f;  /* TeaBoom pink */
  border-radius: 4px;
}

.consent-box:hover input[type="checkbox"] {
  transform: scale(1.06);
}

/* Mobile Improvements */
@media (max-width: 600px) {
  .consent-box {
    font-size: 0.88rem;
    gap: 8px;
  }

  .consent-box {
     color: rgba(243, 231, 244, 0.65);
  }
}


/* Custom cursor */

#cursor,
#cursor-outline {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out;
}

#cursor {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
}

#cursor-outline {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(231, 53, 143, 0.6);
  background: radial-gradient(circle, rgba(231, 53, 143, 0.08), transparent);
}

/* Responsive tweaks */

@media (max-width: 960px) {
  .hero-content {
    margin-left: 0;
    margin: 60px auto 30px;
  }

  .about-cards,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .masonry-grid {
    columns: 3;
  }
}

@media (max-width: 720px) {
  .about-cards,
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding: 22px 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .flavors-swiper .swiper-slide {
    width: 220px;
  }

  .masonry-grid {
    columns: 2;
  }
}
