/* User Header Cart Section */
.cart-dropdown {
    display: none;
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}
.cart-dropdown.show {
    display: block;
}
#cart-count, #mobile-cart-count {
    display: none;
    transition: opacity 0.3s ease-in-out;
}
/* User Header All Brands Section */
.categories-dropdown-active-large {
    display: none;
    opacity: 1;
    visibility: visible;
}
.categories-dropdown-active-large.show {
    display: block;
}

/* Home Slider - Custom Arrow Button Styles */
.carousel-slider-arrow .carousel-slider-btn {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px; /* Reduced size */
    height: 40px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 10px;
    transition: all 0.2s ease-out;
    text-align: center;
    font-size: 14px; /* Smaller arrow */
    color: #fff;
    border: 2px solid #fff;
}
/* Positioning */
.carousel-control-prev,
.carousel-control-next {
    width: auto; /* Remove default Bootstrap width */
}
.carousel-control-prev .carousel-slider-btn {
    left: 20px;
}
.carousel-control-next .carousel-slider-btn {
    right: 20px;
}
/* Hover Effect */
.carousel-slider-arrow .carousel-slider-btn:hover {
    background-color: #fb6060;
    color: #fff;
    border-color: #fb6060;
}
/* Hide Next & Previous Buttons on Mobile */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
      display: none !important;
    }
  }
/* End Home Slider */

/* notify message button */
.custom-success-close-button {
    border-radius: 5px;
    border: 1px solid #a3cfbb;
}
.custom-error-close-button {
    border-radius: 5px;
    border: 1px solid #f1aeb5;
}

.content-center {
    place-content: center;
    text-align: center;
}
.btn-white {
    background-color: #fff !important;
    color: var(--bs-theme-dark) !important;
}

.section-heading h3 {
    color: var(--bs-theme-dark);
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}
.section-heading h3::after {
    content: "";
    width: 100px;
    height: 2px;
    background: var(--bs-theme-red);
    position: absolute;
    bottom: 0;
    left: 0;
}
.section-heading p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.40;
    color: var(--bs-theme-dark);
    margin-bottom: 15px;
}
.title h3 {
    color: var(--bs-theme-dark);
}
.text-with-dot {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px; /* Space between text and dot */
    text-align: center;
    white-space: nowrap;
}
.text-with-dot .dot {
    position: relative;
    height: 6px;
    width: 6px;
    background-color: var(--bs-theme-red);
    border-radius: 50%;
}

/* Medium screens (Tablets) */
@media (max-width: 991px) {
    .section-heading h3, .title h3 {
        font-size: 28px;
    }
    .cart-totals {
        margin-top: 20px;
    }
}
  
/* Small screens (Mobile) */
@media (max-width: 768px) {
    .section-heading h3, .title h3 {
      font-size: 24px;
    }

    .about-focus img {
        max-width: 150px;
    }
    
}
  
/* Extra Small screens (Mobile) */
@media (max-width: 576px) {
    .section-heading h3, .title h3 {
      font-size: 22px;
    }

    .featured-card .row {
        flex-direction: column-reverse; /* Moves image above text */
        align-items: flex-start !important; /* Aligns image and text to the left */
        text-align: left !important;
    }
}

/* Extra Small screens (Mobile) */
@media (max-width: 425px) {
    .section-heading h3, .title h3 {
      font-size: 20px;
    }
}

/* Extra Small screens (Mobile) */
@media (max-width: 320px) {
    .section-heading h3, .title h3 {
      font-size: 18px;
    }
}

.popular-categories-see-all {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.popular-categories-see-all a {    
    background: #fff;
    padding: 5px 10px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 5%);
    border: 1px solid #dfe4ec;
    border-radius: 10px;
    color: #03163B;
    font-weight: 600;
}
.popular-categories-see-all i {
    font-size: 10px;
    margin-left: 2px;
}
.popular-categories-see-all a:hover {
    color: var(--bs-theme-red);
}

.product-grid .product-cart-wrap .product-content-wrap h2,
.related-products .product-cart-wrap .product-content-wrap h2 {
    font-size: 12px;
}

