* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HEADER */

header {
    background: rgba(194, 49, 41, 0.90);
}

.header_container {
    max-width: 600px;
    width: 100%;
    padding: 10px 0;
    display: flex;
    margin: auto;
    align-items: center;
    gap: 80px;
}

.header_text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header_text p {
    color: #FFF;
    text-align: right;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 100% */
    margin-bottom: 4px;
}

.header_text span {
    color: #FFF;
    text-align: right;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.4px;
    /* 102.5% */
}


.header_counter {
    display: flex;
    gap: 16px;
    align-items: center;
}

.counter {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    background: #FFF;
}

.order_btn:hover {
    background-color: #D93C33;
}

.counter p {
    color: #252A32;
    text-align: center;
    font-family: Poppins;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.28px;
}

/* MAIN */

main {
    padding: 24px 0 48px 0;
}

.main_container {
    max-width: 1170px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_title {
    max-width: 530px;
    width: 100%;
    display: flex;
    gap: 175px;
}

.main_title img {
    width: 153px;
    height: auto;
}

.main_title button {
    display: flex;
    width: 200px;
    height: 48px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    background: #C23129;
    box-shadow: 0 1px 4px 1px rgba(37, 42, 50, 0.32);
    color: #F6F9FE;
    text-align: center;
    font-family: "Open Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 26.4px;
    /* 120% */
    letter-spacing: 0.28px;
    border: none;
    cursor: pointer;
}

.main_content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 29px;
    margin-top: 32px;
}

.main_images {
    max-width: 575px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
}

.main_principal_image {
    max-width: 575px;
    height: auto;
}

.main_principal_image img {
    width: 100%;
    height: auto;
}

