
        
    body {
      box-sizing: border-box;
    }

    .font-display {
      font-family: 'Playfair Display', serif;
    }

    .font-body {
      font-family: 'Lora', serif;
    }

    .font-accent {
      font-family: 'Cormorant Garamond', serif;
    }

    .hero-gradient {
      background: linear-gradient(135deg, #2d1810 0%, #4a2c2a 50%, #1a0f0a 100%);
    }

    .cake-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .cake-card:hover {
      transform: translateY(-8px);
    }

    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, currentColor 50%, transparent 100%);
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-15px) rotate(3deg);
      }
    }

    @keyframes shimmer {
      0% {
        opacity: 0.3;
      }

      50% {
        opacity: 0.6;
      }

      100% {
        opacity: 0.3;
      }
    }

    .floating {
      animation: float 6s ease-in-out infinite;
    }

    .shimmer {
      animation: shimmer 3s ease-in-out infinite;
    }

    .nav-link {
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: currentColor;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .scroll-reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .texture-overlay {
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    }
    
    @view-transition {
      navigation: auto;
    }
    
    /* =========================
   WhatsApp Floating Button
   ========================= */

.whatsapp-float {
  text-decoration: none;
}

/* Main button */
.whatsapp-button {
  position: relative;
  padding: 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.group\/whatsapp:hover .whatsapp-button {
  transform: scale(1.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* Font Awesome icon */
.whatsapp-icon {
  font-size: 1.875rem; /* text-3xl */
  color: #ffffff;
}

/* Smooth circular pulse */
.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: whatsappPulse 2s ease-out infinite;
}

/* Slower & softer pulse */
@keyframes whatsappPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.6;
  }
  60% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: #2d1810;
  color: #f5e6d3;
  font-size: 0.875rem;
  white-space: nowrap;
  border: 1px solid #d4a574;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.group\/whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Tooltip arrow */
.tooltip-arrow {
  position: absolute;
  top: 50%;
  right: -0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  transform: translateY(-50%) rotate(45deg);
  background: #2d1810;
  border-right: 1px solid #d4a574;
  border-top: 1px solid #d4a574;
}


/* Hover effects for cards */
/* .card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(212, 165, 116, 0.4);
} */

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.6s ease forwards;
}

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