.card-2 figure {
    margin-bottom: 0px !important;
}
.card-2 {
    border-radius: 20px;
    margin: 10px;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}
.card-2 figure img {
    max-width: 200px !important;
    margin-bottom: 10px;
}
.card-2 h5 {
    padding-bottom: 15px;
    font-size: 14px !important;
}
.card-2 h5 a {
    color: var(--bs-theme-dark);
    background-color: #ffdb78;
    border-radius: 10px 0px 10px 0px;
    padding: 7px 8px 7px 12px;
}
.card-2:hover a {
    color: var(--bs-theme-dark);
}
.card-2 span {
    margin: 15px;
    font-weight: 600;
    color: var(--bs-theme-dark);
    display: ruby-text;
}
.card-brand {
    position: relative;
    background: #FFF;
    text-align: center;
    border: 1px solid #F4F6FA;
    border-radius: 15px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 5%);
    padding: 5px 0px 10px 0px;
    margin: 5px;
    transition: 0.2s;
    cursor: pointer;
}
.card-brand-box {
    position: relative;
    background: #FFF;
    text-align: center;
    border: 1px solid #F4F6FA;
    border-radius: 15px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 5%);
    margin: 5px;
    transition: 0.2s;
}
.card-manufacturer-box {
    position: relative;
    background: #FFF;
    text-align: center;
    border: 1px solid #F4F6FA;
    border-radius: 15px;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 5%);
    padding: 10px;
    margin: 5px;
    transition: 0.2s;
}
.custom-heading h3 {
    position: relative;
}
.custom-heading h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2.25rem;
    bottom: 0;
    width: 1.25rem;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#FFD944), color-stop(20%, #FFD944), color-stop(20%, rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0)), color-stop(40%, #FF683B), color-stop(60%, #FF683B), color-stop(60%, rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0)), color-stop(80%, #4000FA), to(#4000FA));
    background: linear-gradient(90deg, #ff1616 0%, #ff1616 20%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 40%, #0a5229 40%, #0a5229 60%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 80%, #4000FA 80%, #4000FA 100%);
}
.single-content h2 {
    position: relative;
}
.single-content h2:before {
    content: "";
    width: 70px;
    height: 4px;
    background: var(--bs-theme-red);
    position: absolute;
    bottom: -1px;
}
.single-content i {
    background: var(--bs-theme-red);
    padding: 10px;
    border-radius: 50%;
    font-size: 40px;
    color: white;
}
.newsletter .newsletter-inner img {
    max-width: 30% !important;
}
.newsletter .newsletter-inner {
    padding: 40px 60px;
}
footer {
    color: #dddddd;
    background-color: var(--bs-theme-dark);
}
.footer-logo-text a {
    border: 1.5px solid #a9a9a9;
    padding: 5px 10px 5px 0px;
    border-radius: 5px 20px 5px 20px;
    width: fit-content;
}
footer .social-icon-section {
    display: flex;
    align-items: center;
    align-self: center;
}
.social-icon-section a {
    text-align: center;
    font-size: 14px;
    margin-right: 6px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    height: 30px;
    width: 30px;
    display: inline-flex;
    background: var(--bs-theme-red);
    border-radius: 10px;
    line-height: 1;
    align-content: center;
    justify-content: center;
}
.social-icon-section a img {
    max-width: 20px;
}

.footer-link-widget .hotline p {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    display: block;
    line-height: 1;
}
.login-card {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.10);
    border: 1px solid #dfdfdf;
    border-radius: 20px;
}

.intl-tel-input,
.iti{
  width: 100%;
}

  .autocomplete-items {
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
  }
  .autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #e7e7e7; 
  }
  .autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9; 
  }
  .autocomplete-active {
    border-radius: 10px;
    /*when navigating through the items using the arrow keys:*/
    background-color: #3BB77E !important; 
    color: #ffffff; 
  }

.header-wrap .call-icon {
    border: 1px solid #fff;
    width: 18px;
    height: 18px;
    margin-right: 5px;
}
.bg-secondary-light {
    background-color: rgba(255, 124, 8, .1);
}

.logo.logo-width-1 a img {
    width: 150px !important;
    min-width: 150px !important;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}
