:root {
    --primary-color: #d14271;
    --light-pink: #fbebf0;
    --green-cta: #3fb040;
    --green-cta-hover: #359836;
    --text-dark: #333333;
    --text-gray: #666666;
    --red-strike: #e53935;
    --yellow-star: #facc15;
    --orange-alert: #ef4444; /* Alert color */
    --gray-skip: #999999;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.5;
    padding-bottom: 50px;
}

.alert-bar {
    background-color: var(--orange-alert);
    color: white;
    text-align: center;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
}

.main-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 15px;
    text-align: center;
}

.main-headline {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.main-headline .black-bg {
    font-weight: 900;
    color: #000;
}

.sub-headline {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.4;
}

.sub-headline b {
    font-weight: 800;
}

.old-price-text {
    color: var(--red-strike);
    font-weight: 700;
    text-decoration: line-through;
}

.new-price-text {
    color: var(--green-cta);
    font-weight: 800;
}

/* Offer Card */
.offer-card {
    position: relative;
    margin-bottom: 25px;
    padding: 10px 20px;
}



.mockup-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Pre list config */
.pre-list-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 45px;
    line-height: 1.4;
}

.pink-bg {
    background-color: #7b1fa2; /* fallback, wait. The Purple bg was from original, let's match the pink */
    background-color: var(--primary-color);
    color: white;
    padding: 2px 8px;
    display: inline-block;
    margin: 4px 0;
    font-size: 20px;
    font-weight: 800;
}

/* Benefits List - Image 3 Style */
.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.check-icon {
    display: inline-block;
    min-width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;utf8,<svg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><circle cx='10' cy='10' r='10' fill='%23fbebf0'/><path d='M6 10l3 3 5-5' stroke='%23d14271' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    margin-top: 0;
}

/* Bonus Section - Image 4 Style */
.bonus-section {
    background-color: var(--light-pink);
    border: 1px dashed rgba(209, 66, 113, 0.4);
    border-radius: 12px;
    padding: 20px 15px;
    margin-bottom: 30px;
}

.bonus-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-align: center;
}

.gift-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml;utf8,<svg width='20' height='20' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path fill='%23d14271' d='M20 6h-2.18c.11-.31.18-.65.18-1a3 3 0 0 0-3-3c-1.08 0-2.03.57-2.58 1.42L12 4.16l-.42-.74C11.03 2.57 10.08 2 9 2a3 3 0 0 0-3 3c0 .35.07.69.18 1H4c-1.11 0-2 .89-2 2v3c0 1.11.89 2 2 2v8c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2v-8c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4 16H6v-8h5v8zm0-10H4V8h7v2zm7 10h-5v-8h5v8zm2-10h-7V8h7v2z'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}

.bonus-separator {
    border-bottom: 1px dashed rgba(209, 66, 113, 0.3);
    margin-bottom: 15px;
}

.bonus-list {
    list-style: none;
    text-align: left;
}

.bonus-list li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.bonus-list li:last-child {
    margin-bottom: 0;
}

.gift-icon-small {
    display: inline-block;
    min-width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml;utf8,<svg width='16' height='16' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path fill='%23d14271' d='M20 6h-2.18c.11-.31.18-.65.18-1a3 3 0 0 0-3-3c-1.08 0-2.03.57-2.58 1.42L12 4.16l-.42-.74C11.03 2.57 10.08 2 9 2a3 3 0 0 0-3 3c0 .35.07.69.18 1H4c-1.11 0-2 .89-2 2v3c0 1.11.89 2 2 2v8c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2v-8c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4 16H6v-8h5v8zm0-10H4V8h7v2zm7 10h-5v-8h5v8zm2-10h-7V8h7v2z'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
}

/* Price Section */
.price-block {
    margin-bottom: 20px;
}

.price-from {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.strike {
    color: var(--red-strike);
    text-decoration: line-through;
}

.price-to {
    color: var(--green-cta);
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align bottom to sync Rs and 19 visually */
    line-height: 1;
    margin: 5px 0;
}

.price-to .currency {
    font-size: 32px;
    margin-right: 2px;
    margin-bottom: 5px;
}

.price-to .value {
    font-size: 70px;
    letter-spacing: -2px;
}

.price-to .cents {
    font-size: 40px;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.payment-type {
    font-size: 14px;
    color: #999;
}

/* CTA */
.cta-button {
    display: block;
    background-color: var(--green-cta);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    padding: 16px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(63, 176, 64, 0.3);
    transition: background-color 0.3s, transform 0.1s;
    margin-bottom: 20px;
}

.cta-button:hover {
    background-color: var(--green-cta-hover);
}

.cta-button:active {
    transform: scale(0.98);
}


.skip-link {
    display: inline-block;
    background-color: var(--gray-skip);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.skip-link:hover {
    background-color: #888;
}
