@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

:root {
    --velvet-black: #070005;
    --velvet-red: #ff002f;
    --velvet-pink: #ff3db8;
    --velvet-gold: #ffc400;
    --velvet-wine: #240009;
}

* {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

body {
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 0, 47, 0.22), transparent 32rem),
        radial-gradient(circle at 85% 20%, rgba(255, 61, 184, 0.18), transparent 28rem),
        linear-gradient(180deg, #070005 0%, #120006 44%, #050003 100%);
}

.hero-bg {
    background:
        radial-gradient(circle at center, rgba(255, 0, 47, 0.22), transparent 34rem),
        linear-gradient(180deg, rgba(7, 0, 5, 0.42) 0%, rgba(7, 0, 5, 0.92) 100%);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 80px -24px rgb(255 0 47 / 0.72);
}

.glow-red {
    text-shadow: 0 0 18px rgb(255 0 47 / 0.9), 0 0 52px rgb(255 61 184 / 0.55);
}

.tail-container * {
    font-family: 'Inter', system_ui, sans-serif;
}

.heading-font {
    font-family: 'Playfair Display', sans-serif;
}

.neon-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 60px rgba(0,0,0,0.35);
}

.lust-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 61, 184, 0.45);
    background: rgba(255, 0, 47, 0.16);
    color: #ffd7ef;
    padding: 0.32rem 0.72rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.whatsapp-icon {
    width: 1.35rem;
    height: 1.35rem;
    object-fit: contain;
    flex: 0 0 auto;
}

.slider-track {
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-card {
    flex: 0 0 86%;
}

@media (min-width: 768px) {
    .slider-card {
        flex-basis: 44%;
    }
}

@media (min-width: 1280px) {
    .slider-card {
        flex-basis: 30%;
    }
}

.slider-dot.active {
    width: 2.25rem;
    background: linear-gradient(90deg, var(--velvet-red), var(--velvet-pink));
}

@media (max-width: 767px) {
    body {
        padding-bottom: 6.25rem;
    }

    nav {
        display: none;
    }

    .tail-container section:first-of-type {
        height: auto;
        min-height: 100svh;
        padding-top: 1.5rem;
        padding-bottom: 5.5rem;
    }

    .tail-container section:first-of-type > .absolute.bottom-10 {
        display: none;
    }

    .tail-container h1 {
        font-size: 2.55rem !important;
        line-height: 0.96 !important;
        letter-spacing: -0.08rem !important;
    }

    .tail-container h2 {
        font-size: 2.15rem !important;
        line-height: 1.02 !important;
        letter-spacing: -0.04rem !important;
    }

    .tail-container p {
        font-size: 1rem !important;
        line-height: 1.55 !important;
    }

    .lust-tag {
        padding: 0.25rem 0.55rem;
        font-size: 0.62rem;
        letter-spacing: 0.04em;
    }

    .slider-card {
        flex-basis: 88%;
    }

    .slider-card .relative.h-\[34rem\] {
        height: 29rem;
    }

    .whatsapp-icon {
        width: 1.2rem;
        height: 1.2rem;
    }

    .tail-container button:not(.mobile-fixed-cta) {
        padding: 0.8rem 1rem !important;
        font-size: 0.92rem !important;
        line-height: 1.1 !important;
    }

    .mobile-fixed-cta {
        position: fixed;
        left: 1rem;
        right: 1rem;
        bottom: max(1rem, env(safe-area-inset-bottom));
        z-index: 60;
        width: auto !important;
        max-width: 25rem !important;
        margin-inline: auto !important;
        padding: 0.95rem 1.2rem !important;
        border-radius: 999px !important;
        font-size: 1rem !important;
        line-height: 1 !important;
        gap: 0.55rem !important;
        transform: none !important;
        box-shadow: 0 1rem 2.5rem rgba(255, 0, 47, 0.5);
    }

    .mobile-fixed-cta:hover {
        transform: none !important;
    }

    .mobile-fixed-cta span {
        font-size: 1.45rem !important;
    }
}
