/* Reset mặc định */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');


body {
    font-family: 'Quicksand', sans-serif;
    background-color: #fff;
    color: #000;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 14px 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* LOGO */
header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    max-width: 144px;
}
:root {
    --primary-color: #d14398; 
    --highlight-color: #ff3385; 
    --hover-scale: 1.05; 
    --underline-thickness: 2px; 
    --transition-duration: 0.3s; 
}
:root {
    --primary-color: #d14398;
    --highlight-color: #ff3385;
    --hover-scale: 1.05;
    --underline-thickness: 2px;
    --transition-duration: 0.3s;
:host, :root {
        --fa-style-family-sharp: "Font Awesome 6 Sharp";
        --fa-font-sharp-solid: normal 900 1em / 1 "Font Awesome 6 Sharp";
    }
}
/* MENU CHÍNH */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    position: relative;
    padding: 0;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

.nav-menu a {
    color: #d14398;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 15px;
    display: block;
    position: relative;
}

/* Gạch chân mảnh và hiệu ứng hover */
.nav-menu a::before {
    content: "";
    position: absolute;
    bottom: -2px; /* Điều chỉnh vị trí gạch chân */
    left: 50%;
    width: 0;
    height: 2px; /* Độ dày gạch chân */
    background-color: #ff3385;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
   
}

.nav-menu a:hover::before {
    width: 100%; /* Khi hover, gạch chân sẽ mở rộng */
    transform: translateX(-50%);
}

/* Thêm hiệu ứng mũi tên quay khi hover */
.nav-menu .dropdown > a i {
    transition: transform 0.3s ease;  
}

.nav-menu .dropdown:hover > a i {
    transform: rotate(180deg); /* Quay mũi tên khi hover */
}



/* DROPDOWN MENU 1 */
.nav-menu .dropdown .dropdown-menu1 {
    display: none;
    position: absolute;
    top: 140%;  
    left: 116px;  
    transform: translateX(-50%);  
    width: 100vw; 
    background: #e84a9c;  
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    white-space: nowrap;
    box-sizing: border-box;
    text-align: center;
    z-index: 9999; 
}


.nav-menu .dropdown:hover .dropdown-menu1 {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(-50%);  
}


.nav-menu .dropdown-menu1 li {
    display: inline-block;
    margin: 0 15px;
    text-align: center;
}


.nav-menu .dropdown-menu1 {
    justify-content: center;
    width: auto;
}


.nav-menu .dropdown-menu1 a {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-menu .dropdown-menu1 a:hover {
    /* text-decoration: underline; */
    background-color: #d14398;
    transform: scale(1.05);  
}


.nav-menu .dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 140%;  
    left: -145px;  
    transform: translateX(-50%); 
    width: 100vw;  
    background: #e84a9c;  
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    white-space: nowrap;
    box-sizing: border-box;
    text-align: center;
    z-index: 9999; 
}


.nav-menu .dropdown:hover .dropdown-menu {
    display: flex;
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(-50%); 
}


.nav-menu .dropdown-menu li {
    display: inline-block;
    margin: 0 15px;
    text-align: center;
}


.nav-menu .dropdown-menu {
    justify-content: center;
}

.nav-menu .dropdown > a i {
    transition: transform 0.3s ease;  
}

.nav-menu .dropdown:hover > a i {
    transform: rotate(180deg); 
}

/* Hiệu ứng hover trong dropdown menu 2 */
.nav-menu .dropdown-menu a {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-menu .dropdown-menu a:hover {
    /* text-decoration: underline; */
    background-color: #dd4498;
    transform: scale(1.05); 
}

/* HOTLINE */
.cta-contact img {
    max-width: 120px;
}


body {
    padding-top: 80px;
}
/* Menu chính cho desktop */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    position: relative;
    padding: 0;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

.nav-menu a {
    color: #d14398;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 15px;
    display: block;
    position: relative;
}

/* Hiệu ứng gạch chân */
.nav-menu a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ff3385;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    width: 100%;
    transform: translateX(-50%);
}

/* Dropdown menu cho desktop */
.nav-menu .dropdown .dropdown-menu1 {
    display: none;
    position: absolute;
    top: 140%;
    left: 116px;
    transform: translateX(-50%);
    background: #e84a9c;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    text-align: center;
    z-index: 9999;
}

