* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root {
    --body-color: #333;
    --btn-background-color: #D54545;
    --btn-color: #fff;
    --cta-subtitle-color: #333;
    --product-name-color: #0077EE;
    --check-color: #28a745;
    --gradient-center-color: #fff;
    --gradient-edge-color: #FBD5D6;
    --price-card-bg-color: #f9f9f9;
    --price-card-six-bottles-bg-color: #F9F8DA;
    --price-color: #0077EE;
    --best-price-color: #B91C1C;
}

html {
    font-size: 22px;
}

body {
    background-color: #f5f5f5;
    color: var(--body-color);
    max-width: 994px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.header {
    width: 100%;
}

.header img {
    width: 100%;
    height: auto;
}

.container {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    background: radial-gradient(circle, var(--gradient-center-color) 10%, var(--gradient-edge-color) 100%);
}

.main {
    display: flex;
    align-items: center;
    width: 100%;
}

.left-container {
    flex: 1;
    padding: 10px;
    font-size: 1.2rem;
}

.headline {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.product-name {
    color: var(--product-name-color);
    font-weight: bold; 
}

.product-image {
    width: 100%;
    min-width: 240px;
    max-width: 400px;
}

.benefits {
    list-style-type: none;
}

.benefits li {
    margin-bottom: 10px;
}

.check {
    color: var(--check-color);
    font-weight: bolder;
}

.main-text {
    margin-bottom: 20px;
    padding: 0 20px;
    /* text-align: center; */
}

.cta-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.cta-action {
    background-color: var(--btn-background-color);
    color: white;
    font-weight: 500;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s ease;
    text-align: center;
    margin: 0 20px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
}

.cta-action:hover {
    transform: scale(1.1);
}

.cta-subtitle {
    font-weight: bold;
    color: var(--cta-subtitle-color);
    text-align: center;
}

.subtitle-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer {
    font-size: .3rem;
    max-height: 3px;
    background-color: #333;
    overflow: hidden;
}

.price-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.price-card-link .price-card {
    cursor: pointer;
}

.prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0 30px 0;
}

.price-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    min-width: 230px;
    min-height: 405px;
    background-color: var(--price-card-bg-color);
    /* flex: 1; */
}

.price-card:hover {
    background-color: var(--price-card-six-bottles-bg-color);
}
.price-card img {
    max-width: 150px;
}

.basic-bottle-card img {
    max-width: 60px;
}

.price-card .title {
    padding: 15px;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10PX;
}

.bottle-price {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--price-color);
}

.six-bottle-card .bottle-price {
    color: var(--best-price-color);
}

.bottle-price div:nth-child(1) {
    font-size: 54px;
    font-weight: bold;
}

.bottle-price div:nth-child(1) sup {
    font-size: 23px;
    font-weight: bold;
}

.six-bottle-card .bottle-price div:nth-child(1) {
    font-size: 72px;
    font-weight: bold;
}

.six-bottle-card .bottle-price div:nth-child(1) sup {
    font-size: 32px;
    font-weight: bold;
}


.bottle-price div:nth-child(2) {
    font-weight: normal;
    font-size: 14px;
    color: #777;
}

.price-card .cta-action {
    margin: 10px 0;
    /* color: #333333; */
    background-color: #FFCA12;
    background-color: #B91C1C;
    font-size: 20px;
}

.normal-price {
    text-decoration: line-through;
    color: #999;
}

.six-bottle-card {
    min-height: 360px;
    background-color: var(--price-card-six-bottles-bg-color);
}
.six-bottle-card .title {
    background-color: #FFF000;
}

.bonuses-shipping {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px;
    font-size: 18px;
}

.bonuses, .shipping {
    padding: 5px;
    border-radius: 10px;
    background-color: #D4BD2B;
}

.three-bottle-card {
    order: -1;
}



@media (max-width: 768px) {
    .main {
        flex-direction: column-reverse;
    }

    .left-container {
        text-align: center;
    }

    .main-text {
        text-align: center;
    }
        
    .cta-action {
        margin: 0;
    }

    .prices {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        min-height: 180px;
        width: 80%;
        max-width: 320px;
    }

    .six-bottle-card {
        order: -1;
    }
}
