@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root{
    --primary-color: #E61D25;
    --primary-dark: #E61D25;
    --text-color: rgb(122, 122, 122);
    --light-background: #f1f1f1;
    --secondary-background: #231900;
    --main-heading: 42px;
    --secondary-heading: 24px;
    --black-color: black;
    --font-weight-medium: 500;
    --font-weight-bold:  700;
    --secondary-text : #757575;
}

.sale-badge{
    /* background: var(--secondary-background); */
    color: var(--primary-color);
    font-weight: 700;
    /* position: absolute; */
    top: 5px;
    font-size: 14px;
}
.sale-badge-product{
    background: var(--secondary-background);
    position: absolute;
    right: 10px;
}
/* preloader */
/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999;
    opacity: 1; /* Fully visible initially */
    transition: opacity 1s ease-in-out; /* Smooth fade-out transition */
  }
  
  .spinner {
    position: relative;
    width: 100px;
    height: 100px;
    border: 4px solid transparent;
    border-top: 4px solid red; 
    border-right: 4px solid red; 
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  .center-image {
    position: absolute;
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
  }
  
  /* Animation */
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Content Styles */
  .content {
    opacity: 0; /* Hidden initially */
    transition: opacity 1s ease-in-out; /* Smooth fade-in effect */
    display: none;
  }
/* Hide the default checkbox */
.custom-checkbox .form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Style the custom checkbox to match Bootstrap's default size */
.custom-checkbox .checkmark {
    display: inline-block;
    width: 16px; /* Match Bootstrap's default checkbox size */
    height: 16px;
    background-color: white;
    border: 1px solid #6c757d; /* Bootstrap default border color */
    border-radius: 2px; /* Slightly rounded edges like Bootstrap */
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 6px; /* Adjust spacing */
}

/* Change background color when checked */
.custom-checkbox .form-check-input:checked + .checkmark {
    background-color: var(--primary-color); /* Change checkbox color */
    border-color: var(--primary-color);
}

/* Add a checkmark when checked */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px; /* Adjusted for smaller checkbox */
    top: 0px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Show the checkmark when checked */
.custom-checkbox .form-check-input:checked + .checkmark::after {
    display: block;
}

  
header{
    height:100px;
}
#notificationDropdown{
    border:none;
    background:none;
}
#notificationDropdown i{
    font-size:24px;
}
#notificationDropdown span{
    position:absolute;
    top:-10px;
}
#notificationDropdown::after{
    display:none !important;
}
body{
    font-family: "Montserrat", sans-serif;
}
p{
    font-family: "Open Sans", sans-serif;
}
*{
    list-style: none;
    text-decoration: none !important;
    box-sizing: border-box;
}
.main-heading{
    font-size: 54px;
}
.btn-bordered{
    border: 1px solid black;
    background: var(--light-background);
    color: black !important;
    text-shadow: none !important;
    font-weight: var(--font-weight-medium);
    transition: transform 0.3s ease;
}
.btn-bordered:hover{
    transform: scale(1.03);
}
.btn-border{
    background: var(--light-background);
    color: black !important;
    text-shadow: none !important;
    width: 74px;
    font-weight: var(--font-weight-medium);
    transition: transform 0.3s ease;
}
.btn-signUP{
    transition: transform 0.3s ease;
    /* width: 90px; */
    font-weight: var(--font-weight-medium);
    
    
}
.btn-signUP:hover , .btn-border:hover{
    transform: scale(1.03);
}
.order-btn{
    font-weight: var(--font-weight-medium);
}
.secondary-heading{
    font-size: 18.55px;
    font-weight: bold;
    margin-bottom: 0px;
}
.cart-btn{
    background: transparent;
    border: none;
}
.cart-content {
    flex: 1; /* Allow the content to take up remaining space */
    overflow-y: auto; /* Enable vertical scrolling */
}
.cart-count{
    background: var(--secondary-background);
    color: white;
    width: 25px;
    height: 25px;
    display: flex;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: -10px;
    justify-content: center;
    align-items: center;
}
#show-cart-btn{
    border-radius:5px 0 0 5px;
    position: fixed;
    right: 0px;
    top: 300px;
    z-index: 999090;
    border: none;
    background: var(--primary-color);
    color: black;
}
#show-cart-btn:hover{
    transform: translateX(-3px);
}
#show-cart-btn svg{
    font-size: 24px;
}

