:root {
    --primary-color: #008f53;
}

* {
    box-sizing: border-box;
}
/******* common *******/
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.avatar-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}
.buy-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}
.buy-button:hover {
    background: #007148;
}
.page-container {
    padding-top: 30px;
    padding-bottom: 30px;
}
.page-title {
    text-align: center;
    font-weight: 700;
    font-size: 48px;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: green;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}
.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.product-image-icon img {
   width: 50px;
   height: 50px;
   margin-right: 15px;
}
.quote-mark {
    font-size: 24px;
    color: purple;
}
.testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 3%;
}
.video-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px 15px 0px 0px;
}
.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/******** header ********/
.header-sale {
    background-color: #005b4c;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    padding: 16px;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #007148;
    padding: 16px 0;
    white-space: nowrap;
    position: relative;
}
.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 100s linear infinite;
    transform: translateX(0%);
}
.marquee-content span {
    text-transform: uppercase;
    color: white;
    font-style: initial;
    font-size: 16px;
    margin-right: 100px;
    display: inline-block;
}
@keyframes marquee {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}
.navbar-expand-lg {
    padding: 0 5%;
    border-bottom: 1px solid #ddd;
    padding-top: 16px;
    padding-bottom: 16px;
    min-height: 80px;
}
.navbar-nav .nav-item {
    margin-right: 15px;
}
.navbar-brand img {
    height: 50px;
}
.navbar-nav .nav-item .active {
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 4px;
    padding: 0.5rem 1rem;
}
.icon-links a {
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
    margin-left: 20px;
}
/******** footer ********/
.main-footer-top {
    background-color: #006b3f;
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}
.footer-column p {
    color: white;
}
.icon_social {
    text-align: center;
    margin: 5%;
}
.icon_social .icon {
    margin: 0 8px;
}
.main-footer-top h1 {
    color: white;
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 15px;
}
.main-footer-top h2 {
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}
.main-footer-top a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
}
.main-footer-top a:hover {
    display: block;
    color: white;
    text-decoration: underline;
    margin-bottom: 8px;
}
.social-icons img {
    width: 24px;
    height: 24px;
}
.subscribe-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.subscribe-box input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid white;
    background-color: #046b3f;
    color: white;
    outline: none;
}
.subscribe-box input::placeholder {
    color: white;
    opacity: 0.7;
}
.subscribe-box button {
    padding: 12px;
    border: none;
    background-color: white;
    color: #006b3f;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
}
.main-footer-bottom {
    background-color: #006b3f;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.305);
}
.main-footer-bottom p {
    margin-top: 32px;
    color: white;
    font-size: 12px;
}
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    background-color: white;
}
.payment-icons img {
    width: 40px;
    margin-right: 5px;
}
/***** home *****/
.home-banner {
    position: relative;
    height: 600px;
}
.home-banner-image {
    width: 100%;
    display: block;
}
.home-banner .card {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -150%);
    background: rgb(255, 255, 255);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 30rem;
    padding: 1.3rem;
    border-radius: 16px;
}
.home-banner .card .card-body .card-button {
    font-weight: bold;
    padding: 0.8rem 2rem;
    border-radius: 8px;
}
.why-choose-us-title {
    font-weight: 700;
    font-size: 64px;
}
.real-people-real-result {
    text-align: center;
    margin: 2% 0;
    font-weight: 700;
    color: #000000;
    font-size: 32px;
}
.do-you-want-these-title {
    text-align: center;
    font-weight: 700;
    color: #009B4D;
    font-size: 44px;
}
.do-you-want-these-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.do-you-want-these-item .item-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}
.product {
    background-color: rgb(240, 240, 240);
    padding: 1% 0 3% 0;
}
.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: green;
}
.product-old-price {
    text-decoration: line-through;
    color: gray;
    margin-right: 10px;
}
.color-options {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}
.color-options label {
    position: relative;
    cursor: pointer;
}
.color-options input {
    position: absolute;
    opacity: 0;
}
.color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(209, 209, 209, 0.575);
    display: inline-block;
}
.color-options input:checked + .color-circle {
    border: 4px solid rgb(204, 206, 204);
    padding: 2px;
}
.yellow {
    background-color: yellow;
}
.black {
    background-color: black;
}
.white {
    background-color: white;
}
.blue {
    background-color: cornflowerblue;
}
.btn-claim {
    background: green;
    color: #fff;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
}
.dropdown-container {
    border-top: 1px solid #b5b5b5;
    border-bottom: 1px solid #b5b5b5;
    padding: 10px 0;
    margin-bottom: 5%;
    margin-top: 5%;
}
.dropdown-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}
.dropdown-content {
    display: none;
    padding: 10px 0;
}
.dropdown-content ul {
    padding-left: 20px;
    list-style-type: disc;
}
.stock-info p {
    font-size: 14px;
    margin: 5px 0;
}
.claim-offer {
    background-color: #007a3d;
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}
.delivery-info p {
    font-size: 16px;
    margin: 10px 0;
}
.view-details {
    margin-top: 5%;
    display: block;
    color: #800080;
    font-weight: 300;
    text-decoration: none;
}
.view-details:hover {
    text-decoration: underline;
    color: inherit;
}
.faq-container {
    max-width: 600px;
    margin: auto;
}
.faq-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.faq-item {
    border-top: 1px solid #ccc;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
}
.faq-question:hover {
    background-color: #f9f9f9;
}
.faq-answer {
    display: none;
    padding: 15px;
    font-size: 14px;
    color: #333;
}
.icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}
.expanded .icon {
    transform: rotate(180deg);
}
.review-title {
    text-align: left;
    font-size: 22px;
    margin-bottom: 10px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}
