html {
    scroll-behavior: smooth;
}

:root {
    --action-blue: #0088FF;
    /* Even more vibrant now */
    --deep-blue: #183153;
    --rich-black: #122034;
    --accent-color: #fab005;
    /* Elegant Yellow/Orange */
}

.text-accent-color {
    color: var(--accent-color) !important;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--rich-black);
    color: white;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
}

p {
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 768px) {
    p {
        font-size: 17px;
        line-height: 25px;
    }
}

.cta-pulse {
    animation: pulse 2s infinite;
    background: linear-gradient(135deg, var(--action-blue) 0%, #1e5a91 100%);
    border: 1px solid rgba(250, 176, 5, 0.2);
}

.cta-pulse:hover {
    background: linear-gradient(135deg, #4da3ef 0%, var(--action-blue) 100%);
}

header {
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.testimonial-carousel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-left: calc((100vw - 1000px) / 2);
    padding-right: calc((100vw - 1000px) / 2);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    gap: 24px;
}

@media (max-width: 1024px) {
    .testimonial-carousel {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.testimonial-card {
    scroll-snap-align: center;
    flex: 0 0 calc(100vw - 3rem);
    min-height: 380px;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(36, 110, 175, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(36, 110, 175, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(36, 110, 175, 0);
    }
}

.floating-bottle {
    transition: transform 0.1s ease-out;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.hero-gradient {
    background: linear-gradient(180deg, rgba(18, 32, 52, 0.8) 0%, rgba(18, 32, 52, 0.95) 100%);
}

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

.bundle-card:active {
    transform: scale(0.98);
}

.badge-pulse {
    animation: badge-pulse 1.5s infinite;
}

@keyframes badge-pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.number-pulse {
    animation: number-pulse 2s infinite ease-in-out;
    box-shadow: 0 0 0 0 rgba(250, 176, 5, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
}

@keyframes number-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 176, 5, 0.6);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(250, 176, 5, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 176, 5, 0);
    }
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}