.nav-menu .dropdown:hover .dropdown-menu1 {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Menu di động */
.nav-menu-mobile {
    display: none; /* Ẩn menu di động mặc định */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding-top: 60px;
}

.nav-menu-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.nav-menu-mobile li {
    margin: 15px 0;
}

.nav-menu-mobile a {
    color: #d14398;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}

/* Hiển thị menu di động khi có lớp 'active' */
.nav-menu-mobile.active {
    display: block;
}

.nav-menu-mobile a:hover {
    background-color: #ff3385;
    color: white;
}

/* Hiển thị icon hamburger trên di động */
.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon .fas {
    font-size: 30px;
    color: #d14398;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Ẩn menu chính khi trên di động */
    }

    /* Hiển thị menu di động */
    .nav-menu-mobile {
        display: block; /* Hiển thị menu di động khi có lớp 'active' */
    }

    .menu-icon {
        display: block; /* Hiển thị icon hamburger khi trên di động */
    }
}






/* Ẩn radio button mặc định */
.custom-radio input[type="radio"] {
    display: none;
}


.custom-radio .custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #d14398;
    border-radius: 5px; 
    display: inline-block;
    position: relative;
    margin-right: 10px;
    vertical-align: middle;
    background-color: white;
    transition: background-color 0.3s, border-color 0.3s;
}


.custom-radio input[type="radio"]:checked + .custom-checkbox {
    background-color: #DB088C; 
    border-color: #DB088C; /
}

.custom-radio input[type="radio"]:checked + .custom-checkbox::after {
    content: '\2713'; 
    position: absolute;
    top: 2px;
    left: 4px;
    color: white; 
    font-size: 14px;
}




@font-face {
    font-family: 'Quicksand'; 
    src: url('path-to-your-font/vnf-quicksand-bold (1).ttf') format('truetype'); 
}
.number-display  h1  {
    position: absolute;  
    width: 18%;
    top: 23%;
    left: 62%;
    transform: translate(-50%, -50%);  
    font-family: 'Quicksand', sans-serif;  
    font-size: 6.5rem;  
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgb(231, 231, 231);
    text-align: center;
    z-index: 10;  
    cursor: pointer;  }

/* Cho phép di chuyển */
.number-display.dragging {
    cursor: move;
}
/* BANNER */
.bic-banner-ctn {
    font-family: 'Quicksand', sans-serif;
    background-image: url('../img/nen4.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    /* height: 97vh;
    display: flex; */
    align-items: center;
    justify-content: flex-start;
    padding-left: 4%; 
    position: relative;
    overflow: hidden;
    padding-top: 1%;
    padding-bottom: 1;
}

/* FORM ĐĂNG KÝ */
.bic-form-dki {
    width: 35%; 
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    /* margin: auto; */
}

/* Thông báo thành công */
.success-message {
    background-color: #FCEDF5;
    color: #DB088C; 
    font-family: 'Quicksand', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    position: absolute;
    top: 113px; 
    left: 50%; 
    transform: translateX(-50%); 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    z-index: 9999;
    width: 715px; 
    height: 88px; 
}

.success-message::before {
    content: '';
    margin-right: 10px;
}
.product-selection-label{
    color: #d14398;
    font-family: 'Quicksand', sans-serif;
}

/* Tiêu đề và mô tả */
.bic-contact-head h3 {
    font-size: 26px;
    font-weight: 700;
    color: #d14398;
}

.bic-contact-head p {
    font-size: 14px;
    color: #d14398;
    margin-bottom: 15px;
}

/* Định dạng cho các trường nhập */
.f-list .f-item {
    margin-bottom: 12px;
}

.f-item input {
    width: 100%;
    padding: 6px;
    border: 2px solid #d14398;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
}

.f-item input:focus {
    outline: none;
    border-color: #ff66b2;
}

/* Checkbox */
.f-item label {
    display: flex;
    gap: 8px;
    font-weight: bold;
    color: #d14398;
    margin-bottom: 0px;
    font-size: 12px;
    flex-wrap: nowrap;
}

input[type="checkbox"] {
    appearance: none;
    width: 22px;  
    height: 22px;
    border: 2px solid #DB088C;  
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    background-color: white; 
}

input[type="checkbox"]:checked {
    background-color: #DB088C;  
    border-color: #DB088C; 
}

input[type="checkbox"]:checked::before {
    content: '\2713'; 
    color: white; 
    font-size: 14px;
    position: absolute;
    top: 2px;
    left: 4px; 
    text-align: center;
}

/* Sản phẩm lựa chọn */
.product-selection {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}
.product-option {
    text-align: center;
    width: 22%;
}

.product-option img {
    width: 62%;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.product-option label {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: bold;
    color: #d14398;
    text-align: center;
}

.product-option:hover img {
    transform: scale(1.05);
}

/* Nút đăng ký */
button {
    background-color: #FF66B2;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}

button:hover {
    background-color: #ff3385;
}

/* Đảm bảo số lượng hiển thị và background của form thay đổi */
@media (max-width: 768px) {
    .bic-form-dki {
        width: 90%;
        padding: 15px;
        /* background-image: url('../img/hinh10.png');  */
        
    }

    
    .number-display h1 {
        font-size: 3rem; 
    }

    .product-option {
        width: 100%; /* Các sản phẩm chiếm toàn bộ chiều rộng */
    }

    .product-option img {
        width: 80%; /* Giảm kích thước hình ảnh sản phẩm */
    }

    /* Giảm kích thước và điều chỉnh nút */
    button {
        font-size: 14px;
        padding: 10px;
    }

    /* Giảm font-size cho thông báo thành công */
    .success-message {
        font-size: 26px;
    }
}

/* Reset mặc định */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Thiết lập chung */
body {
    font-family: 'Quicksand', sans-serif;
    background-color: #fff;
    color: #000;
}
/* TẠI SAO CHỌN PETS CHOICE */
.bic-about-ctn {
    background-image: url('../img/Nentrang2.png');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    width: 100%;
}

.bic-box-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #d14398;
    margin-bottom: 20px;
}

.bic-about-content {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* Phần sản phẩm */
.bic-box-sp {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    align-items: stretch;
}

.bic-item-sp {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bic-sp-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px; /* Added spacing below the image */
}

.bic-sp-content h3 {
    font-size: 1.4rem;
    color: #d14398;
    margin: 15px 0;
    white-space: pre-line; /* Allows line breaks inside h3 */
}

.bic-item-sp {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    height: auto; 
}
.bic-sp-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible; /* Đảm bảo hình ảnh không bị cắt */
}

.bic-sp-image img {
    max-width: 100%; 
    height: auto; 
    object-fit: contain; 
    display: block; 
}
.bic-sp-content {
    text-align: center;
    padding: 15px;
    max-width: 90%;
    background: #fff; 
    border-radius: 8px;
}

.bic-sp-content h3 {
    font-size: 1.4rem;
    color: #d14398;
    margin: 10px 0;
    line-height: 1.4; 
    white-space: pre-line; 
}

/* Div lớn chứa cả hai ảnh */
#background-container {
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Các div chứa ảnh */
#section-one, #section-two {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0; 
    padding: 0; 
    opacity: 1; 
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease; 
}

/* Hình ảnh bên trong */
#section-one img, #section-two img {
    width: 100%;
    height: auto; /* Điều chỉnh ảnh để không bị co dãn */
    object-fit: cover; 
    display: block; 
}

