
.tooltip-information {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    display: none;
    white-space: nowrap;
}
.pagination span {
    color: var(--bs-dark);
    padding: 10px 16px;
}
body {
    font-family: "Nunito", sans-serif !important;
}

.vesitable-owl h6{
    font-weight: bold;
}

.spinner-border {
    margin-left: 5px;
}

.button-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.button-content .fa-check {
    margin-left: 5px;
    display: none; /* Initially hidden */
}

.input-with-icon {
    display: flex;
    align-items: center;
    width: 100%; /* Adjust to the desired width */
}

.input-container {
    position: relative;
    flex: 1; /* Allows the input to take up available space */
}

.input-container input {
    width: 100%;
    padding-right: 35px; /* Add space for the icon */
}

.clear-icon {
    position: absolute;
    right: 10px;
    top: 35%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
}

.clear-icon:hover {
    color: #333;
}

#discount-button {
    margin-left: 10px; /* Space between input and button */
    white-space: nowrap; /* Prevents the button text from wrapping */
}

.cart-icon {
    top: 0px;
}
.user-icon {
    top: 0px;
}

.heart-animation {
    position: absolute;
    color: rgb(35, 237, 65);
    transition: all 2s ease-in-out;
}
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
.hidden {
    display: none;
}
.pl-3 {
    padding-left: 1rem !important;
}
.login-a {
    cursor: pointer;
    color: #000000;
}
.login-a:hover {
    color: rgb(251, 207, 174) !important;
}
.cart-badge {
    top: -5px;
    left: 25px;
    height: 20px;
    min-width: 20px;
}
.product-detail-image {
    position: relative; /* Ensure the tooltip is positioned relative to the container */
    display: inline-block;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container .fa-heart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #ffffff;
    cursor: pointer;
    display: none;
}
.image-container .fa-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: rgb(237, 65, 35);
    cursor: pointer;
    z-index: 2;
    display: none;
}

.image-container:hover .fa-heart {
    display: block;
}

.fa-heart:hover{
    color: rgb(237, 65, 35);
}

.tooltip-custom {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    display: none;
    white-space: nowrap;
}

.fa-cart-custom-css {
    left: 125px;
    display: flex;
    justify-content: center; /* Center horizontally */
    color: rgb(251, 207, 174) !important;
}

.fa-user-custom-css {
    left: 110px;
    display: flex;
    justify-content: center; /* Center horizontally */
    color: rgb(251, 207, 174) !important;
}

.img-in-the-middle {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.8s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
.no-scroll {
    overflow: hidden;
}

/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none; /* Hidden by default */
}

#cart-over-lay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none; /* Hidden by default */
}

#login-register .d-flex {
    align-items: center;
}
.register-item {
    left: 130px;
}
.user-detail {
    z-index: 20;
    left: 130px;
}
/* Login form container */

.display-bold {
    font-weight: 800;
}
#login-form {
    display: none;
    position: fixed;
    top: 100px;
    right: 0;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

/* Close button */
#login-form .close-btn {
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
    text-align: right;
}
.remove-item:hover {
    color: #000;
}
.cart-perview-item:hover {
    background-color: #f5efef;
    cursor: pointer;
}

.remove-item {
    position: absolute;
    color: #aaa;
    margin-top: -1rem;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#login-form .close-btn:hover {
    color: #000;
}
#cart-perview {
    display: none;
    position: fixed;
    top: 100px;
    right: 0;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

/* Close button */
#cart-perview .close-btn {
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
    text-align: right;
}

#cart-perview .close-btn:hover {
    color: #000;
}

/* Tab styling */
.tab {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tab a {
    flex: 1;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: #000;
    border-bottom: 2px solid transparent;
}

.tab a.active {
    font-weight: bold;
    border-bottom: 2px solid #000;
}

.form-group label {
    font-size: 14px;
    font-weight: bold;
}

/* Register button */
.btn-register {
    background-color: #000;
    color: #fff;
    width: 100%;
}

/* Hide Login/Register Forms */
#login-form-content,
#register-form-content,
#cart-perview-content {
    display: none;
}

