* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

.header {

    padding: 10px;

    text-align: center;

}

.header h2 {
    font-size: 32px;
    font-weight: 500;

}

.header p {
    font-size: 15px;

}

.top_container {
    display: flex;
}

.main-image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.main-image-container img {
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.main-image-container img:hover {
    transform: scale(1.1)
}

/*main_img_content*/

.main_img_content,
p {

    padding: 10px;

}

i {
    color: #FEDBAB;
    padding-right: 5px;
}

hr {

    height: 1px;

    border: none;

    background-color: black;

    margin: 20px 0;

}

.main_img_content h4 {

    font-weight: 300;

    font-size: 32px;

    padding-left: 10px;

}

.price {

    display: flex;

    gap: 20px;

    padding: 10px;

    font-size: 24px;

    font-weight: bold;

}

s {

    font-size: 14px;

    margin-top: 10px;

    color: #999;

}

.bg {

    background-color: orange;

    color: white;

    padding: 10px;

    font-size: 18px;

    min-width: 25%;

    text-align: center;

    margin-left: 20px;

}

.png {

    display: flex;

    gap: 20px;

    overflow: auto;

    scroll-snap-type: x mandatory;

    scroll-behavior: smooth;

    padding: 20px;

    justify-content: space-evenly;

}

.png div {

    text-align: center;

    /* max-width: 150px; */

}

.png img {

    height: auto;

    width: 100%;

    border-radius: 8px;

    margin-bottom: 10px;

}

.png figcaption {

    font-size: 14px;

    color: #555;

    line-height: 1.4;

    font-weight: 400;

}

.bg_black {

    display: flex;

    background-color: black;

    color: white;

    padding: 10px;

    border-radius: 50px;

    width: 50px;

    margin-left: 20px;

}

.centered-text {

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 20px 0;

    gap: 10px;

}

.centered-text hr {

    flex-grow: 1;

    height: 0.1px;

    background-color: black;

    border: none;

}

.centered-text span {

    font-size: 16px;

    font-weight: bold;

    color: black;

    white-space: nowrap;

}

/*form_control*/

.form_control {

    display: grid;

    grid-template-columns: 1fr 3fr 1fr;

    align-items: center;

    gap: 10px;

    padding: 10px;

    border: 1px solid #ccc;

    border-radius: 8px;

    margin: 20px;

}

.form_control:hover {
    border: 1px solid black;
}


.form_control input[type="radio"] {

    margin: 0;

    cursor: pointer;

    width: 20px;

    height: 20px;

}



.form_control .form_text {

    font-size: 24px;

    line-height: 1.5;

    color: #333;

}



.form_control .form_text p:first-child {

    font-weight: bold;

}



.form_control .form_text p:last-child {

    color: #999;

    font-weight: 600;

    font-size: 14px;

}



.form_control .form_price {

    text-align: right;

    font-size: 24px;

    line-height: 1.5;

    font-weight: bold;

}



.form_control .form_price s {

    font-size: 14px;

    color: #999;

    margin-left: 5px;

}

.video-container {
    display: none;
}

details {

    margin: 20px 10px;
    cursor: pointer;

}

summary {
    font-size: 24px;
}

details p {
    font-size: 20px;
}

/*png section*/
.png_bg {

    background-color: #F7EBDA;
    margin: 30px 0;
    text-align: center;

}

.png_bg h3 {
    font-size: 32px;
    font-weight: 400;
    padding: 60px 50px;
}

.png_img_container {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    align-items: center;

    padding: 20px 0;

    width: 100%;

}



.png_img_container div {

    text-align: center;

    max-width: 150px;

    flex: 1 1 calc(20% - 20px);

}



.png_img_container img {

    width: auto;

    height: 50px;

    border-radius: 8px;

    margin-bottom: 10px;

    margin-top: 20px;

}



.png_img_container figcaption {

    font-size: 14px;

    color: #555;

    line-height: 1.4;

    font-weight: 400;

}

.btn {

    padding: 10px 20px;

    margin: 40px;

    font-size: 20px;
    font-weight: 500;

    color: black;

    background-color: white;

    border: 1px solid black;

    border-radius: 5px;

    cursor: pointer;

    overflow: hidden;

    position: relative;

}



.btn::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background-color: #204E3C;



    z-index: 0;

    transition: all 0.5s ease-in-out;

}

.btn:hover {
    color: #FFFFFF;
}

.btn:hover::before {

    left: 0;

}



.btn span {

    position: relative;

    z-index: 1;

}

/*More info section*/
.main_div {

    display: flex;

}

.more_info_section {

    margin: 20px 0;

    padding: 15px;

    background-color: #f9f9f9;

    border: 1px solid #ddd;

    border-radius: 8px;

}



.more_info_section .main_div {

    display: flex;

    flex-direction: column;

    gap: 15px;

}