.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-blue-light {
    background-color: #ebf1f6;
}
.text-red {
    color: var(--bs-theme-red);
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
}
.text-grey-dark {
    color: var(--bs-theme-dark);
}
.text-green {
    color: #0a5229;
}
.text-card-muted {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #667085;
}
.featured-card {
    padding: 10px 15px !important;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff !important;
}

.featured-card img {
    margin-bottom: 10px !important;
    width: 45px !important;
    background: #eaf5ff;
    border-radius: 30%;
    padding: 5px;
    margin-bottom: 0 !important;
}
.featured-card h4 {
    margin-bottom: 18px !important;
}
.featured-card p {
    margin-bottom: 10px !important;
}
.about-us-img img {
    border-radius: 10px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
    border: 2px solid #d5eee2;
}
.footer-logo img {
    width: 150px;
    background-color: #FFF;
    border-radius: 10px 0px 10px 0px;
    padding: 8px;
}
.custom-font {
    line-height: 24px;
    color: #fff;
    font-size: 16px;
    font-family: Roboto, sans-serif;
}
.custom-font-light {
    font-size: 14px;
    font-family: Roboto, sans-serif;
    color: #aab4ba;
    line-height: 1.25rem;
}

.totall-product p {
    font-size: 18px;
    color: var(--bs-theme-dark);
}

.page-about-us-section h4 i {
    background: var(--bs-theme-red);
    padding: 6px;
    font-size: 18px;
    border-radius: 10px;
    color: white;
}
.about-focus img {
    border-radius: 20px;
    width: 100%;  /* Makes the image responsive */
    height: auto;
}

.contact-heading {
    background: var(--bs-theme-red);
    inline-size: max-content;
    padding: 10px;
    border-radius: 20px 0px 20px 0px;
    color: white;
}
.contact-box {
    display: flex;
    align-items: stretch;
}
.light-box {
    padding: 30px;
    border: 1px solid #ededed;
    border-radius: 20px;
}
.responsive-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* This maintains a 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.responsive-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    .d-lg-hotline {
        display: block !important;
    }
}

.food-text {
    padding-bottom: 0px !important;
    position: relative;
    bottom: 25px;
}
.food-text a {
    font-size: 16px;
}