.review-card {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}
.review-card:hover {
    transform: scale(1.05);
}
.review-card img {
    width: 100%;
    border-radius: 8px;
    height: 180px;
    object-fit: cover;
}
.review-author {
    font-size: 18px;
    margin-top: 10px;
}
.review-date {
    font-size: 12px;
    color: gray;
}
.stars {
    font-size: 16px;
    color: gold;
}
.review-text {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}
.swiper-button-next,
.swiper-button-prev {
    color: #ff9800;
    font-size: 20px;
    transition: 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #e65100;
}
.swiper-pagination-bullet {
    background: #ccc;
    width: 10px;
    height: 10px;
    margin: 5px;
}
.swiper-pagination-bullet-active {
    background: #ff9800;
}
/******** catalog ****/
#web_catalog {
    width: 100%;
    height: auto;
}
.title {
    margin-top: 1%;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}
.product {
    padding: 0 72px;
}
.product-grid {
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 100%;
}
.product-card .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.product-image:hover .main-img {
    opacity: 0;
}
.product-image:hover .hover-img {
    opacity: 1;
}
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: purple;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
}
.product-info {
    margin-top: 10px;
}
.product-info h3 {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}
.product-name:hover {
    text-decoration: underline;
    color: inherit;
}
.price {
    margin: 10px 0;
    font-size: 14px;
}
.discount {
    color: green;
    font-weight: bold;
    font-size: 18px;
}
.original-price {
    text-decoration: line-through;
    color: gray;
    font-size: 14px;
}
/**** product filter *****/
.product-filter-container {
    display: flex;
    gap: 20px;
}
.filter-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
}
.filter-options span {
    font-size: 16px;
    font-weight: 500;
}
.custom-dropdown-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: black;
    padding: 0;
}
.custom-dropdown-btn:focus {
    box-shadow: none;
}
.dropdown-menu {
    width: 400px;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.dropdown-header {
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px !important;
}
.highest-price {
    font-size: 14px;
    font-weight: 300;
    color: black;
}
.price-inputs {
    gap: 10px;
}
.input-group {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px;
    flex: 1;
}
.input-group .input-group-text {
    background: none;
    border: none;
    font-size: 16px;
    color: black;
    padding: 0;
}
.input-container {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.input-container label {
    font-size: 12px;
    color: gray;
    margin-bottom: -3px;
}
.input-container input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 100%;
}
.text-purple {
    color: #9b59b6;
    text-decoration: none;
    cursor: pointer;
}
.text-purple:hover {
    text-decoration: underline;
}
.form-check-input {
    margin-right: 10px;
}
.form-check.disabled label {
    color: #bbb;
}
/**** product sort *****/
.product-sort-container {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.sort-dropdown {
    padding: 6px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    border: none;
}
.product-count {
    color: gray;
    font-size: 14px;
}
.subscrice_main {
    margin-top: 2%;
    width: 100%;
    background: #f8f8f8;
}
.subscribe-container {
    text-align: center;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    margin: 20px auto;
}
.subscribe-title {
    font-size: 24px;
    font-weight: bold;
}
.subscribe-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.email-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
.subscribe-btn {
    background: black;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.subscribe-btn:hover {
    background: #333;
}
@media (max-width: 1024px) {
    .product-grid {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .product-card {
        flex: 0 0 100%;
    }
}
.web_catalog {
    width: 100%;
}
.contact_form {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    margin: 0;
    width: 100%;
}
.contact-container {
    width: 800px;
    margin-top: 4%;
    text-align: center;
    background: white;
    padding: 40px;
}
.contact-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}
.input-group > *:not(:last-child) {
    border-top-right-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}
.input-group
    > *:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
        .valid-feedback
    ):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
}
.input_infor {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #7c7c7c;
    border-radius: 12px;
}
.input-full {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #7c7c7c;
    border-radius: 12px;
    margin-bottom: 15px;
}
.textarea {
    height: 100px;
    resize: none;
}
.contact-btn {
    width: 100%;
    background-color: #006b3f;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.contact-btn:hover {
    background-color: #00552e;
}
/**** shop *******/
.best-product-content-container .product-set {
    display: flex;
    flex-direction: column;
}
.best-product-content-container .product-set .product-item {
    display: flex;
}
.thumbnail-container {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}
.thumbnail {
    width: 100px;
    cursor: pointer;
    transition: transform 0.2s;
    border-radius: 5px;
}
.thumbnail:hover {
    transform: scale(1.1);
    outline: 2px solid black;
}
.img-fluid {
    border-radius: 15px;
}
#mainImage {
    transition: opacity 0.5s;
}
.container_content {
    margin-left: 20px;
    height: 1000px;
    overflow-y: auto;
    width: 45%;
}
.sale-banner {
    background-color: green;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
}
.product__title {
    font-size: 24px;
    font-weight: bold;
}
.product__rating {
    font-size: 16px;
    color: #555;
}
.product__rating-score {
    font-weight: bold;
    color: #ffcc00;
}
.product__viewers {
    font-size: 16px;
    font-weight: bold;
}
.product__stock {
    font-size: 16px;
    color: red;
    font-weight: bold;
}
.product__stock-count {
    font-size: 18px;
}
.product__alert {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}
.product__benefits {
    list-style: none;
    padding: 0;
}
.product__benefits li {
    font-size: 16px;
    padding: 5px 0;
}
.product__tip {
    font-size: 16px;
    font-style: italic;
    color: #555;
}
.product__offer {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}
.offer {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 2px solid orange;
    border-radius: 10px;
    margin-bottom: 10px;
}
.offer__details {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}
.offer__name {
    font-size: 18px;
    font-weight: bold;
}
.offer__discount {
    color: green;
    font-size: 14px;
}
.offer__price {
    font-size: 20px;
    font-weight: bold;
    color: red;
}
.offer__old-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #aaa;
}
.add_to_cart {
    background-color: orange;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 100%;
    border-radius: 5px;
}
.add_to_cart:hover {
    background-color: white;
    color: orange;
    border: 2px solid orange;
    transform: scale(0.9);
}
.pay_with {
    background-color: #ffc107;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #333;
    border-radius: 4px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    margin-top: 10px;
}
.moro_payment_options {
    color: black;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 10px;
}
.moro_payment_options:hover {
    color: black;
    text-decoration: underline;
}
.feedback {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    margin-bottom: 10px;
}
.feedback img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin-right: 10px;
}
.payment-product-image img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}
.product-info {
    flex-grow: 1;
}
.product-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px;
    color: #333;
}
.product-details {
    display: flex;
    align-items: center;
    gap: 10px;
}
.quantity {
    background-color: #e6f4ea;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}
.price {
    font-size: 16px;
    font-weight: bold;
}
.original-price {
    color: #999;
    text-decoration: line-through;
}
.discounted-price {
    color: #2e7d32;
}
.toggle-switch {
    margin-left: 10px;
}
/* Toggle Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 20px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #2e7d32;
}
input:checked + .slider:before {
    transform: translateX(20px);
}
.faq-container {
    max-width: 600px;
    margin: auto;
}
.faq-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.faq-item {
    border-top: 1px solid #ccc;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
}
.faq-question:hover {
    background-color: #f9f9f9;
}
.faq-answer {
    display: none;
    padding: 15px;
    font-size: 14px;
    color: #333;
}
.icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}
.expanded .icon {
    transform: rotate(180deg);
}
.container_feerback {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
}
.container_feerback h2 {
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: bold;
}
.note {
    background-color: #fff;
    width: 80%;
    margin-top: 10px;
    text-align: center;
}
.video_review_container_1 {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
}
.video_review_container_1 .text-section {
    flex: 1;
    padding: 40px;
    background-color: #007148;
    color: #fff;
    border-radius: 10px 0 0 10px;
}
.video_review_container_1 .text-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.video_review_container_1 .text-section p {
    font-size: 1.1em;
    line-height: 1.6;
}
.video_review_container_1 .image-section {
    flex: 1;
    display: flex;
    justify-items: center;
    align-items: center;
}
.video_review_container_1 .image-section img {
    width: 100%;
    height: auto;
    display: block;
    height: 95%;
    border-radius: 0 10px 10px 0;
}
.video_review_container_2 {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
}
.video_review_container_2 .text-section {
    flex: 1;
    padding: 40px;
    background-color: #007148;
    color: #fff;
    border-radius: 0 10px 10px 0;
    order: 2;
}
.video_review_container_2 .text-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.video_review_container_2 .text-section p {
    font-size: 1.1em;
    line-height: 1.6;
}
.video_review_container_2 .image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}
.video_review_container_2 .image-section img {
    width: 100%;
    height: auto;
    display: block;
    height: 95%;
    border-radius: 10px 0 0 10px;
}
.container_content_2 {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    justify-content: center;
    align-items: center;
}
.container_content_3 {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
}
.image-section {
    flex: 1;
}
.image-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.text-section {
    flex: 1;
    padding: 40px;
}
.title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.title img {
    height: 30px;
    margin: 0 10px;
}
.title h2 {
    font-size: 2em;
    margin: 0;
    color: rgb(1, 66, 1);
    font-weight: bold;
}
.text-section p {
    font-size: 1.1em;
    line-height: 1.6;
}
.container_content_4 {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container_content_4 .left-section {
    flex: 1;
    padding: 20px;
}
.container_content_4 .left-section .title img {
    height: 30px;
    margin-right: 10px;
    border-radius: 20px;
}
.container_content_4 .left-section .title h1 {
    font-size: 2em;
    margin: 0;
}
.container_content_4 .left-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.container_content_4 .right-section {
    flex: 1;
    padding: 40px;
}
.container_content_4 .right-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
}
.container_content_4 .stat {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.container_content_4 .percent {
    font-size: 2em;
    font-weight: bold;
    color: #008080;
    margin-right: 20px;
}
.container_content_4 .stat p {
    margin: 0;
    line-height: 1.6;
}
.container_content_4 .rating {
    text-align: center;
    margin-top: 30px;
}
.container_content_4 .rating img {
    height: 30px;
    margin-bottom: 10px;
    border-radius: 20px;
}
.carousel-container {
    width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
}
.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    flex: 0 0 400px;
    text-align: center;
}
.slide img {
    width: 100%;
    border-radius: 10px;
}
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.dots {
    text-align: center;
    padding: 10px;
}
.dot {
    height: 12px;
    width: 12px;
    margin: 5px;
    background-color: gray;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}
.active {
    background-color: black;
}
.container_instructions {
    font-family: Arial, sans-serif;
    background-color: #005f3b;
    color: white;
    margin: 0;
    padding: 0;
}
.instructions {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.text-section {
    width: 40%;
}
.text-section h1 {
    font-size: 50px;
    font-weight: bold;
}
.text-section p {
    font-size: 16px;
    font-style: italic;
    margin-top: 10px;
}
.steps {
    width: 50%;
}
.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.step-icon {
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
}
.step-content h3 {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}
.step-content p {
    font-size: 14px;
}
/* //combo */
.combo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}
.combo-header {
    text-align: center;
    margin-bottom: 20px;
}
.combo-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.combo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.combo-item img {
    width: 120px; /* Điều chỉnh kích thước ảnh nhỏ hơn */
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}
.item-details h3 {
    font-size: 16px;
    font-weight: bold;
}
.item-details p {
    margin: 5px 0;
}
.old-price {
    text-decoration: line-through;
    color: #999;
}
.new-price {
    font-size: 18px;
    font-weight: bold;
    color: #e60000;
}
.combo-total {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
}
.combo-total .old-total {
    text-decoration: line-through;
    color: #999;
}
.combo-total .new-total {
    font-weight: bold;
    font-size: 22px;
    color: #e60000;
}
.add-to-cart-combo {
    background-color: orange;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 100%;
    border-radius: 5px;
}
.add-to-cart-combo:hover {
    background-color: white;
    color: orange;
    border: 2px solid orange;
    transform: scale(0.9);
}
.start-review {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.menu_hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.bar {
    width: 30px;
    height: 4px;
    background: black;
    margin: 3px 0;
}
.review-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin-top: 10px;
    margin: auto;
}
.review-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.review-card:hover {
    transform: translateY(-5px);
}
.review-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.review-content {
    padding: 15px;
}
.review-content h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}
.review-content .date {
    color: gray;
    font-size: 0.9em;
    margin-bottom: 10px;
}
.stars {
    color: #ffd700;
    font-size: 1.2em;
    margin-bottom: 10px;
}
.review-content p {
    font-size: 0.95em;
    color: #444;
}
/**** tracking *****/
.tracking_form {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    margin: 0;
}
.tracking-container {
    margin-top: 4%;
    text-align: center;
    max-width: 640px;
    padding: 40px;
}
.tracking-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5%;
}
.tracking-text {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}
.tracking-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}
.tracking-btn {
    width: 100%;
    background-color: #006b3f;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.tracking-btn:hover {
    background-color: #00552e;
}
