@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+TAS+Beginner:wght@400..700&family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&family=Krona+One&family=Playwrite+DK+Loopet:wght@100..400&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Shrikhand&family=Sriracha&display=swap');
:root {
    --black: #000;
    --white: #fff;
   --White-Lilac:#F5F7F8;
   --Spring-Wood:#F7F7F2;
   --Shocking-Orange:#F05A37;
   --Turtle-Green:#60BC4F;
   --Avocado:#80B435;
   --Mirage:#131E2C;
   --Silver:#C7C8CC;
   --Pale-Sky:#6B7280;
   --Burning-Orange:#FC6736;
   --Dune:#333;
   --White-Smoke:#F3F4F6;
   --Dark-Fern:#0B4D01;
   --Shamrock-Green:#16A34A;
   --Sea-Green:#218838;
   --Pastel-Grey:#ccc;
   --Lime-Green:#29A816;
  }

/* CSS Document */
.br-0{
    border-radius: 0;
}

.popover {
    display: none; /* Hide by default */
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 1000;
    width: 300px;
    top:90px;
}

#popoverButton {
    padding: 0 12px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popover #popoverButton:hover {
    background-color: #d1291d;
}
.popover .search-container {
    position: relative;
    margin-bottom: 15px;
    font-size: .8rem;
}

.popover .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: .8rem;
}

.popover .search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    background: #fff;
}

.popover #closePopover {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius:5px;
    cursor: pointer;
}
.popover  h5{
    font-size: 1rem;
}
/* notification popup */
.notification-section .notification {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Center the popup */
    background-color: rgb(0 0 0 / 69%);
    color: #333;
    padding: 4px 8px;
    border-radius: 8px;
    z-index: 1000;
    width: 200px;
    text-align: left;
}

.notification-section .notification-content {
    margin: 10px 0;
}
.notification-section p{
    margin-bottom: 0;
    text-align: center;
    color: #fff;
   font-weight: 300;
}
.notification-section .notification-icon{
text-align: center;
margin-bottom: 6px;

}
.view-icon a{
    text-decoration: none;
  }
  /* category filter filter start */
  .filter-categoryDrop .subfilter-dropdown li{
    list-style: none;
    
        }
        .filter-categoryDrop label{
         width: 100%;
        }
        .filter-categoryDrop label i{
          color: var(--Dune);
          float: right;
        }

  /* end */
  /* pincode popup start */
  .popup.popupPin {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
  }
  
  .popupPin .popup-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 20px;
    width: 300px;
    text-align: center;
    border-radius: 8px;
    position: relative;
  }
  
  .popupPin .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .popupPin input {
    width: 100%;
    padding: 6px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #e6e3e3;
   
  }
   input:focus {
    outline: none; /* Ensures no outline on focus */
    border-color: #ccc; /* Optional: Maintain border color on focus */
  }
  .popupPin #searchBtn {
    background-color:var(--Burning-Orange);
    color: white;
    border: none;
    padding: 6px;
    width: 100%;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .popupPin #searchBtn:hover {
    background-color: var(--Shocking-Orange);
  }
  .popupPin h4{
    font-size: 1.2rem;
  }
  .popupPin .button-list {
    list-style-type: none;
    padding: 0;
    padding-left:0;
  }
  
  .popupPin .button-list li {
    margin: 10px 0;
    list-style: none;
  }
  
  .popupPin .btn {
    background-color:var(--Pastel-Grey);
    color:var(--Dune);
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    transition: .4s;
  }
  
  .popupPin .btn:hover {
    background-color: var(--Dune);
    color: var(--white);
    transition: .4s;
  }
  
  .popupPin .btn:focus {
    outline: none; /* Remove outline on focus */
    box-shadow: 0 0 5px rgba(183, 185, 183, 0.5);
  }
  .popup-content ul {
    padding-left: 0;
  }
  .popup-content ul li{
    list-style: none;
    margin-bottom: 8px;
  }
  /* end */
/*--------------------Product Overlay-----------------------------*/
.products-card .overlay {
    position: fixed; /* Change to fixed to cover the whole viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: none; /* Hide initially */
    justify-content: center;
    align-items: center;
    z-index: 999; /* Ensure it's above other elements */
}