.associates-enquiry-section {
    width: 100%;
    background-image: url(https://m.media-amazon.com/images/G/01/sell/images/colors/blue50-100.svg);
    background-size: cover;
    background-position: center center;
    padding: 50px;
    clear: both;
    display: table;
    border-radius: 20px;
    overflow: hidden;
    min-height: 230px;
}
.associates-enquiry-section button {
    z-index: 5;
    position: relative;
}
.associates-enquiry-section img {
    z-index: 1;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    right: 50px;
    bottom: 0;
    max-width: 40%;
}
.associates-enquiry-section .wave-flip {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}
.associates-enquiry-section .wave-flip {
    bottom: 0;
    left: 0;
    min-width: 768px;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.our-achievements-section {
    width: 100%;
    padding: 10px 15px;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
    background-color: #e4eff9;
    border-radius: 15px;
}
.our-achievements-inline {
    display: -webkit-inline-box;
}
.our-achievements-section p {
    font-size: 13px;
    font-weight: 600;
}

.become-section-box {
    padding-top: 10px;
}
.experince-item {
    background-color: #fff;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 30px;
}
.experince-item.grey {
    background-color: #fbfdff;
}
.mw44 {
    max-width: 44px;
}
.exp-title {
    margin-top: 5px;
    margin-bottom: 10px;
    font-family: Calibre, sans-serif;
    font-size: 20px;
    font-weight: 700;
}
.exp-text {
    color: var(--chili-text);
    font-size: 18px;
    line-height: 1.5;
}
.experience-grid.mt60 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}
.experience-grid.mt60.three {
    grid-template-columns: 1fr 1fr;
}

/* Brands Filter */
.brand-filter-btn {
    color: #fff;
    background: var(--bs-theme-red);
    border: 1px solid #ededed;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-filter-btn i {
    color: #fff;
    font-size: 16px;
    margin-right: 5px;
}
/* Change button style when clicked or focused */
.brand-filter-btn:hover {
    background: var(--bs-theme-dark);
    color: white;
    border-color: var(--bs-theme-dark);
    outline: none;
}
/* Modal content same as primary-sidebar */
.modal-content.filter-content {
    padding: 10px;
    border: 1px solid #ececec;
    border-radius: 15px;
}
/* Title styling */
.modal-title.section-title.style-1 {
    font-size: 24px;
}

/* Show Sidebar on Screens >= 991px */
@media (min-width: 992px) {
    .primary-sidebar {
        display: block !important;
    }
}
/* Hide Sidebar for Smaller Screens */
@media (max-width: 991px) {
    .primary-sidebar {
        display: none !important;
    }
}
/* End Brands Filter */

/* Search suggestions box */
.suggestions-box-desktop {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    max-width: 350px;
    border-radius: 10px;
    margin-top: 10px;
    overflow-y: auto;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.suggestion-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s;
}
.suggestion-item img {
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    padding: 4px;
}
.suggestion-item span {
    color: #2b2f4c;
}
.suggestion-item.active {
    background-color: #f0f0f0;
}
.suggestion-item:hover {
    background-color: #f8f8f8;
}
.suggestions-box-desktop .no-results {
    padding: 10px;
    text-align: center;
    color: #2b2f4c;
}
/* End search suggestions box */

/* Search suggestions - Mobile Responsive */
@media (max-width: 991px) {
    .suggestions-box-mobile {
        position: relative;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        margin-top: 10px;
        overflow-y: auto;
        z-index: 1000;
        width: 100%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .suggestions-box-mobile .suggestion-item {
        padding: 10px;
        font-size: 14px;
    }

    .suggestions-box-mobile img {
        width: 35px;
        height: 35px;
    }
    .suggestions-box-mobile .no-results {
        padding: 10px;
        text-align: center;
        color: #2b2f4c;
    }
}

/* Share Link General Social Button Styling */
.share-social-btn {
    color: white !important;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* Facebook */
.share-social-btn.facebook {
    background-color: #1877F2;
}
.share-social-btn.facebook:hover {
    background-color: #145DBF;
}

/* Twitter (Now X) */
.share-social-btn.twitter {
    background-color: #1DA1F2;
}
.share-social-btn.twitter:hover {
    background-color: #0D8CD6;
}

/* WhatsApp */
.share-social-btn.whatsapp {
    background-color: #25D366;
}
.share-social-btn.whatsapp:hover {
    background-color: #1EBE57;
}

/* LinkedIn */
.share-social-btn.linkedin {
    background-color: #0077B5;
}
.share-social-btn.linkedin:hover {
    background-color: #005F90;
}

/* Popular Category */
.popular-category-box {
    width: 12.50%; /* 100 / 8 items */
    padding: 15px;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .popular-category-box {
        width: 20%; /* 5 items per row */
    }
}

@media (max-width: 992px) {
    .popular-category-box {
        width: 20%; /* 5 items per row */
    }
}

@media (max-width: 768px) {
    .popular-category-box {
        width: 33.33%; /* 3 items per row */
    }
}

@media (max-width: 576px) {
    .popular-category-box {
        width: 33.33%; /* 2 items per row */
    }
}
/* End Popular Category */

.accordion-button {
    font-size: 13px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    box-shadow: none;
    border-radius: 6px !important;
}

.accordion-button img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.accordion-button:hover {
    background-color: #e6f0ff;
    color: #0056b3;
}

.accordion-button::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    color: #eb5e28;
    font-size: 14px;
    transform: translateY(-50%) rotate(0deg);
    background-image: none;
}

.accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
    background-image: none;
}

.accordion-body {
    padding: 0.5rem 1rem;
}

.accordion-body li {
    list-style: none;
    border-bottom: 1px solid #F2F3F4;
    padding: 6px 6px;
    margin: 0 0 5px 0;
}

.accordion-body li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.accordion-body li a {
    color: #333;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.accordion-body li a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 20px;
    font-size: 10px;
    color: #ccc;
}

.accordion-body li:hover a{
    color: #eb5e28;
}

.accordion-body li:hover a::before {
    color: #eb5e28; /* color on hover */
}