.toast-top-space {
    top: 70px !important; /* Adjust this value as needed */
}

/* thankyou page */
.order-notice{
    background-color: var(--primary-dark);
}

/* Customize the progress bar */
.progress-danger {
    position: absolute;
    bottom: 0; /* Place it at the bottom of the alert */
    right: 0;
    background-color: #f5f5f5; /* Light background for the progress bar container */
  }
  
  .progress-bar-danger {
    background-color: black; /* Red color for the progress bar */
    height: 1px;
    transition: width 1s linear; /* Smooth transition */
  }

  .setTime{
    width: 300px;
    position: absolute;
    z-index: 999;
    right: 3px;
    margin-top: 20px;
    margin-right: 10px;
    background-color: #e74c3c;
    color: white;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5), -3px -3px 6px rgba(0, 0, 255, 0.3);
  }

  .btt{
    background-color: #e74c3c;
    color: white;

  }

.message-popup-success {
    background-color: rgba(0, 128, 0, 0.3);
    width: 230px;
    height: 60px; /* Adjust height to accommodate progress bar */
    position: sticky;
    float: right;
    top: 10px;
    z-index: 9999;
    color: white;
    justify-content: space-around;
    align-items: center;
    display: none;
    opacity: 0;  
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding-bottom: 5px; /* Space for the progress bar */
    box-sizing: border-box;
    font-size: 14px;
}
.message-dot{
    display: block;
    width: 12px ;
    height: 12px ;
    border-radius: 50%;
    background: red;
}
.form-control{
    height: 55px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color); /* Change border color to red */
    box-shadow: 0 0 0 ; /* Optional: change the shadow to red */
    outline: none; /* Remove default outline */
}
.eye-btn{
    background-color: transparent;
    border: none;
    position: absolute;
    right: 10px;
    top: 16px;
}
.main-nav {
    /* border-bottom: 1px solid gray; */
    position: sticky;
    top: 0px;
    background-color: white;
    transition: background-color 0.3s ease;
    z-index: 1000; 
    width: 100%;
    
    
}
nav{
    height:100% !important;
}

