/* Inter Font */
.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Custom Styles */

/* Disclaimer Banner */
.disclaimer-banner {
    position: sticky;
    top: 0;
    z-index: 40;
}

/* Navigation Pills */
.nav-pill {
    @apply px-4 py-2 rounded-full text-sm font-medium text-gray-700 hover:bg-[#FDC3A1] hover:text-white transition-all duration-300;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FFF7CD 0%, #FDC3A1 50%, #FB9B8F 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Product Image Placeholder Animation */
.product-image-placeholder {
    animation: float 3s ease-in-out infinite;
}

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

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 119, 153, 0.2);
    background: linear-gradient(135deg, #FFF7CD 0%, #FDC3A1 100%);
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Benefit Cards */
.benefit-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #FDC3A1;
    box-shadow: 0 15px 35px rgba(245, 119, 153, 0.15);
}

/* Ingredient Cards */
.ingredient-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ingredient-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(245, 119, 153, 0.2);
    border-color: #F57799;
}

/* Step Number Animation */
.step-number {
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(245, 119, 153, 0.4);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 119, 153, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(245, 119, 153, 0.6);
    }
}

/* Review Cards */
.review-card {
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 119, 153, 0.2);
    border-color: #F57799;
}

/* FAQ Accordion */
.faq-item {
    transition: all 0.3s ease;
}

.faq-question {
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: #FFF7CD;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.faq-item.active .faq-answer.hidden {
    display: block;
}

/* Cookie Banner */
.cookie-banner {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Form Input Focus States */
input:focus,
textarea:focus {
    outline: none;
    border-color: #F57799;
    box-shadow: 0 0 0 3px rgba(245, 119, 153, 0.1);
}

/* Button Hover Effects */
button[type="submit"],
a[href*="#contact-form"] {
    position: relative;
    overflow: hidden;
}

button[type="submit"]::before,
a[href*="#contact-form"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button[type="submit"]:hover::before,
a[href*="#contact-form"]:hover::before {
    width: 300px;
    height: 300px;
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform-origin: top;
}

#mobile-menu.hidden {
    display: none;
}

/* Loading Animation for Form Submission */
.form-loading {
    opacity: 0.6;
    pointer-events: none;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #F57799;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .cookie-banner,
    header {
        display: none;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Visible for Keyboard Navigation */
*:focus-visible {
    outline: 2px solid #F57799;
    outline-offset: 2px;
}