#user-register-form {
    display: none;
}
/* Popup container */
#popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

#popup-content {
    background-color: #fefefe;
    padding: 50px 20px;
    border: 1px solid #888;
    width: 80vw;
    top: 10vh;
    margin-bottom: 10vh;
    max-width: 700px;
    height: auto;
    max-height: 700px;
    overflow-y: auto; /* Enable scrolling within the popup content */
    position: relative;
}

/* Close button */
.close-btn {
    position: absolute;
    top: -5px;
    right: 5px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
}

/* Image */
#popup-image {
    width: 100%;
    height: auto;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.phone-icon {
    position: fixed;
    right: 30px;
    bottom: 90px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
/*** Spinner End ***/

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}
.btn.border-secondary {
    border-color: rgb(237, 65, 35) !important;
}

.border-red {
    border-color: rgb(237, 65, 35) !important;
    background: rgb(237, 65, 35) !important;
}

.btn.border-secondary:hover {
    background: rgb(237, 65, 35) !important;
    color: rgb(251, 207, 174) !important;
}

/*** Topbar Start ***/
.fixed-top {
    top: 0px !important;
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
}

.topbar {
    padding: 20px;
    border-radius: 230px 100px;
}

.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link a {
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: rgb(251, 207, 174) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: rgb(237, 65, 35) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 18px;
    transition: 0.5s;
}

.home-slide {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
}

.navbar {
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-header {
    margin-top: 100px;
    margin-bottom: 100px;
}

.hero-header img{
    max-height: 700px;
}

.user-detail a.active {
    color: rgb(237, 65, 35);
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: rgb(237, 65, 35);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

.align-left-text p {
    margin-bottom: 0rem !important;
}

.align-center-text p {
    margin-bottom: 0rem !important;
}

.dropdown .dropdown-menu a:hover {
    background: rgb(251, 207, 174) !important;
    color: rgb(237, 65, 35);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: 0.5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, 0.8);
}
/*** Navbar End ***/

.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    background: linear-gradient(
        rgba(255, 181, 36, 0.7),
        rgba(255, 181, 36, 0.7)
    );
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: rgb(237, 65, 35);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 20px;
}

.carousel-control-prev {
    margin-left: 20px;
}