/* header css */
.logo{
    margin-top:-10px;
}
.logo a img{
    object-position: center;
}
.top-nav{
    background: var(--primary-color);
    height: 68px ;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.social-icons {
    margin: 0;
    padding: 0;
}

.social-icons li {
    display: inline-block;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    background: var(--primary-color);
    border-radius: 50%;
}

.social-icons li a {
    font-size: 24px;
    color: #333; /* Change this to the color you prefer */
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons li a:hover {
    color: #007bff; /* Change this to your preferred hover color */
}

.bars , .bars2{
    display: none;
}
nav{
    height: 67px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn{
    background-color: var(--primary-color);
    border:none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover{
    background-color: var(--secondary-background);
    color: white;
    border:1px solid white;
}
.links , .link2{
    display: flex;
    align-items: center;
}

.links li{
    display: inline-block;
}
.links-a {
    text-decoration: none;
    color: black;
    position: relative;
    transition: color 0.3s;
    font-weight: var(--font-weight-medium);
}

.links-a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--primary-dark);
    transition: width 0.3s;
}

.links-a:hover::after {
    width: 100%;
}

.btn-header{
    display: inline-block;
}
.cart {
    display: flex;
        flex-direction: column;
        height: 100vh; /* Full height of the viewport */
    position: fixed;
    top: 0;
    right: -300px; /* Start hidden off-screen */
    height: 100%;
    width: 300px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease; /* Smooth sliding transition */
    z-index: 999999;
    overflow: auto;
}

.cart.show {
    transform: translateX(-300px); /* Slide into view */
}

.cart.hide {
    transform: translateX(0); /* Slide out of view */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.c-btn{
    position: sticky;
    bottom: 0;
    background-color: white; /* Match the background color */
    padding: 10px 0;
    border-top: 1px solid #ddd; /* Optional: Add a border for separation */
}
.cart-popup{
    border: 3px solid var(--primary-color);

}

/* homepage css */

.search{
    font-size:14px;width:140px;height:48px;font-weight:bold;margin-left:15px;
}
.landing-top{
    background-color: rgb(255, 179, 80);
}

.mini-heading{
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
}
.heading{
    font-size: var(--main-heading);
    font-weight: bold;
    text-align: center;
}
.landing-search{
    height: 48px;
    /* width: 78%; */
    border: 1px solid lightgray;
}
.text-primary{
    color: var(--primary-color) !important;
    
}
.slick-prev {
    left: 10px;
    z-index: 1;
    background: var(--primary-color);
    border-radius: 50%;
}

.slick-next {
    right: 10px;
    z-index: 1;
    background: var(--primary-color);
    border-radius: 50%;
}
.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    color: white;
}
.slick-prev:hover, .slick-next:hover {
    background: var(--primary-dark);
}
.category-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.card-image {
    /* border-radius: 50%; */
    width: 100%; 
    height: 200px;
    overflow: hidden; 
}


.card-image img {
    width: 100%; 
    height: 100%; 
    object-fit: contain;
    object-position: center; 
}
.product-image-container {
    width: 100%;
    height: 300px; /* or whatever height you prefer */
    overflow: hidden; /* Hides parts of the image that are outside the container */
  }
  .semi-heading{
    font-size: 24px;
    font-weight: 600;
  }
  .product-headings a{
      color:black;
      transition:.1s  all;
  }
  .product-headings a:hover{
      color:var(--primary-color);
  }
  .product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product-description{
    height: 60px;
    color:var(--secondary-text);
  }
.category-name{
    font-size: var(--secondary-heading);
    font-weight: var(--font-weight-medium);
    text-align: center;
}

.category-detail{
    text-align: center;
    color: var(--text-color);
}
.info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.divider {
    display: block;
    border: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color) 70%, rgba(255, 255, 255, 0));
}
.product-cards{
    box-shadow: 1px 1px 10px #f9f9f9;
    transition: .5s ease all;
}
.product-cards:hover{
    box-shadow: 1px 1px 10px #cfcfcf;
}

.old-price{
    font-size: 15px;
    font-weight: 600;
    margin-right: 5px;
    
    text-decoration: line-through !important;
}
.sale-price{
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}
.image img {
    width: 100%;
    height: 250px;
    display: block;
    margin-bottom: 15px;
    object-fit: cover;
}
.background{
    background-color: rgb(248, 242, 242);
    padding: 0px 5px;
    margin-bottom: 5px;
}
.discount-banner2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.slider-btn{
    right: 35px; bottom: 90px;
}
/* shop page css */
.shop-landing{
    height: 360px;
}
.tab-container{
    background: rgb(238, 238, 238);
}
.wishlist-icon-container{
    position: absolute;top: 5px;right: 10px;
}
.shop-tab{
    background-color: rgb(255, 255, 255);
}
.shop-product-img{
    height: 70px;
    width: 70px;
    
}
.shop-product-img img{
   
    object-fit:cover;
}
.box-shadow{
    box-shadow: 0px 0px 11px 1px rgb(187, 184, 187);
}
.order-now{
    cursor: pointer;
}
.order-now:hover{
    /* color: var(--primary-color); */
}
.shop-orderNow-btn{
    margin-top:-45px;z-index: 1;
}
#viewMoreButton{
    background:none;
    border:none;
    text-decoration:underline;
}
#viewMoreButton:hover {
     transform: scale(1.03);
}
.splide__pagination{
  bottom:-2.5em !important;  
}
.splide__pagination__page.is-active{
    background:var(--primary-color) !important;
}
.shopTrending{
    height: 560px;
}
.shopTrending img{
    width: 100%;
    height: 460px;
    margin-top: 10px;
    object-fit: contain;
}
.product-popup{
    height: 90vh;
    overflow-y: scroll;
}
/* Style the checkbox */
.checkbox-wrapper input[type="checkbox"].large-checkbox {
  -webkit-appearance: none; /* Remove default styles in WebKit browsers */
  -moz-appearance: none;    /* Remove default styles in Firefox */
  appearance: none;         /* Remove default styles */
  width: 15px;              /* Set width to 15px */
  height: 15px;             /* Set height to 15px */
  border: 2px solid #222;   /* Dark border to match the black style */
  border-radius: 3px;       /* Rounded corners */
  position: relative;
  cursor: pointer;
  background-color: #fff;   /* White background by default */
  margin: 0;                /* Remove default margin */
  transition: background-color 0.3s ease, border-color 0.3s ease; /* Smooth transitions */
}