.more_info_section .para {

    font-weight: bold;

    font-size: 16px;

    padding: 10px;

    background-color: #fff;

    border: 1px solid #ccc;

    border-radius: 6px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.more_info_section .para:hover {

    background-color: #f2f2f2;

}



.more_info_section .more_info p {

    margin: 10px 0;

    font-size: 14px;

    line-height: 1.5;

    padding-left: 20px;

    color: #555;

}



.more_info_section .more_info p:first-child {

    margin-top: 0;

}



.more_info_section .more_info {

    border-left: 4px solid orange;

    padding-left: 15px;

}

/* Red Content */

.red_content {

    background-color: #CF5950;

    padding: 20px;

    margin-top: 30px;

}



.red_para {

    margin: 0 auto;

    padding: 20px 40px;

    text-align: center;

    max-width: 800px;

}

.red_para h3 {
    margin-top: 30px;
    font-size: 32px;
    color: #FFFEFE;
}

.red_para p {
    padding: 20px;
    font-size: 20px;
    color: #FFFEFE;
}

.red_content_box {

    display: flex;

    overflow: hidden;

    position: relative;

    width: 100%;

    height: auto;

    margin-bottom: 50px;

}

.white_main {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
}

.white_box {

    background-color: #FFFDF4;

    padding: 20px;

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    flex: 0 0 30%;

    max-width: 100%;

    transition: transform 0.3s ease;

    overflow: hidden;

}

.white_box h4 {
    font-size: 24px;
    padding: 10px 0;
    text-align: center;
}

.white_box p {

    font-size: 18px;

    text-align: justify;

    overflow: hidden;

    padding: 0 40px;

    margin: 0 auto;

}



.red_content_box_buttons {

    display: none;

    justify-content: space-between;

    position: absolute;

    top: 50%;

    width: 100%;

    transform: translateY(-50%);

}



.red_content_box_buttons button {

    background-color: black;

    color: white;

    border: none;

    padding: 10px 20px;

    cursor: pointer;

    opacity: 0.8;

    transition: opacity 0.3s ease;

}



.red_content_box_buttons button:hover {

    opacity: 1;

}

/*cosmos section*/

.main_div_cosmos {
    display: flex;
    align-items: flex-start;
}

.cosmos h3 {
    font-size: 38px;
    font-weight: 300;
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
}

.cosmos {
    background-color: #FFEFEA;
}

.natural {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px auto;
    width: 100%;
}

.natural_img {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 45%;
}

.natural_img img {
    width: 60%;
    margin: 10px 0;
}

.cosmos_natural {
    max-width: 65%;
    margin: 10px 0;
}

.cosmos_natural h4 {
    font-weight: bold;
    font-size: 20px;
}

.cosmos_natural p,
.organic p {
    font-size: 18px;
    font-family: sans-serif;
    line-height: 1.5;
    word-spacing: 0.1em;
    text-align: justify;
}

.organic {
    text-align: center;
    padding: 40px 0;
    background-color: #ECDFDF;
}

.organic h3 {
    font-size: 38px;
    font-weight: 300;
    padding: 30px 0;
    text-align: center;
}

.certified {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-top: 20px;
}

.certified div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    width: 150px;
}

.certified img {
    width: 40%;
    padding-bottom: 10px;
}

.certified p {
    text-align: center;
    font-size: 14px;
}

/* last_div */

.last_div {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    margin: 30px auto;
}

/* final */

.final {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.last_flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.last_box {
    background-color: #FDDDD3;
    padding: 20px;
    margin-left: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 0 0 50%;
    max-width: 29%;
    max-height: 600px;
    height: auto;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.last_box h3 {
    font-size: 28px;
    padding: 20px;
}

.last_box p {
    font-size: 18px;
    text-align: justify;
    padding: 20 40px;
    margin: 0 auto;
}

.last_content_box_buttons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 45%;
    width: 100%;
    transform: translateY(-50%);
}

.last_content_box_buttons button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.last_content_box_buttons button:hover {
    opacity: 1;
}

@media (max-width:1024px) {
    .main-image-container img {
        max-width: 300px;
    }

    .responsive-video,
    .video-container {
        display: none;
    }

    .white_box {
        flex: 0 0 33%;
    }
}

@media (max-width:768px) {
    .top_container {
        display: block;
    }

    .main-image-container {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .main-image-container img {
        max-width: 100%;
        flex: 0 0 auto;
        border-radius: 8px;
        scroll-snap-align: center;
        transform: none;
    }

    .main-image-container img:hover {
        transform: none;
    }

    .responsive_video {
        display: none;
    }

    .video-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .red_content_box_buttons {
        display: flex;
    }

    .white_box {
        flex: 0 0 50%;
    }

    .main_div_cosmos {
        flex-direction: column;
    }

    .last_box h3 {
        font-size: 22px;
        padding: 15px;
    }

    .last_box p {
        font-size: 16px;
        text-align: justify;
        padding: 20 30px;
        margin: 0 auto;
    }

    .last_box {
        max-height: auto;
    }
}

@media (max-width:425px) {
    .png_img_container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .png_img_container div {
        flex: 0 0 100%
    }

    .png_bg h3 {
        font-size: 24px;
    }

    .cosmos h3,
    .organic h3 {
        font-size: 24px;
    }

    .natural {
        display: flex;
        flex-wrap: nowrap;
    }

    .natural_img img {
        width: 40%;
        margin: 10px 0;
    }

    .cosmos_natural p,
    .organic p {
        font-size: 16px;
        font-family: sans-serif;
        text-align: justify;
    }

    .certified img {
        width: 40%;
        padding-bottom: 10px;
    }

    .certified p {
        text-align: center;
        font-size: 12px;
    }

    .last_flex {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        width: 80%;
    }

    .last_box {
        background-color: #FDDDD3;
        padding: 20px;
        margin-left: 30px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        flex: 0 0 90%;
        max-width: 90%;
        max-height: auto;
        height: auto;
        transition: transform 0.3s ease;
        overflow: hidden;
    }
}

@media (max-width:375px) {
    .white_box {
        flex: 0 1 auto;
    }

    .last_flex {
        width: 80%;
    }

    .last_box {
        flex: 0 0 100%;
        max-width: 100%;
    }
}