:root {
    --primary: #ff4757;
    --secondary: #00C2FF;
    --accent: #2ecc71;
    --dark: #2d3436;
    --light: #f9f9f9;
    --white: #ffffff;
    --font-main: 'Nunito', sans-serif;
    --font-header: 'Fredoka', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.6;
    background-color: #f0f7ff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}

/* Header / Discount Banner */
.discount-header {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: white;
    text-align: center;
    padding: 0.8rem 1rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.15);
}

.discount-header h1 {
    font-family: var(--font-header);
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.discount-header p {
    font-size: 0.85rem;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 500;
    opacity: 0.9;
}

.discount-tag {
    display: inline-block;
    background: #FFD93D;
    color: #d35400;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    transform: rotate(-1deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Product Section */
.product-display {
    text-align: center;
    margin-top: -2rem;
}

.product-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Offer Box */
.offer-box {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    margin: 0.5rem 0 2rem 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    border: 3px solid #eee;
    text-align: center;
    position: relative;
}

.price-comparison {
    margin-bottom: 1.5rem;
}

.old-price {
    font-size: 1.2rem;
    color: #95a5a6;
    text-decoration: line-through;
}

.new-price {
    font-family: var(--font-header);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.new-price .symbol {
    font-size: 1.5rem;
    margin-top: -1.5rem;
}

.new-price .value {
    line-height: 1;
}

.discount-value-highlight {
    background: #fff5d7;
    color: #e67e22;
    padding: 0.2rem 0.8rem;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* CTA Button */
.cta-button {
    display: block;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 1rem 0;
    text-transform: uppercase;
    border: none;
}

.cta-button:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.5);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Bonus List */
.bonus-section {
    margin-top: 3rem;
}

.bonus-title {
    font-family: var(--font-header);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.bonus-item {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bonus-item img {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 10px;
}

.bonus-item h4 {
    font-size: 0.85rem;
    line-height: 1.2;
}

.bonus-badge {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.7rem;
}

/* Features List */
.features-list {
    text-align: left;
    margin: 2rem auto;
    max-width: 500px;
    list-style: none;
}

.features-list li {
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Mobile Fixes */
@media (max-width: 600px) {
    .discount-header {
        padding: 0.6rem 0.5rem;
    }

    .discount-header h1 {
        font-size: 1rem;
    }

    .discount-header p {
        font-size: 0.75rem;
    }

    .new-price {
        font-size: 3rem;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 1.2rem;
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}