/* Change background color to black when checked */
.checkbox-wrapper input[type="checkbox"].large-checkbox:checked {
  background-color: #222;   /* Dark background when checked */
  border-color: #222;       /* Dark border when checked */
}

/* Create the checkmark when checked */
.checkbox-wrapper input[type="checkbox"].large-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 3px;                /* Positioning the checkmark inside */
  top: 1px;                 /* Positioning the checkmark inside */
  width: 5px;               /* Checkmark width */
  height: 8px;              /* Checkmark height */
  border: solid white;      /* White checkmark */
  border-width: 0 2px 2px 0; 
  transform: rotate(45deg);  
  opacity: 0;               
  animation: checkmark-animation 0.4s forwards; /* Animation for the checkmark */
}

/* Animation for the checkmark */
@keyframes checkmark-animation {
  0% {
    opacity: 0;
    transform: rotate(45deg) scale(0);
  }
  100% {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}

.p-name{
    display: none;
}
.shop-modal-footer{
    position:sticky;
    bottom:0;
    background:white;
}
input[type=radio] {
  --s: .9em;     /* control the size */
  --c: black; /* the active color */
  
  height: var(--s);
  aspect-ratio: 1;
  border: calc(var(--s)/8) solid #939393;
  padding: calc(var(--s)/8);
  background: 
     radial-gradient(farthest-side,var(--c) 94%,#0000) 
     50%/0 0 no-repeat content-box;
  border-radius: 50%;
  outline-offset: calc(var(--s)/10);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-size: inherit;
  transition: .3s;
}
input[type=radio]:checked {
  border-color: var(--c);
  background-size: 100% 100%;
}

input[type=radio]:disabled {
  background: 
     linear-gradient(#939393 0 0) 
     50%/100% 20% no-repeat content-box;
  opacity: .5;
  cursor: not-allowed;
}

@media print {
  input[type=radio] {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    background: none;
  }
}



.top.scrollable {
    padding: 19px 20px;
    height: 61px;
    position: sticky;
    top: 0;
    z-index: 1050; /* Ensure the sticky header is on top of other content */
    background: #fff; /* Optional: Set background to make sure content below doesn't show through */
    border-bottom: 1px solid #dee2e6; /* Optional: Add a border for better visual separation */
}
.btn-close{
    position: absolute;
    top: 10px;
    right: 10px;
    
}
.modal-image{
    width: 100%;
    height: 317px;
    object-fit: cover;
}
/* For WebKit-based browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px; /* Adjust scrollbar width */
}

::-webkit-scrollbar-thumb {
    background-color: #b3b3b3; /* Scrollbar thumb color */
    border-radius: 0px;
}

/* Optional: Styling for scrollbar track */
::-webkit-scrollbar-track {
    background-color: #ffffff;
    border-radius: 0 10px 10px 0; /* Apply border-radius to top-right and bottom-right corners */
}
.number-display{
    width: 20px; display: inline-block; border-radius: 0px; text-align: center;border:none;
}

.variation{
    position: relative;
    background: #f7f7f7;

}
.variation span{
    position: absolute;
    top: 10px;
    right: 30px;
    background: rgb(255, 79, 79);
    border: 1px solid red;
    color: white;
    border-radius: 10px;
}
.optional{
    position: relative;
}
.optional span{
    position: absolute;
    top:10px;
    right: 20px;
    background: var(--light-background);
    
}
.large-checkbox {
    width: 12px;
    height: 12px;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform-origin: 0 0;
  }
  
  
  /*.checkbox-wrapper:hover {*/
  /*  background-color: rgb(201, 201, 201);*/

  /*}*/
  
  /*.checkbox-wrapper.selected {*/
  /*  background-color: rgb(201, 201, 201) ;*/
  /*}*/
  
  .large-checkbox {
    width: 13px;
    height: 13px;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform-origin: 0 0;
    margin-right: 10px;
  }

  .more-text {
    display: none;
}
.read-more {
    cursor: pointer;
    color: var(--primary-dark);
    text-decoration: underline;
}
.hidden {
    display: none;
}
#view-more-btn{
    background:none;
    border:none;
}
.offer-img{
    height: 200px;
}
.offer-img img{
      width: 100%;
    object-fit: cover;
    height: 100%;
}
.offer-details {
  height: auto; /* Ensures dynamic height adjustment */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Maintains spacing between elements */
}

.splide__slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Keeps button at the bottom */
  height: 100%; /* Allows dynamic height growth */
  text-wrap:auto;
  line-height:1;
}