.main_secondary_images {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.main_secondary_images img {
    width: 80px;
    height: auto;
    border-radius: 16px;
}

/* images selected */

.main_secondary_images img {
    width: 80px;
    height: auto;
    border-radius: 16px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.25s ease;
}

.main_secondary_images img:hover {
    opacity: 1;
}

.main_secondary_images img.active-thumb {
    border: 2px solid #000;
    opacity: 1;
}

.main_text {
    max-width: 570px;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.main_rating {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    gap: 16px;
}

.main_rating img {
    width: 95px;
    height: auto;
}

.main_rating p {
    color: #303030;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 100% */
}

h1 {
    color: #000;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 38.4px;
    /* 120% */
}

h1 span {
    text-decoration-line: underline;
}

.main_prices {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.price {
    color: #F00;
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.old-price {
    color: #303030;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: line-through;
    margin: 16px 40px 16px 8px;
}

.save {
    display: flex;
    width: 160px;
    height: 28px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 25px;
    background: #C23129;
}

.main_text h2 {
    color: #303030;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    /* 170% */
}

.main_list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-top: 8px;
}

.main_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main_item img {
    width: 23px;
    height: 23px;
}

.main_item p {
    color: #303030;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30.6px;
    /* 170% */
}

.main_btn {
    display: flex;
    height: 56px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 550px;
    background: #C23129;
    box-shadow: 0 1px 4px 1px rgba(37, 42, 50, 0.32);
    border: none;
    cursor: pointer;
    color: #F6F9FE;
    text-align: center;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
    letter-spacing: 0.28px;
    margin: 16px 0 24px 0;
}

.cards {
    max-width: 240px;
    width: 100%;
    height: auto;
    margin: auto;
}

.main_review {
    display: flex;
    padding: 9px 19px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.00);
    box-shadow: -1.364px 1.463px 5px 3px rgba(164, 164, 164, 0.27);
    margin-top: 24px;
}

.main_review_user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main_review_user img {
    width: 60px;
    height: auto;
}

.user {
    display: flex;
    flex-direction: column;
}

.user p {
    color: #303030;
    font-family: Poppins;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 32.3px;
    /* 170% */
}

.verified {
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified img {
    width: 22px;
    height: 22px;
}

.verified p {
    color: #00A3EE;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.9px;
    /* 170% */
}

.review_text {
    color: #303030;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 21.6px;
    /* 120% */
}

/* 1st, 2nd, 3rd, 4th, 5th, 6th section */

.bg {
    background: #FEECED;
}

.section_container {
    max-width: 1170px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.text_section {
    max-width: 520px;
    width: 100%;
}

.text_section h3 {
    color: #C23129;
    text-align: center;
    font-family: Poppins;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 31.2px;
    /* 120% */
}

.text_section h3 span {
    color: #000;
    font-family: Poppins;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 31.2px;
}

.info_section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.info_section p {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 31.2px;
    /* 164.211% */
}

.info_section p span {
    color: #000;
    font-family: Poppins;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 31.2px;
}

.info_section_sixth {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.info_section_sixth p {
    color: #000;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-align: center;
}

.info_section_sixth p span {
    color: #C23129;
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 31.2px */
}

.image_section {
    max-width: 480px;
    width: 100%;
    height: auto;
}

.image_section img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.text_section button {
    display: flex;
    padding: 14px 105px 13px 105px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 60px;
    background: #C23129;
    box-shadow: 0 1px 4px 1px rgba(37, 42, 50, 0.32);
    border: none;
    color: #F6F9FE;
    text-align: center;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28.8px;
    /* 120% */
    letter-spacing: 0.28px;
    margin: auto;
    margin-top: 40px;
}

.offer_ends {
    color: #636A7B;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    /* 100% */
    margin-top: 16px;
}

.offer_ends span {
    color: #D0021B;
    font-weight: 700;
}

/* FIRST REVIEWS SECTION */

.reviews_container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 40px 0;
}

.reviews_title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 578px;
    margin: auto;
    align-items: center;
}

.reviews_title h3 {
    color: #000;
    text-align: center;
    font-family: Roboto;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36.4px;
    /* 130% */
}

.reviews_title img {
    width: 168px;
    height: auto;
}

.reviews {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.review-card {
    max-width: 370px;
    width: 100%;
    height: 700px;
    border-radius: 24px;
    box-shadow: 0 0 10px 1px #9DB2BF;
    display: flex;
    flex-direction: column;
}

.review-img {
    max-width: 370px;
    width: 100%;
}

.review-img img {
    width: 100%;
}

.review-rating {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.review_rating_stars {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

.review-name {
    display: flex;
    gap: 8px;
}

.review-name img {
    width: 21px;
    height: auto;
}

.review-name p {
    color: #303030;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 100% */
}

.review-text {
    color: #303030;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 20.8px */
    margin-top: 8px;
}

.reviews_btn {
    display: flex;
    width: 342px;
    height: 56px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    border: 2px solid #C23129;
    background: rgba(255, 255, 255, 0.00);
    box-shadow: 0 0 6px 0 #F7FFF8;
    color: #C23129;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
    letter-spacing: 0.28px;
    cursor: pointer;
    margin: auto;
}

/* FAQS */

.faqs_section {
    padding: 40px 0;
}

.faqs_container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faqs_container h2 {
    color: #303030;
    text-align: center;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
}

.faq_container {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;
}

.faq {
    width: 575px;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.question h3 {
    color: #303030;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.answer {
    margin-top: 8px;
}

.answer p {
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* FAQS ACCORDION */
/* Hide the response with a smooth transition */
.answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease;
    will-change: max-height, opacity;
    margin-top: 0;
}

/* If you already have .answer-hidden in the HTML, make it the same as collapsed*/
.answer-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

/* When the FAQ is open */
.faq.open .answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 8px;
}

/* Icon animation (arrow) */
.question svg {
    transition: transform .25s ease;
}

.faq.open .question svg {
    transform: rotate(180deg);
}

/* FAQ DATA */

.faqs_data_container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    margin-top: 60px;
}

.faqs_data_container p {
    color: #303030;
    text-align: center;
    font-family: Roboto;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    /* 100% */
    margin-bottom: 24px;
}

.faqs_data {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.data {
    max-width: 390px;
    width: 100%;
    display: flex;
    gap: 24px;
    align-items: center;
}

.data img {
    width: 136px;
    height: auto;
}

.data p {
    color: #303030;
    font-family: Roboto;
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 29.9px;
    /* 130% */
    text-align: left;
    margin-bottom: 0;
}

/* PRODUCTS */

.products_wrapper {
    padding: 40px 0;
}

.products_container {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product_card {
    max-width: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid #444;
    background-color: #FFF;
    padding-bottom: 24px;
    transition: 0.3s all ease-in;
    cursor: pointer;
}

.product_card:hover {
    transform: scale(1.02);
}

.product_title {
    width: 100%;
    background-color: #878787;
    padding: 16px;
}

.product_title p {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    /* 100% */
}

.product_quantity {
    color: #303030;
    text-align: center;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    margin-top: 24px;
    margin-bottom: 8px;
}

.product_rating {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.product_rating p {
    color: #303030;
    text-align: center;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    /* 100% */
}

.product_rating img {
    width: 90px;
    height: auto;
}

.product_image {
    max-width: 216px;
    width: 100%;
    margin: auto;
    margin-top: 24px;
}

.product_image img {
    width: 100%;
}

.product_prices {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin: auto;
    text-align: center;
    width: 180px;
    margin-top: 16px;
    margin-bottom: 24px;
    height: 125px;
}

.bottle_price {
    color: #F00;
    font-family: Roboto;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.bottle_price span {
    text-decoration-line: underline;
    font-weight: 700;
}

.product_total {
    color: #303030;
    text-align: center;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    /* 100% */
    width: 160px;
    margin: auto;
}

.product_total span {
    text-decoration-line: line-through;
}

.product_save {
    color: #4A4A4A;
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 100% */
}

.product_btn {
    display: flex;
    height: 48px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 4px;
    background: #878787;
    color: #F6F9FE;
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 100% */
    letter-spacing: 0.36px;
    cursor: pointer;
    width: 216px;
    margin: auto;
    border: none;
}

/* PRODUCT ACTIVE */

.product_card.active {
    border-color: #3CB371;
}

.product_card.active .product_title {
    background-color: #3CB371;
}

.product_card.active .product_btn {
    background-color: #3CB371;
}

/* SECOND REVIEWS */

.second_reviews {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;
}

.second_review-card {
    max-width: 270px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 0 10px 1px #9DB2BF;
    display: flex;
    flex-direction: column;
}

.second_review-img {
    max-height: 340px;
    max-width: 270px;
}

.second_review-img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 2;
}

.second_review-rating {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.second_review-rating img {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

.second_review-name {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.second_review-name img {
    width: 21px;
    height: auto;
    margin-bottom: 0;
}

.second_review-name p {
    color: #303030;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 100% */
}

.second_review-text {
    color: #303030;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 20.8px */
}

.second_reviews_btn {
    display: flex;
    padding: 14px 105px 13px 105px;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    background: #C23129;
    box-shadow: 0 1px 4px 1px rgba(37, 42, 50, 0.32);
    border: none;
    cursor: pointer;
    color: #F6F9FE;
    text-align: center;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28.8px;
    /* 120% */
    letter-spacing: 0.28px;
    margin: auto;
    margin-top: 48px;
}

/* CUSTOMER SERVICE */

.customer_wrapper {
    padding: 40px 0;
}

.customer_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.customer_container h2 {
    color: #303030;
    text-align: center;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 100% */
    margin: auto;
    margin-bottom: 16px;
}

.customer_info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.customer_info p {
    color: #303030;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 23.4px */
}

.customer_info img {
    width: 146px;
    height: auto;
    margin: auto;
}

button {
    cursor: pointer;
}

.hidden-on-desktop {
    display: none;
}

/* RESPONSIVE DESIGN */

@media (max-width: 475px) {

    .main_content,
    .faqs_data,
    .products_container {
        flex-direction: column;
        width: 90%;
    }

    .section_container,
    .faqs_container {
        flex-direction: column-reverse;
        gap: 24px;
        width: 90%;
    }

    .reviews_container,
    .customer_container {
        width: 90%;
        margin: auto;
    }

    .column {
        flex-direction: column;
    }

    .reviews_title {
        width: 100%;
    }

    .main_title {
        justify-content: center;
    }

    .main_title button {
        display: none;
    }

    .header_container {
        padding: 16px;
        justify-content: space-between;
        gap: 0;
    }

    .header_text p {
        font-size: 12px;
    }

    .header_text span {
        font-size: 10px;
    }

    .main_title img {
        width: 102px;
    }

    .main_secondary_images img {
        width: 56px;
    }

    .old-price {
        margin: 16px 26px 16px 8px;
    }

    .hidden-on-desktop {
        display: flex;
    }

    .money-back-p {
        color: #C23129;
        text-align: center;
        font-family: Poppins;
        font-size: 17px;
        font-style: italic;
        font-weight: 400;
        line-height: 28.9px;
        /* 170% */
        margin: auto;
        margin-top: 8px;
    }

    .text_section button,
    .second_reviews_btn {
        padding: 14px 88px 13px 89px;
    }

    .reviews {
        flex-direction: column;
        margin: 40px auto;
    }

    .review-card {
        height: auto;
    }

    .hidden-on-mobile {
        display: none;
    }

    .products_container {
        align-items: center;
        gap: 32px;
    }

    /* Card 2 first */
    .products_container .product_card:nth-child(2) {
        order: 1;
    }

    /* Card 3 second */
    .products_container .product_card:nth-child(3) {
        order: 2;
    }

    /* Card 1 third */
    .products_container .product_card:nth-child(1) {
        order: 3;
    }

    .second_reviews {
        justify-content: center;
    }

    .second_review-card {
        max-width: 90%;
        border-radius: 30px;
    }

    .second_review-img {
        max-height: 385px;
        max-width: 100%;
    }

    .second_review-img img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 0;
    }

}