/* Color variables */
:root {
    --text: #000000;
    --body-bg: #f5f5f5;
    --pricing-card-bg: #ffffff;
    --pricing-card-featured: #e77b00;
    --pricing-card-featured-bg: #fffae4;
    --card-header-bg: #154772;
    --card-header-text: #ffffff;    
    --price-value: #005D64;
    --price-features-separator: #e0e0e0;
    --checkmark: #228b22;
    --button-gradient-light: #FFD814;
    --button-gradient-dark: #FCCD16;
    --button-border: #caa433;
    --feature-highlight: #0e6d0e;
    --shipping: #c92a3a;
    --warning-bg: #ad202e;
    --banner-bg-light: #105694;
    --banner-bg-dark: #104c80;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', Helvetica, sans-serif;
    background-color: var(--body-bg);
    min-height: 100vh;
}

.header-banner {
    width: 100%;
    text-align: center;
    margin: 40px auto;
    color: var(--card-header-bg);
}

.header-banner h2 {
    font-size: 40px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--pricing-card-bg);
    width: 320px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.pricing-card.featured {
    border: 3px solid var(--pricing-card-featured);
    transform: scale(1.02);
    z-index: 1;
}

/* Header styles */
.card-header {
    background: var(--card-header-bg);
    color: var(--card-header-text);
    text-align: center;
    padding: 20px 20px 35px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
    border-radius: 8px 8px 0 0;
}

.pricing-card.featured .card-header {
    background: var(--pricing-card-featured);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
    border-radius: 4px 4px 0 0;
}

.card-header h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.card-header p {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card body */
.card-body {
    padding: 30px 25px 20px;
    text-align: center;
}

.pricing-card.featured, .pricing-card.featured .card-body {
    background: var(--pricing-card-featured-bg);
}

/* Product images */
.product-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 20px;
    min-height: 120px;
}

.product-images img {
    height: 200px;
    object-fit: contain;
}

/* Price styling */
.price-section {
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price .currency {
    font-size: 32px;
    color: var(--price-value);
    font-weight: bold;
}

.price .amount {
    font-size: 64px;
    color: var(--price-value);
    font-weight: bold;
    line-height: 1;
}

.price .per-bottle {
    font-size: 14px;
    color: var(--text);
    font-weight: bold;
    margin-left: 5px;
    text-align: left;
    line-height: 1.2;
}

/* Features list */
.features {
    text-align: left;
    margin-bottom: 20px;
    border-top: 1px solid var(--price-features-separator);
    padding-top: 15px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

.feature .checkmark {
    color: var(--checkmark);
    margin-right: 10px;
    font-size: 16px;
}

.feature.highlight {
    color: var(--feature-highlight);
}

.feature.save {
    font-weight: 800;
}

.buy-button {
    background: linear-gradient(
        to bottom, 
        var(--button-gradient-light) 0%, var(--button-gradient-light) 50%,
        var(--button-gradient-dark) 50%, var(--button-gradient-dark) 100%
    );
    
    border: 2px solid var(--button-border);
    border-radius: 8px;
    
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
    
    padding: 10px;
    width: 100%;
    max-width: 540px;
    margin-bottom: 16px;
    display: inline-block;
    text-align: center;
    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.1s ease;
}

.buy-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.buy-button:hover {
    filter: brightness(1.05);
}

.featured-button {
    animation: pulse 2s infinite;
}

.guarantee-badge {
    position: absolute;
    top: 60px;
    right: 20px;
    animation: pulse 2s infinite;
    width: 80px;
    height: 80px;
}

@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.05)}}


/* Payment cards */
.payment-cards {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
    height: 32px;
}

/* Total pricing */
.total-section {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.total-section .label {
    color: var(--text);
    font-weight: 400;
    text-transform: uppercase;
}

.total-section .original-price {
    color: var(--text);
    text-decoration: line-through;
    font-weight: 400;
}

.total-section .new-price {
    color: var(--feature-highlight);
    font-size: 20px;
}

.shipping {
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
}

.shipping.paid {
    color: var(--shipping);
}

.shipping.free {
    color: var(--feature-highlight);
}

.warning {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 48px auto;
    padding: 24px 24px;
    background-color: var(--warning-bg);
    color: #f5f5f5;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.6rem;
}

.trigger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 48px auto;
    padding: 24px;
    font-size: 20px;
}

.trigger-container {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

.trigger h2 {
    color: var(--card-header-bg);
    margin-bottom: 16px;
    font-size: 32px;
    text-align: center;
    max-width: 840px;
}

.trigger ul {
    list-style: none;
    margin-bottom: 24px;
}

.trigger li {
    margin-top: 16px;
    text-transform: uppercase;
}

.trigger ul li span {
    margin-right: 8px;
}

.trigger p {
    margin-bottom: 32px;
    font-weight: 700;
    color: var(--warning-bg);
}

.banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 48px auto;
    padding: 48px 24px;
    background: linear-gradient(to right, var(--banner-bg-dark), var(--banner-bg-light));
}

.banner-container h2, .banner-container li {
    color: var(--body-bg);
}

.banner-container h2 {
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    color: var(--button-gradient-light);
}

.banner-container h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--body-bg);
}

.banner-container .product {
    display: flex;
    align-items: center;
    gap: 32px;
}

.product .bottle {
    width: 130px;
}

.product ul {
    list-style: none;
}

.product ul li {
    margin-bottom: 8px;
}

.banner-container .seals {
    display: flex;
    gap: 16px;
}

.banner-container .seals img {
    height: 110px;
}

.banner-container p {
    margin: 24px auto;
    max-width: 860px;
    color: var(--body-bg);
    font-size: 18px;
    line-height: 1.5rem;
}

.vturb-button {
    max-width: 400px;
    display: block;
    margin: 24px auto;
    background: none;
    border-color: var(--banner-bg-light);
    background-color: var(--banner-bg-dark);
    color: var(--body-bg);
    font-weight: 400;
}

.vturb-button:hover {
    background-color: var(--banner-bg-light);
}

.stock-counter {
    display: block;
    width: 300px;
    margin: 24px auto;
    color: darkred;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

footer {
    padding: 0 24px 64px 24px;
    text-align: center;
    font-size: 14px;
    background-color: var(--body-bg);
}

footer img {
    height: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-banner h2 {
        font-size: 32px;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }

    .banner-container .seals img {
        height: 96px;
    }

    .banner-container h2, .trigger h2 {
        font-size: 38px;
    }

    .trigger-container {
        flex-direction: column;
        align-items: center;
    }

    .trigger-container img {
        width: 200px;
        height: auto;
    }
}