.rate-star{
    color: orange;
}
.user-rating{
    background: #F6F6F6;
}
.rating i {
    font-size: 26px;
    cursor: pointer;
}

.rating i.active {
    color: gold;
}
.rating2 i {
    font-size: 26px;
    cursor: pointer;
}

.rating2 i.active {
    color: gold;
}

.review-form {
    display: none;
}

.review-form.active {
    display: block;
}

.review-btn{
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
}
.bottom-border{
    margin-top: 80px;
}
.bottom-rating i {
    font-size: 16px;
    color: orange;
}



.wishlist-icon.fa-solid{
    border: none;
    color: orange;
    background: transparent;
    transform: scale(1);
}
.wishlist-icon:hover {
    transform: scale(1.25);
}
.auth-logo{
    width:180px;height:170px;position: absolute;top:5px; left:25px;
}
.auth-md-logo{
    width:150px;height:150px;position: absolute;top:35px; right:10px;
}
.auth-btn{
    height: 52px;
    font-size: 16px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* footer */
footer{
    background:#F7F9FB;
}
#backToTop {
    height: 50px;
    width: 50px;
    display: none; /* Hidden by default */
    position: fixed; /* Fixed position */
    bottom: 20px; /* Distance from the bottom */
    right: 30px; /* Distance from the right */
    z-index: 99; /* Ensure it's on top of other elements */
    background-color: var(--primary-dark); /* Button color */
    color: white; /* Text color */
    padding: 10px 17px;
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer/hand icon */
    font-size: 18px; /* Button font size */
    transition: opacity 0.3s; /* Smooth fade-in transition */
}

#backToTop:hover {
    background-color: var(--primary-color); /* Darker color on hover */
}

.social-links li{
    display: inline-block;
}
.social-links li a{
    color: var(--black-color);
}
.footer-links li a{
    color: var(--black-color);
    font-weight: var(--font-weight-medium);
}
.nav-tabs2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* overflow: hidden; */
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.nav-tabs-container {
    overflow: hidden;
    width: 100%;
}
.nav-link2{
    font-size: 14px;
    padding:4px 10px;
    width: 90%;
    height: 40px;
    margin-top: 3px;
    margin-left: 11px;
    border-radius: 0px !important;
    background-color: var(--light-background);
    border: none;
    color: var(--black-color);
}
.nav-link.active span{
    margin-left:5px;
}
.nav-link2.active , .nav-link2:hover{
    background-color: var(--secondary-background) !important;
    color: var(--light-background) !important;
    font-weight: 500;
}
.splide__list{
    border: none;
}
.splide__arrow{
    border-radius: 0px !important;
    background: #ff000a;
    color: var(--secondary-background);
}
.custom-prev-arrow, .custom-next-arrow{
    position: absolute;
    /* left: 0; */
    top: 50%;
    width: 30px;
    border-radius: 50%;    
    background:none;
}
.custom-prev-arrow{
    left: 5px;
}
.custom-next-arrow{
    position: absolute;
    right: 5px;
}

