/* Pricing Section Styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #fff3f0;
    --secondary: #6b3e26;
    --accent: #f8a5c2;
    --text-dark: #4a3728;
    --text-light: #8b6f5c;
    --white: #ffffff;
    --gradient-warm: linear-gradient(135deg, #fff3f0 0%, #ffe4dc 100%);
    --shadow-soft: 0 4px 20px rgba(107, 62, 38, 0.1);
    --shadow-medium: 0 8px 30px rgba(107, 62, 38, 0.15);
    --shadow-strong: 0 15px 50px rgba(107, 62, 38, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--primary);
    color: var(--text-dark);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing {
    padding: 100px 24px;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(248, 165, 194, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(107, 62, 38, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 243, 240, 1) 0%, rgba(255, 228, 220, 1) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Geometric Shapes */
.pricing::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(248, 165, 194, 0.35) 0%, rgba(248, 165, 194, 0.1) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(2px);
    z-index: 0;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 260px;
    height: 260px;
    background: linear-gradient(135deg, rgba(107, 62, 38, 0.2) 0%, rgba(107, 62, 38, 0.06) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(2px);
    z-index: 0;
}

/* Floating Cat Stickers */
.pricing-floating-stickers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pricing-sticker {
    position: absolute;
    width: 110px;
    height: auto;
    opacity: 0.08;
    filter: grayscale(30%) sepia(20%) blur(1px);
}

.pricing-sticker-1 {
    top: 8%;
    right: 10%;
    width: 100px;
}

.pricing-sticker-2 {
    top: 35%;
    left: 5%;
    width: 90px;
    transform: scaleX(-1);
}

.pricing-sticker-3 {
    bottom: 10%;
    left: 15%;
    width: 95px;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 32px;
    padding: 48px;
    box-shadow: var(--shadow-strong);
    text-align: center;
    position: relative;
    /* Allow ribbon to stick out */
    overflow: visible;
}

.pricing-badge {
    position: absolute;
    top: 32px;
    right: -12px;
    background: var(--accent);
    color: var(--white);
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: none;
    z-index: 10;
}

/* Ribbon fold effect */
.pricing-badge::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -12px;
    width: 0;
    height: 0;
    border-top: 12px solid #c76e8f;
    /* Darker shade of accent */
    border-right: 12px solid transparent;
}

.pricing-title {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 32px;
}

.bonus-list {
    text-align: left;
    margin-bottom: 32px;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(107, 62, 38, 0.1);
}

.bonus-item:last-child {
    border-bottom: none;
}

.bonus-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bonus-content h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.bonus-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-box {
    background: var(--gradient-warm);
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
}

.price-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 8px;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 12px;
    margin-bottom: 32px;
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: left;
}

.buy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    padding: 20px 36px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-button:hover {
    background: #5a3420;
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

/* Fade Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 20px;
    }

    .pricing-card {
        padding: 40px 24px;
        border-radius: 24px;
        /* Overflow visible needed for ribbon to stick out */
        overflow: visible;
    }

    /* Fix Badge on Mobile */
    .pricing-badge {
        font-size: 12px;
        padding: 6px 16px;
        top: 24px;
        right: -8px;
        width: auto;
        transform: none;
        border-radius: 4px 0 0 4px;
    }

    .pricing-badge::before {
        right: 0;
        bottom: -8px;
        border-top: 8px solid #c76e8f;
        /* Darker shade of accent */
        border-right: 8px solid transparent;
    }

    .pricing-title {
        font-size: 1.5rem;
        margin-top: 10px;
        /* Space for badge */
    }

    .bonus-item {
        padding: 12px 0;
        gap: 10px;
    }

    /* Make price more compact */
    .price-box {
        padding: 24px 20px;
        margin-bottom: 20px;
    }

    .current-price {
        font-size: 2.5rem;
    }

    /* Stack Guarantee Section */
    .guarantee {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }

    .guarantee-text {
        text-align: center;
        font-size: 0.9rem;
    }

    .guarantee-icon {
        font-size: 2.5rem;
    }

    .buy-button {
        padding: 16px 24px;
        font-size: 1.1rem;
    }
}