:root {
    /* Pastel / Playful Palette */
    --bg-cream: #FFF9FB;
    --primary-pink: #FFC2D1;
    --primary-blue: #BDE0FE;
    --accent-pink: #FB6F92;
    --accent-blue: #A2D2FF;
    --accent-green: #4ADE80;
    --text-dark: #4A4A4A;
    --text-light: #888888;
    --white: #FFFFFF;

    /* UI Elements */
    --radius-xl: 30px;
    --radius-pill: 50px;
    --shadow-soft: 0 10px 30px rgba(251, 111, 146, 0.15);
    --shadow-hover: 0 15px 40px rgba(251, 111, 146, 0.25);
    --border-soft: 2px solid rgba(0, 0, 0, 0.03);

    /* Spacing */
    --container-width: 1100px;
    --section-padding: 60px 20px;

    /* Transitions */
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', 'Outfit', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

section,
footer,
nav {
    position: relative;
    z-index: 2;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-magic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1), var(--shadow-soft);
    transition: transform 0.2s var(--bounce), box-shadow 0.2s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Shine Effect */
.btn-magic::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-magic:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.15), var(--shadow-hover);
}

.btn-magic:active {
    transform: translateY(2px);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1), var(--shadow-soft);
}

.btn-green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    /* Brighter, more inviting green */
    box-shadow: 0 6px 0 #15803d, 0 10px 25px rgba(34, 197, 94, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    /* Softer text shadow */
    letter-spacing: 0.5px;
    font-size: 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    /* Glassy border */
}

.btn-green:hover {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    box-shadow: 0 8px 0 #15803d, 0 15px 35px rgba(34, 197, 94, 0.5);
    transform: translateY(-3px) scale(1.02);
}

/* Sticky Header */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 15px 0;
}

nav.sticky {
    background: rgba(255, 249, 251, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(to right, var(--accent-pink), var(--accent-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

/* Hero */
#hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 120px;
    /* More space for header */
    padding-bottom: 60px;
}

.badge-viral {
    display: inline-block;
    background: #000;
    color: #fff;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Single Offer Card */
.offer-card-single {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: var(--border-soft);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    width: 100%;
}

.offer-preview-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto 25px;
    display: block;
    transition: opacity 0.3s ease;
}

.qty-selector {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.qty-option {
    flex: 1;
    min-width: 100px;
    border: 2px solid #eee;
    border-radius: 18px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: #fff;
}

.qty-option:hover {
    border-color: var(--accent-pink);
    background: rgba(251, 111, 146, 0.05);
}

.qty-option.selected {
    border-color: var(--accent-pink);
    background: rgba(251, 111, 146, 0.1);
    box-shadow: 0 0 0 3px rgba(251, 111, 146, 0.2);
    transform: scale(1.05);
    z-index: 1;
}

.qty-option-1.selected {
    background-color: #f3f4f6 !important;
    border-color: #d1d5db !important;
}

.qty-option-3.selected {
    background-color: #e0f2fe !important;
    border-color: #7dd3fc !important;
}

.badge-best-deal {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-pink);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.price-display {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-pink);
    margin: 20px 0;
    line-height: 1;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-right: 10px;
}

.color-selectors-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.color-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    background: #f9f9f9;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 0.95rem;
}

.color-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: transform 0.2s var(--bounce);
}

.color-dot:hover {
    transform: scale(1.15);
}

.color-dot.active {
    border-color: #4A4A4A;
    transform: scale(1.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pink {
    background: var(--accent-pink);
}

.blue {
    background: var(--accent-blue);
}

/* Review Carousel */
.carousel-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 5px;
    /* Add padding for shadow visibility */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    background: var(--white);
    border-radius: 25px;
    padding: 25px;
    box-shadow: var(--shadow-soft);
    border: var(--border-soft);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.review-img-large {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
}

/* Product Carousel (Specific) */
#product-carousel .review-card {
    padding: 0;
    overflow: hidden;
    height: 350px;
}

#product-carousel img {
    width: 100%;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.bg-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0;
    will-change: transform, opacity;
}

.bubble.pink {
    background: radial-gradient(circle at 30% 30%, rgba(251, 111, 146, 0.4), rgba(251, 111, 146, 0.1));
    box-shadow: 0 0 15px rgba(251, 111, 146, 0.2), inset 0 0 10px rgba(251, 111, 146, 0.2);
    border-color: rgba(251, 111, 146, 0.3);
}

.bubble.blue {
    background: radial-gradient(circle at 30% 30%, rgba(162, 210, 255, 0.4), rgba(162, 210, 255, 0.1));
    box-shadow: 0 0 15px rgba(162, 210, 255, 0.2), inset 0 0 10px rgba(162, 210, 255, 0.2);
    border-color: rgba(162, 210, 255, 0.3);
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-120vh) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

/* FAQ */
.faq-item {
    background: rgba(255, 249, 251, 0.95);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease;
}

.faq-question {
    padding: 16px 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    transition: background 0.2s;
    color: var(--text-dark);
}

.faq-question span {
    font-size: 1.5rem;
    color: var(--accent-pink);
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.faq-item.faq-active .faq-question span {
    color: var(--accent-blue);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.3s ease;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0;
}

.faq-item.faq-active .faq-answer {
    padding-bottom: 16px;
    max-height: 200px;
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    :root {
        --section-padding: 30px 15px;
    }

    .container {
        padding: 0 15px;
    }

    #hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    .offer-card-single {
        padding: 25px;
    }

    .btn-magic {
        width: 100%;
        padding: 18px;
        font-size: 1.2rem;
    }

    .review-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .qty-selector {
        flex-direction: column;
        gap: 10px;
    }

    .qty-option {
        width: 100%;
    }
}