.custom-prev-arrow i, .custom-next-arrow i{
    margin-left: -6px;
        margin-top: 4px;

}
.splide__arrow--prev{
    position: absolute;
    left: -10px;
    height: 40px;
    top:23px;
}
.splide__arrow--next{
    position: absolute;
    right: -10px;
    height: 40px;
    top:23px;
}
.splide__arrow--next svg, .splide__arrow--prev svg{
    fill:white !important;
}
.slick-dotted.slick-slider{
    margin-bottom: 0px !important;
}
/* .slick-dots{
    bottom: 45px;
} */
.multi-border {
    position: relative;
    height: 3px; /* Adjust height as needed */
  }
  
  .multi-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px; /* Adjust border thickness as needed */
    background: linear-gradient(to right, var(--primary-color) 10%, var(--light-background) 10%);
  }

  .nav-item3{
    display: flex;
    width: 100%;
    
  }
  .nav-item3 .nav-link.active{
    background: var(--light-background);
    width: 100%;
    display: flex;
    border: none;
    border-radius: 0px;
  }
  .nav-tabs .nav-link{
    border: none;
    color: black;
  }
  .splide__arrow svg{
    height: 12px;
  }
  .shop-popup{
    max-width: 600px !important;
  }

  .ctrl-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background-color: white;
    /* outline: 1px solid gray; */
  }

 /* checkout page  */
 .reward-info{
    cursor: pointer;
 }
 #map {
    height: 300px;
    width: 100%;
}
.map-container{
    z-index: 1;
}
.map-tool-tip{
    background: white;
    -webkit-box-shadow: 6px 2px 62px 19px rgba(199,199,199,1);
-moz-box-shadow: 6px 2px 62px 19px rgba(199,199,199,1);
box-shadow: 6px 2px 62px 19px rgba(199,199,199,1);
position: absolute;
top: 125px;
right: 10px;
z-index: 1;
padding: 5px;
font-size: 14px;

}
.get-current{
    position: absolute;
    background: white;
    z-index: 10;
    top: 180px;
    right: 10px;
    font-size: 20px;
    width: 40px;
}
#orderTypeTabs .nav-link.active{
    color:var(--primary-color) !important;
    border-bottom:1px solid var(--primary-color) !important;
}
 .selected-address {
    border: 1px solid var(--primary-color) !important; /* Change this to your preferred color */
    /* box-shadow: 0 0 10px var(--primary-color); */
}
.ms-2.border{
    float: right !important;
}
.note{
    min-width: 100%;
    min-height: 72px    ;
}

.check-btn{
    background-color: var(--light-background);
    border: 1px solid var(--primary-color);

}
.check-btn input{
    display: none;
}
.check-btn input[type="checkbox"]:checked + .form-check-label {
    background-color: var(--primary-color);
    color: white;
}
.check-btn label{
    padding: 5px 10px;
}


.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    border: 1px solid #e4f2ff;
    padding: 20px 30px;
}
.total{
    bottom: 70px;
    margin-top: 20px;
    
}

.claim-btn{
    background: transparent;
    border: none;
    border-bottom: 1px solid black;
}

.slidecontainer {
    width: 100%; 
  }
  .slidecontainer input {
    width: 80%; 
  }
  
  /* The slider itself */
  
  
  /* Mouse-over effects */
  .slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
  }
  
  /*user dashboard*/
  .border-segment{
      width:100%;
      height:5px;
  }