.products-card .overlay-content {
    background: white; /* Background color for overlay content */
    padding: 20px 0;
    color: black; /* Change text color for better visibility */
    text-align: center; /* Center the text */
    width: 100%; /* Set width for better layout */
}

.products-card .overlay-content ul{
    display: block;
}
.products-card .overlay-content ul li{
    margin: 5px 0;
    
}
.products-card .overlay-content ul li input{
    display: none;
}
.products-card .overlay-content ul li label{
    border: 1px solid #28a745;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin: 0 5px;
    padding: 2px;
}
.products-card .overlay-content ul li label:hover{
    background-color: #e9ecef;
}
.products-card .overlay-content ul li input[type="radio"]:checked + label{
    background-color: #28a745;
    color: #ffffff;
    border-color: #28a745;
}
.products-card .add-to-cart-button{
    background-color: #198754;
    border: 1px solid #198754;
    padding: 2px 5px;
    margin-right: 1px;
}
.products-card .close-overlay-button{
    background-color: #dc3545;
    border: 1px solid #dc3545;
    padding: 2px 5px;
    margin-left: 1px;
}
/*--------------------Product Overlay-----------------------------*/
/*-----------------------Cart Page-----------------------------*/

/*-----------------------Cart Page-----------------------------*/
/* ----------------pagination start----------------------- */

.pagination-div .pagination {
	justify-content: end;
}
.pagination-div .active > .page-link,
.pagination-div .page-link.active {
	background-color: #cf5f3c;
	border-color: transparent;
	border-radius: 0;
	color: #fff;
}
.pagination-div .page-item:last-child .page-link,
.pagination-div .page-item:first-child .page-link {
	border-radius: 0 !important;
}
.pagination-div .page-link {
	color: #000;
	font-size: 0.8rem;
}
.pagination-div .page-link:focus {
	box-shadow: none;
}
.pagination-div .page-link {
	border: 0 !important;
}
.pagination-div {
	/* position: relative; */
}
.pagination-div .pagination-info {
	/* top: 28px;
    left: 105px;
    position: absolute; */
	font-size: 0.8rem;
}
.pagination-div .form-control {
	appearance: auto !important;
}
.pagination-div {
	background: #f6f7f8;
	padding: 20px;
	display: flex;
	min-height: 60px;
	justify-content: space-between;
}
.pagination-div .pagination {
	margin-bottom: 0;
	--bs-pagination-bg: #f6f7f8 !important;
}
.pagination-div .showpage {
	display: flex;
}
.showpage select{
	padding: 0!important;
}
.pagination-div .pagination-info {
	margin-left: 4px;
	padding: 8px;
}
.pagination-div .pagination li {
	margin-right: 4px;
}
.pagination-div .showpage .form-control {
	border-radius: 0;
}
/* ------------pagintaion end----------------------------- */
/*-----------------------Coupon Page-----------------------------*/