.page-header {
    position: relative;
    background: url(../img/banner.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Hero Header end ***/
.featurs-item {
    aspect-ratio: 1 / 1;
    width: 100%;
    background-size: cover; /* Scale the image to cover the entire div */
    background-position: center; /* Center the image in the div */
    background-repeat: no-repeat; /* Prevent the image from repeating */
}

/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 120px;
    height: 120px;
}

.featurs .featurs-item .featurs-icon::after {
    content: "";
    width: 35px;
    height: 35px;
    background: rgb(251, 207, 174);
    position: absolute;
    bottom: -10px;
    transform: translate(-50%);
    transform: rotate(45deg);
    background: rgb(251, 207, 174);
}
.user-detail-menu {
    padding-right: 5rem;
}
/*** featurs End ***/
.user-information {
    border-left: 1px solid rgb(251, 207, 174);
    margin-left: 3rem;
}
.user-detail-menu button {
    text-align: left;
    width: 200px;
}
.user-detail-menu .nav-tabs .nav-link,
.user-detail-menu .nav-tabs .nav-item .nav-link {
    color: rgb(0, 0, 0);
}

.user-detail-menu .nav-tabs .nav-link.active,
.user-detail-menu .nav-tabs .nav-item.show .nav-link {
    color: rgb(237, 65, 35);
}
.user-detail-menu nav div {
    width: 200px;
}
/*** service Start ***/
.service .service-item .service-content {
    position: relative;
    width: 250px;
    height: 130px;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*** service End ***/
.user-detail li div {
    max-width: 200px;
    width: 200px;
    border: 1px solid rgb(0, 0, 0);
}

/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active {
    background: rgb(237, 65, 35) !important;
}

.fruite .tab-class .nav-item a.active span {
    color: rgb(251, 207, 174) !important;
}

.fruite .fruite-categorie .fruite-name {
    line-height: 40px;
}

.fruite .fruite-categorie .fruite-name a {
    transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
    color: rgb(251, 207, 174);
}

.fruite .fruite-item {
    height: 100%;
    transition: 0.5s;
}
/* .fruite .fruite-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
} */

.fruite .fruite-item .fruite-img {
    overflow: hidden;
    transition: 0.5s;
    background-color: white;
    /* border-radius: 10px 10px 0 0; */
}

.fruite .fruite-item .fruite-img img {
    transition: 0.5s;
}

.fruite .fruite-item .fruite-img img:hover {
    transform: scale(1.3);
}

.hoverZoomImage {
    transition: 0.5s;
}

.hoverZoomImage:hover {
    transform: scale(1.2);
}

.hoverZoomImageSlide {
    transition: 0.5s;
}

.hoverZoomImageSlide:hover {
    transform: scale(1.1);
}

.hoverZoomProductDetailImage {
    transition: 0.5s;
}

.hoverZoomProductDetailImage:hover {
    transform: scale(4);
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
    background-color: white;
    border: 5px solid rgb(251, 207, 174);
    border-radius: 10px;
    z-index: 10;
}

/*** Fruits End ***/

/*** vesitable Start ***/
.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}

.vesitable .vesitable-item:hover {
    /* box-shadow: 0 0 55px rgba(0, 0, 0, 0.4); */
}

.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 0px;
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: rgb(237, 65, 35);
    padding: 5px 25px;
    border: 1px solid rgb(251, 207, 174) !important;
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-prev:hover {
    background: rgb(251, 207, 174) !important;
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: rgb(237, 65, 35);
    padding: 5px 25px;
    border: 1px solid rgb(251, 207, 174) !important;
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: rgb(251, 207, 174) !important;
    color: var(--bs-white);
}
/*** vesitable End ***/

/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: rgb(237, 65, 35);
}
/*** Banner Section End ***/

/*** Facts Start ***/
.counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px;
}

.counter h4 {
    color: rgb(251, 207, 174);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter h1 {
    margin-bottom: 0;
}
/*** Facts End ***/

/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: rgb(237, 65, 35);
    padding: 5px 25px;
    border: 1px solid rgb(251, 207, 174) !important;
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: rgb(251, 207, 174) !important;
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: rgb(237, 65, 35);
    padding: 5px 25px;
    border: 1px solid rgb(251, 207, 174) !important;
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: rgb(251, 207, 174) !important;
    color: var(--bs-white);
}
/*** testimonial End ***/

/*** Single Page Start ***/
.pagination, .lover-pagination, .perview-pagination, .news-pagination {
    display: inline-block;
}
.pagination a.disabled, .lover-pagination a.disabled, .perview-pagination a.disabled, .news-pagination a.disabled  {
    pointer-events: none;
    color: #aaa;
}
.cart-perview-item.disable {
    background-color: unset;
    cursor: unset;
}
.pagination a, .lover-pagination a, .perview-pagination a, .news-pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid rgb(251, 207, 174) !important;
    margin: 0 4px;
}

.pagination a.active , .lover-pagination a.active, .perview-pagination a.active, .news-pagination a.active{
    background-color: rgb(237, 65, 35);
    color: var(--bs-light);
    border: 1px solid rgb(251, 207, 174) !important;
}