.border-bars{
   background:lightgray; 
    border-radius:6px;
     height:100%;
}
@keyframes filling {
    0% {
        width: 0%;
        background-color: red;
    }
    50% {
        width: 50%;
        background-color: red;
    }
    100% {
        width: 100%;
        background-color: red;
    }
}
/* mobile footer menu */
.mobile-footer-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
    
}

.mobile-footer-menu.hidden {
    transform: translateY(100%);
}

.mobile-footer-menu i {
    color: #7e6f67;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    
}

.mobile-footer-menu li {
    color: #7e6f67;
    list-style: none;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.mobile-footer-menu li a {
    color: #7e6f67;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-footer-menu li.active i,
.mobile-footer-menu li.active {
    color: var(--primary-color);
}


.b-bars{
    animation: filling 2s infinite;
    height:100%;
    border-radius:6px;
}
.bar1{
   
    width:20%;
}
.bar2{
   
    width:35%;
}
.bar3{
   
    width:25%;
}
.bar4{
   
    width:20%;
}

  


@media(max-width:1441px){
    .main-heading{
        color: #ffffff;
        line-height: 1.2em;
        text-transform: capitalize;
        font-weight: 700;
        font-size: 30px;
    }
}
@media(max-width: 1025px){
    .main-heading{
        
        font-size: 20px;
    }
    .links li a {
        text-shadow:none;
        width: 100%;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .links{
        border-radius: 10px 10px 0 0;
        position: fixed;
        z-index: 999;
        bottom: 0;
        right: 0;
        width: 100vw;
        height: 50vh;
        background-color: white;
        display: none;
        border: 1px solid lightgray;
    }
    .links2{
        display: none;
        position: fixed;
        z-index: 99999999;
        /* top: 0; */
        margin-top: 63px;
        left: 0;
        width: 80vw;
        height: 100vh;
        background-color: white;
        display: none;
    }
    .links li{
        display: block;
        margin: 20px 0;
    }
    .links li a{
        color: var(--secondary-background);
        font-size: 18px;
        font-weight: var(--font-weight-medium);
    }
    .btn-signUP{
        width: auto;
    }
    /* select[name="location"] {
        color: black !important;
        font-size: 18px;
        font-weight: var(--font-weight-medium);
    } */
    .bars{
        display: block;
        font-size: 25px;
    }
    .bars button{
        background: none;
        border: none;
        color: var(--secondary-background);
    }
    .bars2{
        display: block;
        font-size: 25px;
    }
    .bars2 button{
        background: none;
        border: none;
        color: var(--secondary-background);
    }
    .btn-header{
        width: 90%;
    }
    .show{
        display: block;
    }
    .background-nav{
        background: white;
    }
    .bars-btn{
        color: var(--black-color) !important;
    }
}
    @media(max-width:768px){
        #backToTop {
            bottom: 75px;
        }
        .mobile-footer-menu {
            display: block;
        }
        .slider-btn{
            bottom: 15px;
        }
        .top-nav{
            height: 60px;
        }
        .top-details .btn{
            display: inline-block;
            width: 150px;
        }
        .rating{
            font-size: 14px;
        }
        .font-small{
            font-size: 14px;
          }
        .shop-popup{
            max-width: 560px;
        }
        .links{
            display: none;
        }
        .shop-landing {
    height: 185px;
}
    .details{
        font-size: 14px !important;
    }
    .details h3{
        font-size: 16px !important;
    }
        .shop-product-img{
            width: 70px;
            height: 70px;
        }
       
    }

    @media(max-width:460px){
        .product-modal-name{
            display: inline-block;
            width: 100px;
        }
        .optional span{
            right: 8px;
            font-size: 12px;
        }
        header{
    height:100px;
}
        .heading{
            font-size: 30px;
        }
        .secondary-heading{
            font-size:16px;
        }
        .btn{
            font-size:10px;
        }
        #backToTop{
            padding:8px 15px;
        }
        .shop-landing {
            height: 125px;
        }
    
        .shop-orderNow-btn{
            margin-top:-30px;
        }
        /* .wishlist-icon-container {
            right:-32px;
        } */
    }