/* Đảm bảo không có khoảng cách giữa hai ảnh */
#section-one + #section-two {
    margin-top: -5px; 
}

/* Khi thu nhỏ màn hình, ảnh vẫn giữ nguyên */
@media (max-width: 768px) {
    #section-one img, #section-two img {
        width: 100%;  /* Đảm bảo ảnh phủ toàn bộ chiều rộng màn hình */
        height: auto; /* Đảm bảo tỉ lệ ảnh không bị méo */
    }
}

/* Lớp khi ảnh xuất hiện */
#section-one.visible, #section-two.visible {
    opacity: 1; 
    transform: translateY(0); 
}








/* FOOTER */
footer {
    background-image: url('../img/hinh5.png'); /* Hình nền cho footer */
    color: white;
    text-align: center;
    padding: 10rem 0 15rem;
    width: 100%; 
    box-sizing: border-box; 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-blend-mode: screen; 
}

/* Định nghĩa phông chữ */
@font-face {
    font-family: 'SVN-Bulgary';
    src: url('/assets/css/path-to-your-font/SVN-Bulgary.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SVN-Bariol';
    src: url('/assets/css/path-to-your-font/SVN-Bariol-Italic-(1).ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'VNQuicksandBold';
    src: url('/assets/css/path-to-your-font/vnf-quicksand-bold-(1).ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Bố cục footer */
.footer {
    padding: 40px 0;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;  
    align-items: flex-start;
    max-width: 1281px;
    margin: 0 auto;
    flex-wrap: wrap;
    text-align: center;
}

.footer-logo {
    text-align: center;
    margin-bottom: 10px;
    flex: 1 1 300px; 
}

.footer-logo-img {
    width: 300px;
    height: auto;
}

.footer-logo-SLOGAN {
    width: 100%; 
    max-width: 300px; 
    height: auto;
    margin-top: 80px; 
}

.footer-text {
    font-size: 36px;
    font-family: 'SVN-Bulgary', sans-serif; 
    font-weight: bold;
    margin-top: 10px;
    color: rgba(222, 71, 152, 1); 
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.9); 
    margin-top: 100px; 
}

.footer-info {
    flex: 2 1 500px; 
    text-align: left;
    margin-left: 140px; 
}

.footer-company {
    font-family: 'Quicksand', sans-serif;
    font-size: 40px; 
    font-weight: bold; 
    margin-bottom: 10px;
}

.footer-address {
    font-size: 20px;
    line-height: 1.6;
    text-align: left; 
}

.footer-contact {
    text-align: left;
    font-family: 'Quicksand', sans-serif;
}

.footer-contact p {
    font-size: 18px;
    margin: 10px 0;
}

.footer-contact i {
    margin-right: 8px;
}

/* Các link trong footer */
.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}
.fab fa-whatsapp,fa fa-envelope,fa fa-globe{
    width: 50px;
    height: 50px;
    background-color: #e84a9c; 
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* Màu icon */
    font-size: 24px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}


/* Responsive Design cho footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo-img {
        width: 250px; 
    }

    .footer-logo-SLOGAN {
        width: 250px; 
    }

    .footer-text {
        font-size: 28px; 
    }

    .footer-info {
        margin-left: 0; 
        text-align: center;
    }

    .footer-company {
        font-size: 20px; 
    }

    .footer-address {
        font-size: 12px; 
    }

    .footer-contact p {
        font-size: 16px; 
    }
}
/* Nút Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #d14398;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top i {
    color: #d14398;
    font-size: 24px;
}

.back-to-top:hover {
    background-color: #d14398;
}

.back-to-top:hover i {
    color: white;
}



/* RESPONSIVE */
@media (max-width: 1024px) {
    .bic-form-dki {
        width: 45%;
    }

    .bic-item-sp {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .bic-banner-ctn {
        /* justify-content: center; */
        padding-left: 0;
    }

    .bic-form-dki {
        width: 80%;
        max-width: 400px;
    }

    .bic-box-sp {
        flex-direction: column;
        align-items: center;
    }

    .bic-item-sp {
        width: 80%;
    }

    .bic-lists-spe {
        flex-direction: column;
        align-items: center;
    }

    .bic-spe-item {
        width: 80%;
    }
}
@media (max-width: 768px) {
    #section-one, #section-two {
        height: 300px; 
        background-position: center;
    }
}

@media (max-width: 480px) {
    #section-one, #section-two {
        height: 250px; 
    }
}

@media (max-width: 576px) {
    .product-option {
        width: 100%;
    }

    .bic-item-sp,
    .bic-spe-item {
        width: 100%;
    }
}
/* PC */
@media screen and (min-width: 1024px) {
    /* Các quy tắc cho màn hình PC có thể được thêm vào đây */
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    /* Các quy tắc cho màn hình tablet */
}

/* Mobile */
@media screen and (max-width: 740px) {
    #nav>li {
        display: block; /* Mỗi item trong menu sẽ chiếm toàn bộ chiều rộng */
    }
}