.pagination a:hover:not(.active), .lover-pagination a:hover:not(.active), .perview-pagination a:hover:not(.active), .news-pagination a:hover:not(.active) {
    background-color: rgb(237, 65, 35);
}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid rgb(251, 207, 174) !important;
}
/*** Single Page End ***/
.shopee-select {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 2px;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    min-height: 2.5rem;
    min-width: 4rem;
    outline: 0;
    overflow: visible;
    padding: 0.5rem;
    position: relative;
    text-align: left;
    word-break: break-word;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 100%;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.tooltip-text {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tooltip-container:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}


.information-tooltip-text {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.information {
    overflow: hidden; /* make sure it hides the content that overflows */
    white-space: nowrap; /* don't break the line */
    text-overflow: ellipsis; /* give the beautiful '...' effect */
    display: inline;
}
.tooltip-wrapper {
    position: absolute;
    visibility: hidden;
}

.has-tooltip:hover .tooltip-wrapper {
    visibility: visible;
    opacity: 1;
}
.news-detail img {
    width: 100% !important;
}
.information-tooltip-text:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-bottom: 8px solid #000000;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

.banking-transfer-detail {
    display: none;
}
.momo-transfer-detail {
    display: none;
}
.check-box {
    border-color: rgb(237, 65, 35);
    color: rgb(237, 65, 35);
}
/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: rgb(251, 207, 174) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}
.mr-3 {
    margin-right: 1.5rem;
}
.mr-2 {
    margin-right: 1rem;
}
/*** Footer End ***/

.border-product {
    border-width: 1px 1px 0px 1px;
    border-style: solid;
}

.owl-stage {
    display: flex;
}
.img-same-height {
    max-height: 250px !important;
}
.owl-same-height {
    height: 250px !important;
}

.vesitable-owl .product-name,
.vesitable-owl .owl-description {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 100%;
}

.product-card .product-description, .product-description-lover {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 100%;
}
.border-right {
    border-right: 1px solid rgb(0, 0, 0);
}

.center-align {
    display: flex;
    align-items: center; /* Vertically center */
    justify-content: center; /* Horizontally center (optional) */
    text-align: center; /* Optional: to center text inside the p tag */
}

/* .bg-red {
    background-color: rgb(251, 207, 174) !important;
} */
.dropdown-item:hover {
    background-color: rgb(251, 207, 174) !important;
}
.bg-red {
    background-color: rgb(237, 65, 35) !important;
}

.color-red {
    color: rgb(237, 65, 35) !important;
}
.color-black {
    color: rgb(0, 0, 0);
}

.bg-brown {
    background-color: rgb(251, 207, 174) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: rgb(251, 207, 174) !important;
}

.text-primary {
    color: rgb(237, 65, 35) !important;
}
/* 
.vesitable-owl a {
    color: rgb(237, 65, 35) !important;
} */

.product-item a {
    color: rgb(251, 207, 174) !important;
}

.rounded-bottom-custom {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}
.rounded-top-custom {
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
}
.product-img {
    height: 200px;
}
.product-text-color h5,
.product-text-color h4,
.product-text-color h6,
.product-text-color p {
    color: rgb(237, 65, 35) !important;
}
.featurs-content h5,
.featurs-content h4,
.featurs-content h6,
.featurs-content p {
    color: rgb(237, 65, 35) !important;
}
.vegetable-carousel .owl-item .owl-description {
    height: 75px;
}
.vegetable-carousel .owl-item h5 {
    height: 40px;
}
.add-to-cart-btn {
    width: 105px;
    border: 2px solid !important;
}
.border-bold {
    border: 2px solid !important;
}
.contact-button {
    width: 100px;
}
.justify-content-between .add-to-cart-btn {
    padding: 0.25rem 1rem; /* Adjust padding to make the button thinner */
    align-self: center; /* Center the button vertically */
}
.right-aligned-div {
    display: flex;
    justify-content: flex-end; /* Aligns items to the right */
    align-items: center; /* Centers items vertically */
}
.justify-content-between .add-to-cart-btn-product {
    padding: 0.5rem 1rem;
    align-self: center; /* Center the button vertically */
}

.product-header h4,
.product-header h5,
.product-header .star {
    align-self: center; /* Center the button vertically */
    padding-bottom: 0px !important;
}

.p-custom-3 {
    padding: 1.5rem 1rem 0.5rem 1rem !important;
}
.p-75 {
    padding: 0.75rem !important;
}
.fruite-border-radius {
    border-radius: 25%;
    overflow: hidden;
}
.fruite-border-radius-bestseller {
    border-radius: 50px;
    overflow: hidden;
}

.w-80 {
    width: 80% !important;
}
.w-70 {
    width: 70% !important;
}
.w-60 {
    width: 60% !important;
}

.col-7-bg {
    background-color: white;
    padding: 1rem; /* Optional: Add some padding to give space around the images */
}

.bestseller .product-name,  .fruite-item .product-header .product-name {
    height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Giới hạn đúng 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.4em; /* Điều chỉnh khoảng cách dòng phù hợp */
    max-height: 2.8em; /* Đảm bảo chỉ có đúng 2 dòng (line-height * 2) */
}
.bestseller .product-name-2 {
    height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Giới hạn đúng 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.4em; /* Điều chỉnh khoảng cách dòng phù hợp */
    max-height: 2.8em; /* Đảm bảo chỉ có đúng 2 dòng (line-height * 2) */
}
.shop-product-image {
    height: 260px;
}
.col-7-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fruite-border-bestseller {
    border-style: solid !important;
    border-color: rgb(251, 207, 174) !important;
    border-width: 3px !important;
}
.fruite-border {
    border-style: solid !important;
    border-color: rgb(251, 207, 174) !important;
    border-width: 3px !important;
}
.bestseller-detail-button {
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    /* text-align: center; Ensure text is centered if needed */
}

.bestseller-detail-button button {
    align-self: center;
}
.align-center-text {
    text-align: center !important;
}
.pt-10 {
    padding-top: 10px;
}
.pb-10 {
    padding-bottom: 10px;
}
.pb-4-rem {
    padding-bottom: 4rem;
}
.me-4 {
    color: rgb(251, 207, 174) !important;
}
.color-be-custom {
    color: rgb(251, 207, 174) !important;
}

.color-red-custom {
    color: rgb(237, 65, 35) !important;
}

/* .g-4, .gx-4 {
    --bs-gutter-x: 2.5rem;
    --bs-gutter-y: 3.5rem;
} */

.logo-box {
    height: 70px; /* Height of the container */
    width: 250px; /* Width of the container */
    overflow: hidden; /* Ensure no overflow outside the container */
}

.logo {
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Horizontally centers the content */
    height: 100%; /* Full height of the container */
}

.logo-lg img {
    height: 65%; /* Make the image height fill the container */
    width: auto; /* Keep the aspect ratio of the image */
    max-width: 65%; /* Ensure the image does not exceed the container's width */
    object-fit: contain; /* Ensure the image fits within the container without cropping */
}

.bg-secondary {
    background-color: rgb(251, 207, 174) !important;
}
.bg-be-color {
    background-color: rgb(251, 207, 174) !important;
}
.bg-white-color {
    background-color: rgb(255, 255, 255) !important;
}
.home-product-g-4 {
    --bs-gutter-y: 3rem;
    --bs-gutter-x: 2rem;
}
.bg-red-color {
    background-color: rgb(237, 65, 35) !important;
}

.align-center-text {
    text-align: center;
}

.align-left-text {
    text-align: center;
}

.small-h6 {
    font-size: 0.9rem;
}

.g-4-c {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1.5rem;
}
.input-group-text {
    background-color: rgb(237, 65, 35) !important;
}

.red-placeholder::placeholder {
    color: rgb(251, 207, 174); /* Change this to the desired color */
    opacity: 1;
}
.search:focus {
    box-shadow: unset !important;
}
.custom-select {
    background-color: rgb(
        251,
        207,
        174
    ); /* Change this to the desired background color */
    color: rgb(237, 65, 35); /* Change this to the desired text color */
}
.custom-select option {
    background-color: rgb(
        251,
        207,
        174
    ); /* Change this to the desired background color */
    color: rgb(237, 65, 35); /* Change this to the desired text color */
}

.lh125 {
    line-height: 1.2;
}
.cob {
    color: black !important;
}
.fw-bold-custom {
    font-weight: 900 !important;
    font-size: 1.15rem;
}
.footer-item {
    min-height: 150px;
}
.fw-medium {
    font-weight: 600 !important;
}

.text-secondary {
    color: rgb(251, 207, 174) !important;
}
.footer-item p,
.footer-item a {
    color: rgb(251, 207, 174) !important;
}

.footer-item h4 {
    color: rgb(237, 65, 35) !important;
}

.fa-arrow-up {
    background-color: rgb(251, 207, 174) !important;
}

.border-primary {
    border-color: rgb(251, 207, 174) !important;
    background-color: rgb(251, 207, 174) !important;
}

#checkout-form label {
    color: rgb(237, 65, 35) !important;
}
#checkout-data-table th {
    color: rgb(237, 65, 35) !important;
}