.coupon-section {
  width: 100%;
  background-image: url(../meramart/images/coupon-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  }
  .coupon-section .coupon {
  font-family: Arial, sans-serif;
  width: 100%;
  padding: 20px;
  background-color: #22dd000a;
  border-radius: 8px;
  /* border: 2px solid #60bc4f; */
  margin: 20px 0;
  position: relative;
  text-align: center;
  }
  .coupon-section .coupon-content h2 {
  font-size: 2rem;
  color: #F05A37;
  margin-bottom: 10px;
  font-family: "Sriracha", serif;
  }
  .coupon-section .coupon-content p {
  font-size: 1rem;
  color: #4f634e;
  margin-bottom: 15px;
  }
  .coupon-section .discount {
  font-size: 48px;
  font-weight: bold;
  color: #4f634e;
  margin-bottom: 20px;
  }
  .coupon-section .shop-now {
  display: inline-block;
  padding: 10px 20px;
  background-color: #60bc4f;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  }
  .coupon-section .shop-now:hover {
  background-color: #a85242;
  }
  .coupon-section .website {
  font-size: 12px;
  color: #4f634e;
  margin-top: 10px;
  }
  .coupon-section .dashed-line {
  width: 97%;
  border-top: 2px dashed #c96d59;
  margin: 20px 0;
  position: relative;
  }
  .coupon-section .dashed-line::after {
  content: "\2702";
  font-size: 16px;
  position: absolute;
  right: -20px;
  top: -13px;
  rotate: 90deg;
  color: #c96d59;
  }
  .coupon-section .coupon-content button {
  background: #fc6736;
  border: 0;
  padding: 2px 8px;
  margin-left: 5px;
  color: #fff;
  }
  .coupon-section .discoupon {
  border-bottom: 1px solid #5a635a47;
  padding-bottom: 30px;
  }
  
  .coupon-section.disabled {
    filter:grayscale(1);
  }
  /* *******************newly add css********************* */
  .checkout-form.checkapply-coupon .coupon-content h2{
  font-size:1.5rem;
  }
  .checkout-form.checkapply-coupon .coupon-content p {
  font-size: .8rem;
  margin-bottom: 0;
  }
  .checkout-form.checkapply-coupon .discount {
  font-size: 30px;
  margin-bottom: 0;
  }
  .checkout-form.checkapply-coupon .coupon-content button {
  font-size: .8rem;
  }
  .checkout-form.checkapply-coupon .coupon-content span {
  font-size: .9rem;
  }
  .checkout-form.checkapply-coupon .shop-now {
  margin-top: 14px;
  display: inline-block;
  padding: 4px 10px;
  background-color: #60bc4f;
  color: #fff;
  font-size: 12px;
  }
  /* **************end********************* */
  @media(max-width:768px) {
  .coupon-section .discount {
  font-size: 40px;
  margin-bottom: 8px;
  }
  }
  @media(max-width:375px) {
  .coupon-section .coupon-content h2 {
  font-size: 1.5rem;
  }
  .coupon-section .discount {
  font-size: 30px;
  }
  }
/*-----------------------Coupon Page-----------------------------*/
  /* PRIVACY POLICY */ 
.policy-content h4{
  color: var(--Burning-Orange);
  font-size: 1.2rem;
}
.policy-content strong{
  font-size: 1rem;
  color: var(--Dune);
}
.policy-content a{
  text-decoration: none;
}
.policy-content .headline-policy{
  font-size: 1.6rem;
  color: var(--Dune);
  padding: 20px 0;
  margin-bottom: 0;
}
.policy-content h3{
  font-size: 1.5rem;
  color: var(--Pale-Sky);
}

  /* PRIVACY POLICY end */
  /* landing page */
.firstmeramart.default-img{
text-align: end;
}
.default-img.secondmeramart{
text-align: left;
}
.default-img .custom-img{
  width: 50%; /* Adjust size as needed */
    height: auto; 
}
  .landing-wecome {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .landing-wecome .welcomeimg{
    width: 45%;
    margin: 0 auto;
  }
  .defult-section{
margin-bottom: 40px;
  }
  .defult-section .landing-pagesec{
    background: var(--Shocking-Orange);
    padding: 30px 0;
  }
  .defult-section .landing-pagesec h2{
color: var(--white);
font-size: 3.5rem;
padding-left: 20px;
text-align: center;
font-family: "Krona One", sans-serif;

  }
  .defult-section .landing-pagesec p{
    text-align:center;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0;
  }
  .buy-fresh-section .headline h3{
    font-family: "Sriracha", serif;
   font-weight: 500;
    color: var(--Pale-Sky);
    text-align: left;

    margin-bottom: 20px;
  }
  .buy-fresh-section{
    background: var(--White-Smoke);
    padding: 30px 0;
    margin-bottom: 30px;
    
      }
  .freshitem-slider{

margin-bottom: 60px;
  }
  .freshitem-slider .bottom-contentp{
    text-align: center;
  }
  .freshitem-slider .bottom-contentp p{
    font-family: "Sriracha", serif;
   font-weight: 500;
    color: var(--Pale-Sky);

  }
  .freshitem-slider .bottom-contentp a{
    background: var(--Shocking-Orange);
    color: var(--white);
    border-radius: 12px;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 1.2rem;
  }
 .unbeatablediscount .headline h3{
  font-family: "Sriracha", serif;
  font-weight: 500;
  color: var(--Pale-Sky);
  text-align: left;
  margin-bottom: 20px;

 }
 .unbeatablediscount img{
  width: 100%;
 }
 .unbeatablediscount .unbeatimg{
margin-bottom: 20px;
 }
 .partner-section{
  padding: 30px 0;
 }
 .partner-section .item img{
  width: 250px!important;
  text-align: center;
 }
 .partner-section  .fresh-card{
  text-align: center;
  display: flex;
  justify-content: center;

 }
  /* end landing page */
  /* meramart index product slider start */
.product-section .headline h3{

  font-family: "Sriracha", serif;
}
.products-card p a {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; /* Adds "..." at the end if text is truncated */
  height: 4.5em; /* Set height to accommodate 3 lines (assuming line-height of 1.5em) */
  line-height: 1.5em;
  margin-bottom: 8px;
}
.productitem-slider .rating-icon .rate-num {
line-height: 0;
margin-top: 7px;
}
.productitem-slider .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: -20px;
  top:35%;
  width: 40px;
  height: 40px;
  background: var(--white)!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.productitem-slider .owl-carousel .owl-nav button.owl-next span{
  font-size: 3rem;
  color: var(--Shocking-Orange);
  line-height: 0!important;
  width: 40px;
  height: 12px;
}
.productitem-slider .owl-carousel .owl-nav button.owl-prev{
  position: absolute;
  left: -20px;
  top:35%;
  width: 40px;
  height: 40px;
  background: var(--white)!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.productitem-slider .owl-carousel .owl-nav button.owl-prev span{
  font-size: 3rem;
  color: var(--Burning-Orange);
  line-height: 0!important;
  width: 40px;
  height: 12px;

}
.productitem-slider .owl-carousel .owl-nav button.owl-prev:hover span{
  color: var(--Burning-Orange);
}
  /* end meramart products */
  /* Products Details */
.products-price small{
    font-size: 0.9rem !important;
}
  /* Products Details */
  .meraLogin{
    width: 100%;
    background: linear-gradient(90deg, rgba(252,103,54,1) 45%, rgba(252,243,241,1) 89%);
  }
  .meraLogin p{
    margin-bottom: 0;
    padding: 8px 0;
    color: var(--white);
   
  }
  .meraLogin a{
    text-decoration: none;
 background: var(--white);
    color: var(--Shocking-Orange);
    padding: 8px 20px;
    border-radius: 4px;
    margin-left: 8px;
  }
  /* subscrition start */
  .subscribe-card{
    background: var(--White-Smoke);
    padding: 30px 0;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .subscribe-card .subscribe-headline h2{
font-size: 3.5rem;
font-weight: 700;
color: var(--Shocking-Orange);


  }
  .subscribe-card .subscribe-headline h5{
    font-size: 1.8rem;
    color: var(--Shocking-Orange);
    margin-bottom: 20px;
  }
  .subscribe-card .outer-subcard {
    padding-left: 0;
  }
  .subscribe-card .outer-subcard li{
    list-style: none;
    margin-right: 6px;
   
  }
  .subscribe-card .outer-subcard li a{
    text-decoration: none;
    font-size: 1.5rem;
    font-family: "Sriracha", serif;
    color: var(--Dune);
  }
  .subscribe-card .outer-subcard .sub-card{
    display: flex;

    background: var(--white);
    max-width: 40%;
    margin: 0 auto;
    margin-bottom: 12px;
    padding: 12px;
    transform: skew(-10deg); 
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
   
  }
  .sub-card img{
    max-width: 100%;
    margin-right: 12px;
  }
  .subscribe-img{
    text-align: center;
  }
  .subscribe-img img{
    width: 350px;
    margin-bottom: 20px;
  }
  .subscribe-card .subscribeBtn{
    margin: -45px 0 30px 0;
  }
  .subscribe-card .subscribeBtn a{
    background: var(--Lime-Green);
    text-decoration: none;
    color: var(--white);
    padding: 6px 30px 8px 30px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
  }
  /* subscription end */
  /* coupon apply */

 .coupon-section {
    width: 100%;

    background-image: url(../meramart/images/coupon-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
 }

 .coupon-section .coupon {
    font-family: Arial, sans-serif;
    width: 100%;
    padding: 20px;
    background-color: #22dd000a;
    border-radius: 8px;
    /* border: 2px solid #60bc4f; */
    margin: 20px 0;
    position: relative;
    text-align: center;
 }

 .coupon-section .coupon-content h2 {
    font-size: 2rem;
    color: #F05A37;
    margin-bottom: 10px;
    font-family: "Sriracha", serif;
 }

 .coupon-section .coupon-content p {
    font-size: 1rem;
    color: #4f634e;
    margin-bottom: 15px;
 }

 .coupon-section .discount {
    font-size: 48px;
    font-weight: bold;
    color: #4f634e;
    margin-bottom: 20px;
 }

 .coupon-section .shop-now {
    display: inline-block;
    padding: 10px 20px;
    background-color: #60bc4f;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
 }

 .coupon-section .shop-now:hover {
    background-color: #a85242;
    color:var(--white);
 }

 .coupon-section .website {
    font-size: 12px;
    color: #4f634e;
    margin-top: 10px;
 }

 .coupon-section .dashed-line {
    width: 97%;
    border-top: 2px dashed #c96d59;
    margin: 20px 0;
    position: relative;
 }

 .coupon-section .dashed-line::after {
  content: "\2702";
  font-size: 16px;
  position: absolute;
  right: -16px;
  top: -12px;
  color: #c96d59;
  rotate: 90deg;
}

 .coupon-section .coupon-content button {
    background: var(--Burning-Orange);
    border: 0;
    padding: 6px 8px;
    color: #fff;
 }
 .coupon-section .coupon-content .shop-now{
background: var(--Dark-Fern);
}
 .coupon-section .discoupon {
    border-bottom: 1px solid #5a635a47;
    padding-bottom: 30px;
 }
 .coupon-section a{
  text-decoration: none;
 }
 .viewcouponsection .main-title h5{
  color: var(--Dark-Fern);
  font-family: "Sriracha", serif;
  font-size: 1.5rem;
 }
 .coupon-section .view-couponBtn{
  background: var(--Shocking-Orange);
  color: var(--white);
 }
 .btn-close:focus {
  outline: 0;
  box-shadow:none;
  opacity: var(--bs-btn-close-focus-opacity);
 }
 /* noticifation checkout page */
 .notification.info{

  font-weight: 500;
  background: var(--white);
  padding: 8px;
 }
 .notification.info a{
  text-decoration: none;
  color: var(--Dune);
  transition: .6s;
 }
 .notification.info a:hover{
  color: var(--Shocking-Orange);
  transition: .6s;
  
 }
 .notification.info a:hover span{
  color: var(--Dune);
  transition: .6s;
 }
 .notification.info span{
  color: var(--Shocking-Orange);
 }
 .checkoutadd-section .address-checkout-card.active{
border:1px dotted var(--Dark-Fern);
padding: 12px;
 }
 .checkoutadd-section .address-checkout-card{
  border:1px solid var(--Silver);
  padding: 12px;
   }
 .checkoutadd-section .address-checkout-card{
border-radius: 8px;
  margin-bottom: 20px;
 }
 .checkoutadd-section .address-checkout-card h4{
  font-size: 1.3rem;
  color: var(--Dune);
 }
 .checkoutadd-section .address-checkout-card.active h4{
  font-size: 1.3rem;
  color: var(--Dark-Fern);
 }
 .checkoutadd-section .address-checkout-card h5{
  font-size: 1rem;
 }
 .checkoutadd-section .address-checkout-card p{
  color: var(--Pale-Sky);
  margin-bottom: 0;
 }
 .checkoutadd-section .headline-ship h4{
  margin-bottom: 20px;
    font-weight: bold;
    color: var(--Mirage);
 }

 .checkoutadd-section .address-checkout-card.active .select-button{
  background-color:var(--Dark-Fern);
 }
 .select-button {
  display: inline-block;
  padding: 6px 12px;
  margin-top: 10px;
  background-color:var(--Dune);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.checkoutadd-section .address-checkout-card .select-button:hover {
  background-color: var(--Sea-Green);
}
 /* notification checkout end */
 /* mega menu hover start */
.navbar-expand-lg .navbar-nav .dropdown-menu {
  left: 0;
}
.DropdownListWrap {
  display: none;
}

.nav-item.dropdown.DropdownArea:hover .DropdownListWrap {
  display: block;
}

.DropdownListWrap {
  transition: opacity 0.3s ease;
  opacity: 0;
}

.nav-item.dropdown.DropdownArea:hover .DropdownListWrap {
  opacity: 1;
}
 /* mega menu end */
 .deliverytime{
  font-size: .8rem;
  margin-bottom: 0;
  color: var(--Burning-Orange);
  }
  .productitem-slider{
    background: var(--Spring-Wood);
    padding: 12px;
  }
  .productitem-slider .products-card{
margin-bottom: 0;
  }
  .card-notification{
    background: var(--white);
    padding: 8px;
    margin-bottom: 6px;
    border: 1px solid var(--Burning-Orange);
  }
 .card-notification img{
  width: 24px;
  filter: invert(31%) sepia(98%) saturate(2824%) hue-rotate(2deg) brightness(94%) contrast(103%);
 }
 .card-notification a{
  text-decoration: none;
  color: var(--Shocking-Orange);
  font-weight: 400;
 }
 .plan-section img{
  width: 100%;
  padding: 12px 0;
 }
 .plan-section .subscribe-headline h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--Shocking-Orange);
  text-align: center;
}
.plan-section .subscribe-headline h5 {
  font-size: 1.8rem;
  color: var(--Shocking-Orange);
  margin-bottom: 20px;
  text-align: center;
}
.plan-section .subscribeImg {
  text-align: center;
}
.plan-section .memberimg{
  width: 60%;
  margin: 0 auto;
}
.plan-section .subscribeImg img{
width: 100%;
}
.plan-section .subscribeImg button{
background: transparent;
border: none;
}
.plan-section .sub-benefit{
  text-align: center;
 padding:40px 0;
  font-size: 1.5rem;
  font-family: "Sriracha", serif;
  color: var(--Dune);
  width: 50%;
  margin: 0 auto;
}
.plan-section .sub-free-content{
  padding: 40px 0;
}
.plan-section .sub-free-content p{
  text-align: center;
   font-size: 1.3rem;
   font-family: "Sriracha", serif;
   color: var(--Dune);
 margin-bottom: 0;
 
}
/* updated mera product cart start */
.meraproducts-section{
margin: 40px 0;

}
.meraproduct-content{
  border-radius: 8px;
  padding: 20px;
  background-color: var(--Spring-Wood);
}
.meraproducts-section .headline h3 {
  font-family: "Sriracha", serif;
  margin-bottom: 0;
}
.meraproducts-section .meraproduct-head {
  display: flex;
  padding-left: 0;
  margin-bottom: 20px;
  justify-content: space-between;
}
.meraproducts-section .meraproduct-head li{
  list-style: none;
}
.meraproducts-section .meraproduct-head li a{
  text-decoration: none;
    background: var(--Burning-Orange);
    color: var(--white);
    padding: 6px 8px;
    border-radius: 4px;
}
.meramartpro-card{
  background: var(--white);position: relative;
  padding: 8px;
}
.meramartpro-card .meraproduct-discount{
  position: absolute;
  top:0;
  left: 0;
  background: var(--Burning-Orange);
  border-radius: 0 8px 8px 0;
  font-size: .9rem;
  color: var(--white);
  padding: 4px 6px;
}
.meramart-product-content p{
  margin-bottom: 10px;
  font-size: .9rem;
  line-height: 20px;
}
.meramart-product-content a{
  text-decoration: none;
  color: var(--Mirage);
  font-size: 1.11rem;
}
.right-products-icon li{
  list-style: none;
}
.right-products-icon button{
  border: none;
  background: transparent;
}
.meramartpro-card .left-icon-products i {
  padding: 8px;
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.meramart-product-content .rating-icon{
display: flex;
padding-left: 0;
margin-bottom: 0;
}
.meramart-product-content .rating-icon li{
  list-style: none;
}
.meramart-product-content .rating-icon .rate-num {
  line-height: 0;
  margin-top: 7px;
}
.meramart-rating-delivery{
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  justify-content: space-between;
}
.meramart-rating-delivery li{
  list-style: none;
}
.mera-image img{
  width: 100%;
  margin-bottom: 8px;
}
.mera-delivery img{
width: 18px!important;
}
.mera-delivery{
  display: flex;
  padding-left: 0;
  margin-bottom: 0;

}
.mera-delivery p{
  font-size: .8rem;
  margin-bottom: 0;
  width: 120px;
  max-width: 100%;
}
.mera-delivery p a{
  background: var(--Turtle-Green);
  padding: 0 4px;
  border-radius: 6px;
  color: var(--white);
  font-size: .8rem;
}
.mera-delivery p span{
  background: var(--Turtle-Green);
  padding: 0 4px;
  border-radius: 6px;
  color: var(--white);
  font-size: .8rem;
}
.mera-delivery li{
  margin-left: 4px;
  margin-bottom: 8px;
}
.meramartpro-card .left-icon-products .view-icon {
  position: absolute;
  right: 8px;
  top: 38px;
}
.meraproduct-dropdown{
  width: 80%;
  margin: 0 auto 20px auto;
}
.meraproduct-dropdown select{
  border-radius: 8px!important;
  border: 2px solid var(--Pale-Sky)!important;
  padding: 4px 12px!important;
      font-weight: 600;
}
.meraproduct-dropdown select:hover{

}
.meramart-addtocart button{
  width: 100%;
  background: transparent;
  padding: 4px 0;
  font-weight: 400;
font-size: 1.1rem;

}
.meramart-addtocart .addcartBtn{
  color: var(--white);
  border: 2px solid var(--Shocking-Orange);
  background: var(--Shocking-Orange);
  transition: .6s;
  font-weight: 500;
  border-radius: 6px;
}
.meramart-addtocart .addcartBtn:hover{
  background: transparent;
  color: var(--Shocking-Orange);
  transition: .6s;
}
.outstockBtn{
  background: transparent!important;
  color: var(--Shocking-Orange)!important;
}
.meraproduct-Num ul{
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
}
.meraproduct-Num ul li{
  list-style: none;
}
.meraproduct-Num ul li button{
  width: 40px;
}
.meramart-addtocart.meraproduct-Num button{
width: 80px;
font-size: 2rem;
color: var(--white);
    border: 2px solid var(--Shocking-Orange)!important;
    background: var(--Shocking-Orange);
    transition: .6s;
    font-weight: 500;
    border-radius: 6px;
    line-height: 16px!important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-bottom: 10px;
}
.meramart-addtocart.meraproduct-Num{
  width: 80%;
  margin: 0 auto;
}
.meramart-addtocart.meraproduct-Num ul{
  justify-content:space-around;
}
.meraproduct-Num .counter{
  font-weight: 600;
  width: 40px;
  text-align: center;
  font-size: 1.5rem;
}
.meraproducts-section .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: -20px;
  top: 35%;
  width: 40px;
  height: 40px;
  background: var(--white) !important;
  display: flex
;
  justify-content: center;
  align-items: center;
}
.meraproducts-section .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: -20px;
  top: 35%;
  width: 40px;
  height: 40px;
  background: var(--white) !important;
  display: flex
;
  justify-content: center;
  align-items: center;
}
.meraproducts-section .owl-carousel .owl-nav button.owl-next span,.meraproducts-section .owl-carousel .owl-nav button.owl-prev span {
  font-size: 3rem;
  color: var(--Shocking-Orange);
  line-height: 0 !important;
  width: 40px;
  height: 12px;
}
/* mera products end */
/* navbar sticky */
nav.navbar.WhiteNav {
  background-color:var(--white)!important;
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: .6s;
  box-shadow: 0 0 2px #ccc;
  top: 0;
  color: var(--white);
  }

/* end */
/* profile section start */
.lead{
  font-weight: 500!important;
  }
/* profile section end */
@media(max-width:992px){
 
}
 @media(max-width:768px) {
    .coupon-section .discount {
       font-size: 40px;
       margin-bottom: 8px;
    }
 }

 @media(max-width:375px) {
    .coupon-section .coupon-content h2 {
       font-size: 1.5rem;
    }

    .coupon-section .discount {
       font-size: 30px;
    }
 }
  /* coupon end */
  @media(max-width:1400px){
    .subscribe-card .outer-subcard .sub-card {
      max-width: 50%;
    }
  }
  @media(max-width:1200px){
    .delivery-section .left-delivery ul li p {
        display: none;
    }
    .delivery-section .right-delivery ul li {
        margin-right: 6px;
    }
    .subscribe-card .outer-subcard .sub-card {
      max-width: 60%;
  }
  }
@media(max-width:992px){
    .popover {
        top: 55px;
    }
    .partner-section .item img {
      width: 100% !important;
      text-align: center;
  }
  .default-img .custom-img {
    width: 100%;
   
}
.subscribe-card .outer-subcard .sub-card {
  max-width: 80%;
}
.tracking-item{
  margin-bottom: 20px;
}
.tracking-item{
padding: 0;
}
}
@media(max-width:768px){
  .plan-section .sub-benefit {
    padding: 20px 0;
    font-size: 1.3rem;
    width: 70%;
  
  }
  .plan-section .memberimg {
    width: 100%;
    margin: 0 auto;
}
.plan-section .sub-free-content {
  padding: 20px 0;
}

}
@media(max-width:767px){

    .popover {
        top: 55px;
        right: 138px;
    }
    #popoverButton {
        padding: 0 4px
    }
    .delivery-section .right-delivery ul {
        justify-content:start;
    }
    .delivery-section .left-delivery ul li {
        /* margin-right: 24px; */
    }
    .order-track a {
        line-height: 30px;
    }
    .delivery-section .left-delivery ul {
        margin-bottom: 8px;
    }
    .meraLogin p {
      font-size: .8rem;

  }
    .meraLogin {
    background: var(--Shocking-Orange);
    opacity: .8;
  }
  .meraLogin a{
    line-height: 40px;
  }
  .subscribe-card .outer-subcard .sub-card {
    max-width: 100%;
}
.subscribe-card .outer-subcard {
  padding: 0 20px;
}
.subscribe-card .subscribeBtn {
  margin: -45px 0 8px 0;
}
.subscribe-img img {
  width: 300px;
}
.subscribe-card .subscribe-headline h2 {
  font-size: 3rem;
}
.subscribe-card .subscribe-headline h5 {
  font-size: 1.5rem;
}
.plan-section .subscribe-headline h2 {
  font-size: 3rem;
}
.plan-section .subscribe-headline h5 {
  font-size: 1.5rem;
}
}

@media (max-width: 600px) {
    .popover {
        padding: 15px;
        font-size: 14px; 
       
    }

    #closePopover {
        width: 100%; 

}

}
@media(max-width:575px){
  .productitem-slider .owl-carousel .owl-nav button.owl-next {
    right: 0;
    width: 30px;
    height: 30px;
}
.productitem-slider .owl-carousel .owl-nav button.owl-next span,.productitem-slider .owl-carousel .owl-nav button.owl-prev span{ 
font-size: 2rem;
height: 6px;
}
.productitem-slider .owl-carousel .owl-nav button.owl-prev {
  left: 0;
  width: 30px;
  height: 30px;
}
.plan-section .sub-benefit {

  width: 100%;
}

.plan-section .sub-free-content p {
  font-size: 1rem;
}
.plan-section .sub-benefit {
  font-size: 1rem;
  width: 100%;
}
.meraproducts-section .owl-carousel .owl-nav button.owl-next span, .meraproducts-section .owl-carousel .owl-nav button.owl-prev span {
  font-size: 2rem;
  height: 6px;
}
}
@media(max-width:540px){
  .subscribe-card .subscribe-headline h2 {
    font-size: 2.5rem;
}
.subscribe-card .outer-subcard li a {
  text-decoration: none;
  font-size: 1.3rem;
}
.sub-card img {
  margin-right: 1px;
}
.plan-section .subscribe-headline h2 {
  font-size: 2.5rem;
}
}
@media(max-width:485px){
  .subscribe-card .outer-subcard li a {
    font-size: 1.2rem;
}
}
@media(max-width:425px){

    .popover {
        top: 50px;
        right: 23px;
        width: 100%;
    }
    .delivery-section .right-delivery ul li {
        margin-right: 8px;
    }
    .default-content h3 {
        font-size: 20px;
    }
    .defult-section {
        padding:0;
    }
    .landing-wecome .welcomeimg {
      width: 95%;
     
  }
  .subscribe-card .outer-subcard li a {
    font-size: 1rem;
}
.subscribe-card .subscribe-headline h2 {
  font-size: 2rem;
}
.subscribe-card .subscribeBtn a {
font-size: 1rem;
  padding: 3px 20px 6px 20px;
}
.plan-section .subscribe-headline h2 {
  font-size: 2rem;
}
}
@media(max-width:375px){
  .cart-section {
    padding: 20px 0;
}

}
    @media(max-width:350px){
        #popoverButton {
            padding: 0 2px;
        }
      
        .delivery-section .right-delivery ul {
            justify-content:space-between;
        }
        .delivery-section .right-delivery ul li {
            margin-right: 2px;
        }
        .default-content {
       
          padding: 6px 8px;
        } 
        .freshitem-slider .bottom-contentp a {
          font-size: 1rem;
      } 
      .subscribe-img img {
        width: 250px;
    }    
    }