/* Ẩn menu di động mặc định */
#menu-mobile {
    display: none;
}

/* Hiển thị menu khi nhấn vào icon hamburger */
#menu-mobile.show {
    display: block;
}

/* Ẩn icon hamburger trên màn hình lớn (desktop) */
@media (min-width: 768px) {
    #menu-toggle {
        display: none; /* Ẩn icon 3 sọc trên desktop */
    }
}

/* Hiển thị icon hamburger trên màn hình nhỏ (di động) */
@media (max-width: 767px) {
    #menu-toggle {
        display: block; /* Hiển thị icon 3 sọc trên di động */
    }
}

/* Khi menu di động hiển thị, đổi icon thành dấu X */
#menu-mobile.show #menu-toggle i {
    transform: rotate(90deg); /* Xoay icon khi menu mở */
}

@media (max-width: 768px) {
    .bic-banner-ctn {
        overflow: hidden;
    }
}
@media (max-width: 768px) {
    .bic-banner-ctn {
        background-size: cover;
        background-position: center;
    }
}
.product-option img {
    width: 90%; /* Hoặc giới hạn một tỷ lệ khác nếu cần */
    height: auto;
}
@media (max-width: 768px) {
    .product-option {
        width: 15%; /* Giảm kích thước phần tử trên điện thoại */
        margin-bottom: 15px;
    }

    .product-option img {
        width: 100%; /* Giảm kích thước hình ảnh */
    }
}

/* MOBILE  */

/* Ẩn menu di động mặc định */
#menu-mobile {
    display: none;
    transition: transform 0.3s ease; /* Thêm hiệu ứng kéo vào/đẩy ra */
    transform: translateX(-100%); /* Ban đầu ẩn menu, đẩy sang trái */
}

/* Hiển thị menu khi nhấn vào icon hamburger */
#menu-mobile.show {
    display: block;
    transform: translateX(0); /* Khi mở menu, di chuyển trở lại */
}

/* Icon hamburger trên di động */
#menu-toggle {
    display: block;
    cursor: pointer;
}

#menu-toggle i {
    font-size: 24px;
    transition: transform 0.3s ease; /* Thêm hiệu ứng xoay icon */
}