/* Custom SweetAlert2 button and text styles */
.swal2-styled.swal2-confirm {
    background-color: rgb(237, 65, 35) !important; /* Custom button color */
    color: rgb(251, 207, 174) !important; /* Custom button text color */
}

.swal2-title {
    color: rgb(237, 65, 35) !important; /* Custom title text color */
}

.swal2-content {
    color: rgb(237, 65, 35) !important; /* Custom content text color */
}

.fruite .col-lg-12 {
    /* padding-bottom: 5px; */
}

.custom-slide-rounder {
    border-radius: 50px !important;
}

.border-rtl {
    border-style: solid !important;
    border-color: rgb(251, 207, 174) !important;
    border-width: 3px 3px 0px 3px !important;
}

.border-lt {
    border-style: solid !important;
    border-color: rgb(251, 207, 174) !important;
    border-width: 3px 0px 0px 3px !important;
}

.col-custom-5 {
    flex: 0 0 20%;
    max-width: 20%;
}

.news-item a {
    color: #000;
}

.news-item {
    list-style-type: none;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-bottom: 3px solid rgb(251, 207, 174) !important;
    border-radius: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.news-detail img {
    max-width: 700px;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.news-item img {
    max-width: 120px;
    margin-right: 1rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.news-content {
    flex: 1;
    min-width: 0; /* Ensures content doesn't grow beyond available space */
}

#discount-code {
    padding-left: 10px;
}

.news-title {
    color: rgb(237, 65, 35);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.news-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 5.5em;
    word-wrap: break-word;
}

.cart-perview-item p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    word-wrap: break-word;
}
.w-product {
    width: 70% !important;
}
.news-date {
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.5rem;
}

.img-fluid {
    width: 100px;
    height: auto;
}

.prod-border {
    border-radius: 50px !important;
    border: 3px solid rgb(251, 207, 174) !important;
}

.ts-7 {
    font-size: 0.9rem;
}
.ts-8 {
    font-size: 0.8rem;
}

.mt-0 {
    margin-top: 0px !important;
}

.col-lg-8-5 {
    flex: 0 0 70.833333%; /* 8.5/12 = 70.833333% */
    max-width: 70.833333%;
}
.col-lg-0-5 {
    flex: 0 0 4.166667%; /* 0.5/12 = 4.166667% */
    max-width: 4.166667%;
}
.product-detail-information img {
    width: 100% !important;
}
.container .featurs-row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.product-detail-image img {
    padding: 5px 0;
}

/* .custom-gap {
    justify-content: space-between !important;
} */
.text-bold {
    font-weight: bold;
}
/* 
.custom-heigh-image {
    aspect-ratio: 1 / 1;
} */

.p-3-product {
    padding: 1rem 0.5rem 1rem 1rem !important;
}
.ui-menu-item-wrapper {
    display: flex;
    align-items: center;
}
.ui-menu-item-wrapper img {
    margin-right: 10px;
    width: 50px !important; /* Điều chỉnh kích thước hình ảnh */
    height: 50px !important;
    object-fit: cover;
}

.strike-through {
    text-decoration: line-through;
}
.mt-4-custom {
    margin-top: 1.5rem !important;
}
.cart-items img {
    width: 80px;
    height: 80px;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}

.user-name {
    text-align: center;
}
.small-highlight-product, .small-sticky-div {display: none;}
.big-highlight-product, .big-sticky-div {display: block;}
.cart-confirm-image {
    min-width: 100px !important;
    min-height: 80px !important;
}
.cart-checkout-image {
    width: 50%;
}
.py-5-custom {
    padding-top: 2.4rem !important;
    padding-bottom: 3rem !important;
}
.cart-checkout-table table thead tr th{
    min-width: 120px;
}

.phone-modal {    
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    z-index: 1000;
}

.phone-modal h3 {
    margin: 0 0 20px 0;
}

.phone-modal button {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    background: rgb(251, 207, 174);
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.phone-modal button:hover {
    background: rgb(237, 65, 35);
    color: white;
}

.phone-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
@media (min-width: 1400px) {
    .featurs-container {
        max-width: 100% !important;
    }
}

@media (min-width: 1399px) {
    .align-left-text {
        text-align: left !important;
    }
    .custom-gap {
        gap: 0.5rem;
    }
}
@media (max-width: 991px) {
    .custom-gap {
        gap: 3rem;
    }
    .user-information {
        border-left: none;
        margin-left: 0;
    }
    .menu-color-white {
        color: white !important;
    }
    .register-item {left: 0;}
    .cart-icon {
        left: unset;
    }
    .fa-cart-custom-css {
        left: unset;
        justify-content: unset;
    }
    .cart-badge {
        left: 40px;
    }
}
@media (max-width: 768px) {
    #popup-content {
        padding: 20px;
    }
    .logo-lg img {
        height: 65%; /* Make the image height fill the container */
        max-width: 65%; /* Ensure the image does not exceed the container's width */
    }
    .small-highlight-product, .small-sticky-div {display: block;}
    .big-highlight-product, .big-sticky-div {display: none;}
}
@media (max-width: 500px) {
    .cart-confirm-table table thead tr th:not(:last-child) {
        min-width: 120px;
    }
    .cart-confirm-table table thead tr th:last-child {
        min-width: 90px;
    }
    .cart-checkout-table table thead tr th:not(:first-child) {
        min-width: 120px;
    }
    .cart-checkout-table table thead tr th:first-child {
        min-width: 130px;
    }
    .cart-confirm-item {
        min-width: 80px;
    }
    .cart-confirm-image {
        width: 80%;
    }
    .cart-checkout-image {
        width: 80px !important;
    }
    .mt-4-custom {
        margin-top: 1rem !important;
    }
    .w-product {
        width: 50% !important;
    }
    #popup-content {
        width: 80vw;
        top: 10vh;
        margin-bottom: 10vh;
        max-width: 700px;
        height: auto;
    }
    .gap-in-small-screen {
        gap: 3rem;
    }
    .hero-header {
        margin-bottom: 50px;
    }
    .home-slide {
        height: 300px;
    }
    .featurs-container {
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
    }
    .container .featurs-row {
        width: 80%;
    }

    /* Hover effect on small screens for left and right images */
    .right-image:hover {
        transform: translate(-150%, -50%) scale(4);
    }
    .left-image:hover {
        transform: translate(150%, -50%) scale(4);
    }
    .user-name {
        text-align: left;
    }

    .fa-user-custom-css {
       top: 22px;
    }
    .fa-cart-custom-css {
        width: 50%;
    }
    .vesitable .owl-nav .owl-next, .vesitable .owl-nav .owl-prev {
        top: 5px;
    }
    .testimonial .owl-nav .owl-next, .testimonial .owl-nav .owl-prev {
        top: -44px;
    }
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: 0.5s;
        opacity: 0;
    }
}
