@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

/* // root */
:root {
  --font-style: "Inter", sans-serif;
  --gray-text: #3e445a;
  --dark-text: #202435;
  --primary-color: #3d894b;
  --color-price: #d51243;
  --color-rating: #ffcd00;
  --color-success: #00b853;
  --color-success-dark: #038e42;
  --color-badge: #2bbef9;
  --color-white: #fff;
  --light-gray: #9b9bb4;
  --placeholder-color: #bfc0cc;
}


/* Define custom CSS classes for increased size */
.swal-popup {
  width: 600px !important;
  /* Adjust the width as needed */
}

&::-webkit-scrollbar {
  width: 5px;
}

&::-webkit-scrollbar-track {
  background-color: #eceef2;
  border-radius: 180px;
}

&::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 180px;
}

div::-webkit-scrollbar {
  width: 5px;
}

div::-webkit-scrollbar-track {
  background-color: #eceef2;
  border-radius: 180px;
}

div::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 180px;
}

.error {
  color: red;
}

.gray_text {
  color: var(--light-gray);
}

.dark_text {
  color: var(--dark-text);
}

.rating_color {
  color: var(--color-rating);
}

.price_color {
  color: var(--primary-color);
}

/* //   Genral style */
html{
  overflow-x: hidden;
}

body {
  font-family: var(--font-style) !important;
  font-weight: 400;
  font-size: 14px;
  overflow-x: hidden;
}

*:focus {
  outline: 0 !important;
}

input:-internal-autofill-selected {
  background-color: transparent;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s;
}

.ul_height_scroll {
  max-height: 200px;
  overflow: scroll;
  overflow-x: hidden;
}

.offcanvas.offcanvas-end {
  width: 300px !important;
}

/* btn style  */

.ecombtn-border {
  border: 1px solid var(--light-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-text);
  transition: all 0.3s;
  padding: 8px 18px;
  border-radius: 60px;
}

.ecombtn-border:hover {
  background-color: var(--light-gray);
  border-color: var(--gray-text);
  color: #000;
}

.btn-cart {
  background-color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s;
  padding: 8px 18px;
  border-radius: 60px;
}

.btn-cart svg {
  width: 20px;
  height: 20px;
}

.btn-cart:hover {
  background-color: #fff;
  border: 1px solid var(--primary-color);
}

.btn-shop {
  color: #000;
  font-size: 16px;
  border-radius: 0px;
}

.btn-shop svg {
  width: 20px;
  height: 20px;
  color: #000;
  margin-left: 8px;
}

.btn-review {
  background-color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s;
  padding: 8px 18px;
  border-radius: 60px;
}

.btn-review:hover {
  background-color: #fff;
  border: 1px solid var(--primary-color);
}

.btn-delete {
  background-color: var(--color-price);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s;
  padding: 8px 18px;
  border-radius: 60px;
}

.btn-delete svg {
  width: 20px;
  height: 20px;
}

/* header */
.ecom-logo {
  width: 110px;
}

.top-header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 6px 0;
}

.top-header ul li,
.top-header ul li a {
  color: #fff;
  font-size: 14px;
}

.top-header .btn.show {
  border-color: transparent;
}

.top-header .select-LN {
  box-shadow: 0 5px 10px rgba(62, 68, 90, 0.1);
  min-width: 100px;
  background-color: #fff;
  border: 1px solid #edeef5;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  top: 3px !important;
}

.top-header .select-LN li a {
  color: var(--gray-text);
}

.mid-header {
  border-bottom: 1px solid #f5f5f5;
}

.search-box {
  background-color: #f5f5f5;
  border-radius: 8px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  min-width: 350px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.search-box input {
  background-color: transparent;
  border: none !important;
  height: 100%;
  padding: 0 18px;
  flex: 1;
  color: var(--gray-text);
}

.search-box input:focus-visible {
  outline: none;
}

.search-box svg {
  width: 20px;
  color: var(--primary-color);
}

/* user menus wrapper */
.user-menu-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

.user-menu-wrapper .user-profile-menu p {
  color: #000;
  line-height: 1;
  margin-bottom: 0;
}

.user-menu-wrapper .user-profile-menu span {
  font-size: 12px;
  color: var(--gray-text);
}

.user-menu-wrapper .user-profile {
  width: 35px;
  height: 35px;
  border: 1px solid #e2e4ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
}

.user-menu-wrapper .user-profile svg {
  width: 20px;
  height: 20px;
}

.user-menu-wrapper .user-cart {
  background-color: #fff1ee;
  width: 35px;
  height: 35px;
  border: 1px solid #fff1ee;
  border-radius: 50%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  color: var(--color-price);
}

.user-menu-wrapper .user-cart svg {
  width: 20px;
  height: 20px;
}

.user-menu-wrapper .user-cart label {
  position: absolute;
  background-color: var(--color-price);
  color: #fff;
  font-size: 12px;
  top: 5px;
  right: -8px;
  width: 15px;
  border-radius: 20px;
  height: 15px;
  text-align: center;
  line-height: 15px;
}

/* category dropdwon style */
.categories-dropdown {
  background-color: var(--primary-color);
  padding: 0px 18px;
  height: 45px;
  font-family: var(--font-style);
  border-color: var(--primary-color);
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.categories-dropdown:hover {
  background-color: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.categories-dropdown:hover a {
  color: var(--primary-color) !important;
}

.categories-dropdown::after {
  display: none;
}

.categories-dropdown svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.categroy-list-dropdown {
  box-shadow: 0 5px 10px rgba(62, 68, 90, 0.1);
  min-width: 200px;
  background-color: #fff;
  border: none;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}

.categroy-list-dropdown li a {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-text);
  font-weight: 300;
  padding: 8px 15px;
  align-items: center;
}

.categroy-list-dropdown li a:hover {
  color: var(--primary-color);
  background-color: transparent;
  font-weight: 500;
}

.categroy-list-dropdown li a i {
  font-size: 18px;
  line-height: 1;
}

.categroy-list-dropdown li a img {
  width: 20px;
}

.categroy-list-dropdown li .sub-menu {
  display: none;
}

/* end */

/* Big menus dropdwon list */
.big-dropdown::after {
  display: none;
}

.big-dropdown:active,
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  border-color: transparent !important;
}

.big-dropdown-menus {
  box-shadow: 0 5px 10px rgba(62, 68, 90, 0.1);
  min-width: 900px;
  width: 100%;
  background-color: #fff;
  border: none;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  transform: translate(-45%, 34px) !important;
  left: 0px !important;
  padding: 30px 15px;
}

.big-dropdown-menus.show {
  display: flex;
  border-color: transparent !important;
}

.big-dropdown-menus .shopByListBox {
  height: 40vh;
  overflow-y: auto;
}

.big-dropdown-menus h5 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color) !important;
  background-color: var(--primary-color) !important;
}

.big-dropdown-menus ul li a {
  color: var(--light-gray);
  padding: 6px 0px;
  text-transform: capitalize;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* main menus style */
.main-menus li a {
  color: var(--dark-text);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.main-menus li a svg {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
}

/* Top Category section style show with total items */

/* first section */
.product_div1 .row img {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.product_div1 .border p {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 5px;
}

.product_div1 .border span {
  font-size: 13px;
}

.product_div2 .border img {
  width: 70px;
}

.product_div2 .border {
  padding: 18px;
}

/* .Products list style  */
.products-wrapper {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.products-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid #edeef5;
  border-radius: 8px;
  pointer-events: none;
}

.product-box {
  position: relative;
  flex: 1 1 0%;
  height: 100%;
  z-index: 1;
  border-right: 1px solid #edeef5;
  border-bottom: 1px solid #edeef5;
  -webkit-transition: z-index 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: z-index 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}

/* .product-img {
  max-height: 300px;
  min-height: 300px;
  overflow: hidden;
  display: block;
  position: relative;
  background-color: var(--placeholder-color);
} */
.product-img {
  /* max-height: 300px;
  min-height: 300px; */
  height: 250px;
  overflow: hidden;
  display: block;
  position: relative;
  background-color: var(--placeholder-color);
}

.brandPartnerLogo {
  border: 5px solid #3d894b;
  border-radius: 50%;
  height: 200px;
  width: 200px;
  margin: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.product-img img {
  z-index: 2;
  object-fit: cover;
  object-position: center;
  height: 300px;
  position: relative;
}

.product-img::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-text);
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-box:hover {
  z-index: 10;
  -webkit-transition: z-index 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: z-index 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}

.product-buttons {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  gap: 10px;
  flex-direction: column;
  top: 0.9375rem;
  z-index: 99;
  right: 0.9375rem;
}

.product-box:hover .product-buttons>* {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.product-buttons>* {
  display: inline-flex;
  padding: 0px;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #fff;
  color: var(--gray-text);
  border: 1px solid var(--light-gray);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
  -webkit-transition: opacity 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99),
    -webkit-transform 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99);
  transition: opacity 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99),
    -webkit-transform 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99);
  transition: opacity 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99),
    transform 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99);
  transition: opacity 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99),
    transform 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99),
    -webkit-transform 0.25s cubic-bezier(0.17, 0.62, 0.44, 0.99);
}

.product-buttons>*:hover {
  color: #fff;
  background-color: var(--primary-color);
  border-color: transparent;
}

.product-buttons .wishlist svg {
  color: var(--color-price);
}

.product-buttons>* svg {
  width: 20px;
  height: 20px;
}

.product-buttons>*:hover svg {
  color: #fff;
}

.product-box:hover .product-content-fade {
  opacity: 1;
}

.product-box .product-content-fade {
  position: absolute;
  top: -1px;
  bottom: 0;
  left: -1px;
  right: -1px;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--color-info) !important;
  border-radius: var(--size-border-radius);
  opacity: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: opacity 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  will-change: opacity;
  -webkit-box-shadow: 5px 15px 30px rgba(62, 68, 90, 0.1);
  box-shadow: 5px 15px 30px rgba(62, 68, 90, 0.1);
  pointer-events: none;
}

.product-box:hover .product-fade-block {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-25px);
  transform: translateY(-25px);
}

.product-box .product-fade-block {
  position: absolute;
  left: 0;
  z-index: 99;
  right: 0;
  padding: 0 0.9375rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  will-change: opacity, transform;
}

.product_badges {
  position: absolute;
  top: 10px;
  z-index: 5;
  left: 10px;
}

.product_badges span {
  background: var(--color-badge);
  color: var(--color-white);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 12px;
}

.product_content_detail p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product_content_detail p a {
  font-size: 14px;
  color: var(--dark-text);
  font-weight: 500;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical; */
}

.product_content_detail>span {
  color: var(--color-price);
  text-transform: uppercase;
  font-size: 13px;
}

.products-wrapper .swiper-button-next,
.products-wrapper .swiper-button-prev {
  position: absolute;
  bottom: 0 !important;
  top: 45%;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 10;
  border: 1px solid #edeef5;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  background-image: none !important;
}

.partnerBrand {
  /* height: 130px; */
  /* width: auto; */
  max-width: 100%;
}

/* product Detail */
.product_detail_div ul {
  list-style: none;
  font-size: 13px;
  gap: 20px;
  padding: 0;
}

.product_description button {
  border: none;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 13px;
  background: #e5f8ed;
  color: var(--color-success);
  font-weight: 500;
}

.product_description p {
  margin: 20px 0px;
  font-size: 14px;
}

.product_description .small-info {
  max-height: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* .product_quantity div {
    padding: 15px;
    background: #f7f8fd;
    border-radius: 50%;
    height: fit-content;
} */

.product_quantity input {
  border: none;
  height: fit-content;
  width: 50px;
  margin-top: 10px;
  text-align: center;
}

.product_quantity button {
  background: var(--primary-color);
  color: var(--color-white);
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  height: fit-content;
  font-size: 14px;
}

.Wishlist_and_comparison button {
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  font-size: 13px;
  padding: 5px 15px;
  background: no-repeat;
  color: var(--light-gray);
  margin-right: 20px;
}

.Wishlist_and_comparison div {
  color: var(--light-gray);
  font-size: 14px;
  margin-top: 5px;
}

.social_icn svg {
  background: var(--primary-color);
  color: var(--color-white);
  padding: 7px;
  border-radius: 7px;
}

.product_order {
  background: #f7f8fd;
  padding: 40px;
  border: none;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--gray-text);
}

.product_order div svg {
  font-size: 18px;
  margin-top: 5px;
}

.bg-section {
  background-color: #f7f8fd;
}

#productdetail .carousel-indicators {
  position: relative;
}

#productdetail .carousel-indicators button {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  margin-left: 4px;
  margin-right: 4px;
  cursor: pointer;
  border: 1px solid #edeef5;
  border-radius: 4px;
  width: 60px;
  text-indent: 0px;
  opacity: 0.5;
}

#productdetail .carousel-indicators button img {
  max-width: 100%;
  width: 45px;
}

#productdetail .carousel-indicators .active {
  opacity: 1;
}

/* end */

/* heading */
.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  padding: 15px;
  border-radius: 8px;
}

.heading .head-title h3 {
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.heading .head-title h5 {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.heading .head-title p {
  color: var(--light-gray);
  font-size: 12px;
}

.heading .ecombtn-border {
  background-color: #fff;
}

/* end */

/* .breadcrum-menus */

.breadcrum-menus ul {
  display: flex;
  gap: 12px;
  align-items: center;
}

.breadcrum-menus ul li a {
  font-size: 12px;
  color: var(--light-gray);
}

.breadcrum-menus ul li a i {
  font-size: 12px;
}

.breadcrum-menus ul li a.active {
  color: var(--dark-text);
}

/* Offer zone COD style */
.offer-zone-COD {
  background-color: #fbeacf;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
  padding: 12px 8px;
  border-radius: 8px;
  color: #202435;
  letter-spacing: 4px;
}

/* login section */
.login_section {
  background: #f3f4f5;
  padding: 40px 0;
  min-height: 100vh;
  display: flex;
  justify-content: baseline;
  align-items: center;
  width: 100%;
  /* font-size: 13px; */
}

/* .login_section>div {
    width: 880px;
    background: #ffff;
    border-radius: 15px;
    display: flex;
} */

/* .login_section>div>div {
    padding: 60px;
    width: 100%;
} */

/* .login_section button {
    border: 1px solid #e1dede;
    background: none;
    padding: 5px 25px;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
} */

/* .login_section button>img {
    width: 18%;
    margin-right: 7px;
    margin-top: -5px;
} */

.login_input {
  border: 1px solid #e7e2e2;
  padding: 7px;
  border-radius: 5px;
  background: #fafbfe;
  color: var(--primary-color);
  font-size: 14px;
  position: relative;
}

.login_input input {
  border: none;
  background: transparent;
}

.login_input input::placeholder {
  color: var(--primary-color);
}

.login_input .btn-otp {
  position: absolute;
  padding: 4px 20px;
  font-size: 14px;
  top: 0;
  bottom: 0;
  right: 0;
  border-radius: 0;
}

.btn-otp {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
}

.btn-otp:hover {
  background-color: #fff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.otp-input {
  display: flex;
  gap: 5px;
  justify-content: space-between;
}

.otp-input input {
  border: 1px solid var(--light-gray);
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 8px;
}

.otp-input input:focus {
  background-color: #fafbfe;
  border-color: var(--primary-color);
  border-width: 2px;
}

.login_button {
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  border: none;
  color: #ffff;
  margin-top: 10px;
  background: var(--primary-color) !important;
  margin-bottom: 20px;
}

/* product filter */
.product-filter-accordion .accordion-button {
  font-family: var(--font-style) !important;
  font-size: 13px;
}

.product-filter-accordion .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: var(--primary-color) !important;
  box-shadow: none !important;
}

.accordion-button::after {
  width: 16px;
  height: 16px;
  background-size: 16px;
}

.product-filter-accordion .accordion-body ul li {
  font-size: 13px;
  color: var(--gray-text);
}

/* pagination style */

.page-link {
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50% !important;
  display: flex;
  color: var(--primary-color);
  align-items: center;
}

/* view cart */
.View_cart_section tbody {
  font-size: 14px;
}

.View_cart_section .viewcart-thumimg {
  width: 60px;
}

.View_cart_section thead tr th {
  font-weight: 500;
  font-size: 14px;
}

.View_cart_section input {
  border: none;
  background-color: transparent;
}

.shipping-detail label {
  color: var(--gray-text);
  font-size: 13px;
  font-weight: 600;
}

.btn-checkout {
  background: var(--color-price);
  color: var(--color-white);
  border-radius: 5px;
  border: none;
  padding: 8px 15px;
  font-size: 0.75rem;
  height: 2.75rem;
  text-transform: uppercase;
}

.View_cart_section table tbody tr td span {
  background: #e9ecef;
  margin: 0px 10px;
  padding: 8px 10px;
  border-radius: 50px;
}

.quantity-control-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.quantity-control-wrapper .quantity-button {
  width: 1.875rem;
  background-color: #edeef5;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.875rem;
  color: var(--dark-text);
}

.quantity-control-wrapper input {
  font-size: 0.875rem;
  text-align: center;
  background-color: #fff;
  border: none;
  width: 1.875rem;
  color: var(--dark-text);
  height: 1.875rem;
}

.coupon-wrapper {
  display: flex;
  align-items: center;
}

.coupon-wrapper input {
  font-size: 0.875rem;
  border: none;
  background-color: #edeef5;
  color: var(--dark-text);
  min-width: 8.5rem;
  padding: 0 15px;
  flex: 1;
  height: 2.75rem;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.coupon-wrapper .btn-coupon {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.coupon-wrapper input:focus-visible {
  outline: none;
}

.btn-coupon {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
  height: 2.75rem;
}

/* end */

/* check out page */
.check_out_card input,
.check_out_card select {
  width: 100%;
  background: #f8f9fa;
  border: 0;
  padding: 8px 15px;
}

.details {
  display: none;
}

.order-placed-wrapper {
  border: 2px solid var(--primary-color);
  padding: 1.875rem;
  border-radius: 8px;
}

/*====================
    Checkout Design ===========*/

.restro_checkout {
  position: relative;
  padding: 40px 0;
  background-color: #eff7fa;
}

.restro_checkout .chechkout__box {
  position: relative;
  margin-left: 25px;
  background: #fff;
  margin-bottom: 20px;
  padding: 35px 40px 39px;
}

.restro_checkout .chechkout__box>.checkout_head {
  font-size: 32px;
  font-weight: 600;
  color: #282c3f;
  margin-bottom: 32px;
  position: relative;
  display: block;
  align-items: center;
  margin-bottom: 36px;
}

.restro_checkout .chechkout__box>.checkout_head>span {
  display: block;
  font-size: 16px;
  color: #7e808c;
  font-weight: 400;
}

.restro_checkout .chechkout__box>.checkout_head>button {
  background-color: #ffab00;
  color: #fff;
  padding: 4px 15px;
  position: absolute;
  right: 10px;
  top: 20px;
  border-radius: 50px;
}

.restro_checkout .chechkout__box>.address_icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #282c3f;
  box-shadow: 0 3px 5px 0 rgba(40, 44, 63, 0.4);
  top: 34px;
  left: -10px;
}

.restro_checkout .chechkout__box>.address_icon>i {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
}

.restro_checkout .chechkout__box>.save_address {
  position: relative;
  display: block;
}

.restro_checkout .chechkout__box>.save_address>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.restro_checkout .chechkout__box>.save_address>ul>li {
  margin-bottom: 5px;
  display: inline-block;
  width: 48%;
  margin: 0 10px 8px 0;
  cursor: pointer;
  padding: 5px;
  border: 1px solid #e9e9eb;
  max-height: 200px;
  overflow-y: auto;
}

.restro_checkout .chechkout__box>.save_address>ul>li>.icon {
  display: table-cell;
  vertical-align: central;
  padding: 8px;
  text-align: center;
  color: #ec1c24;
}

.restro_checkout .chechkout__box>.save_address>ul>li>.address_detail {
  display: table-cell;
  padding: 10px;
  color: rgb(128, 128, 128);
  font-size: 13px;
}

.restro_checkout .chechkout__box>.save_address>ul>li>.address_detail>h6 {
  margin-bottom: 6px;
}

.restro_checkout .chechkout__box>.save_address>ul>li>.address_detail>button {
  background-color: #26a65b;
  color: #fff;
  text-align: center;
  padding: 5px 15px;
  margin-top: 10px;
  display: block;
  font-size: 13px;
}

.Add_news_address {
  margin-bottom: 15px;
  display: block;
}

.restro_checkout .chechkout__box>.checkout_restro_head {
  cursor: pointer;
  padding: 20px;
  background: #fff;
  display: -ms-flexbox;
  display: flex;
  min-height: 90px;
}

.restro_checkout .chechkout__box>.checkout_restro_head>.logo_img {
  width: 50px;
  height: 50px;
  position: relative;
}

.restro_checkout .chechkout__box>.checkout_restro_head>.restro_info {
  margin-left: 14px;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 50px;
}

.restro_checkout .chechkout__box>.checkout_restro_head>.restro_info::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #282c3f;
  width: 40px;
  height: 2px;
}

.restro_checkout .chechkout__box>.checkout_restro_head>.restro_info>h5 {
  font-size: 17px;
  color: #282c3f;
  margin: 0;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.restro_checkout .chechkout__box>.checkout_restro_head>.restro_info>span {
  font-size: 13px;
  color: #686b78;
}

.restro_checkout .chechkout__box>.checkout_item_db>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.restro_checkout .chechkout__box>.checkout_item_db>ul>li {
  display: table;
  width: 100%;
  padding: 10px;
  margin-bottom: 5px;
  font-size: 13.5px;
  border-bottom: thin solid rgb(128, 128, 128);
}

.restro_checkout .chechkout__box>.checkout_item_db>ul>li>span {
  padding: 5px;
  vertical-align: middle;
  display: table-cell;
}

.restro_checkout .chechkout__box>.checkout_item_db>ul>li>.itemname {
  width: 155px;
  vertical-align: middle;
  display: table-cell;
}

.restro_checkout .chechkout__box>.checkout_item_db>ul>li>.quantity_spin {
  vertical-align: middle;
  display: table-cell;
}

.restro_checkout .chechkout__box>.checkout_item_db>ul>li>.price {
  display: table-cell;
  vertical-align: middle;
}

/* end checkout style */

/* user profile */
.user_profile_card input,
.user_profile_card select {
  width: 100%;
  background: #f8f9fa;
  border: 0;
  padding: 7px;
  padding-left: 5px;
}

.user_profile_card h4 {
  padding: 10px 15px;
  background: var(--primary-color);
  color: var(--color-white);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  justify-content: space-between;
}

.user_profile_card label {
  font-weight: 500;
}

.user_profile_card h4 button {
  background: transparent;
  color: var(--color-white);
  border: none;
}

.profile_submit_btn {
  background: #233a95;
  color: var(--color-white);
  border: none;
  padding: 10px 70px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  margin-top: 10px;
}

.blue_color {
  color: var(--primary-color);
}

.user_Account_card h5 {
  text-transform: uppercase;
}

.user-profile-wrapper {
  padding: 70px 0;
}

.user-sidebar .user-profile {
  width: 60px;
  height: 60px;
  overflow: hidden;
  background-color: var(--placeholder-color);
  color: var(--primary-color);
  border-radius: 100%;
  margin: 0 auto;
}

.user-sidebar .user-bg {
  background-color: #233a9508;
}

.user-sidebar .user-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.user-sidebar h4 {
  font-size: 20px;
  text-align: center;
  color: var(--primary-color);
}

.user-sidebar ul li {
  list-style: none;
  font-size: 14px;
  font-weight: 400;
  padding: 8px;
  border-bottom: 1px solid #d3d3d333;
  padding-left: 20px;
}

.user-sidebar ul li:hover {
  background: #f9fafb;
  color: var(--primary-color);
}

.user-sidebar .active {
  /* background: #f9fafb; */
  color: var(--primary-color);
  font-weight: 500;
  border-left: 2px solid var(--primary-color);
}

/* uer profile end */

/* Review section style  */
.review-card-wrapper .user-pic {
  width: 35px;
  height: 35px;
  background-color: var(--placeholder-color);
  overflow: hidden;
  border-radius: 60%;
}

.review-card-wrapper .user-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.review-card-wrapper .star-review {
  display: flex;
  gap: 2px;
}

.review-card-wrapper .review-text-wrapper .author h6 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.review-card-wrapper .review-text-wrapper .author h6 span {
  font-size: 14px;
  font-weight: normal;
  color: var(--light-gray);
}

.review-card-wrapper .review-text-wrapper p {
  font-size: 14px;
}

.rating {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  flex-direction: row-reverse;
  height: 150px;
  position: relative;
}

.rating-0 {
  filter: grayscale(100%);
}

.rating>input {
  display: none;
}

.rating>label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-top: auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: 0.3s;
}

.rating>input:checked~label,
.rating>input:checked~label~label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.rating>input:not(:checked)~label:hover,
.rating>input:not(:checked)~label:hover~label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.emoji-wrapper {
  width: 100%;
  text-align: center;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.emoji-wrapper:before,
.emoji-wrapper:after {
  content: "";
  height: 15px;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}

.emoji-wrapper:before {
  top: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 35%,
      rgba(255, 255, 255, 0) 100%);
}

.emoji-wrapper:after {
  bottom: 0;
  background: linear-gradient(to top,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 35%,
      rgba(255, 255, 255, 0) 100%);
}

.emoji {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}

.emoji>svg {
  margin: 15px 0;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

#rating-1:checked~.emoji-wrapper>.emoji {
  transform: translateY(-100px);
}

#rating-2:checked~.emoji-wrapper>.emoji {
  transform: translateY(-200px);
}

#rating-3:checked~.emoji-wrapper>.emoji {
  transform: translateY(-300px);
}

#rating-4:checked~.emoji-wrapper>.emoji {
  transform: translateY(-400px);
}

#rating-5:checked~.emoji-wrapper>.emoji {
  transform: translateY(-500px);
}

.feedback {
  max-width: 360px;
  background-color: #fff;
  width: 100%;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* rating review end */

footer {
  background-color: #f5f5f5;
}

footer .social-links {
  color: var(--primary-color);
  font-size: 20px;
}

footer a {
  color: var(--primary-color);
}

.footer-bottom {
  background-color: var(--primary-color);
  padding: 12px;
}

/* notification style  */
.notification-msg {
  display: flex;
  padding: 8px;
  gap: 5px;
}

.notification-msg a {
  position: relative;
  display: block;
  color: var(--color-success-dark);
}

.notification-msg a h6 {
  font-size: 14px;
  position: relative;
  font-weight: 500;
  margin: 0;
}

.notification-msg a h6 p {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 12px;
  margin: 0;
  color: var(--light-gray);
}

.notification-msg a h6 span {
  font-size: 12px;
  color: var(--gray-text);
  font-weight: 400;
}

.notification-msg img {
  width: 25px;
}

.notification-dropdown {
  min-width: 240px;
}

/* end */

/* suport */
.support-box {
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.support-box img {
  max-width: 100%;
}

.support-box h4 {
  text-align: center;
}

.support-box a {
  font-size: 20px;
  text-align: center;
  display: block;
  color: var(--color-success-dark);
}

/* Media Query */
@media only screen and (max-width: 600px) {
  .search-box {
    max-width: 70px;
    min-width: auto;
  }

  .heading .ecombtn-border {
    flex: 0 0 auto;
  }
  .user-menu-wrapper {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    justify-content: end;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 760px) {
  .search-box {
    max-width: 70px;
    min-width: auto;
    margin-top: 10px;
  }

  .heading .ecombtn-border {
    flex: 0 0 auto;
  }

  .logo-order {
    order: 1;
  }

  .search-bar {
    order: 3;
  }

  .menus-order {
    order: 2;
  }
}

@media only screen and (max-width: 960px) {
  .hero-section {
    flex-direction: column-reverse;
  }

  .category-div,
  .slider-div {
    width: 100%;
  }
  .big-dropdown-menus {
    transform: none !important;
    min-width: 100%;
    position: relative !important;
  }

  .categroy-list-dropdown {
    transform: none !important;
    min-width: 100%;
    position: relative !important;
  }
}

@media only screen and (max-width: 1024px) {
  .search-box {
    min-width: 100%;
  }

  .product_div2 .border img {
    width: 50px;
  }

  .product_div2 .border {
    padding: 12px 18px;
  }
}
.lazy-load{
  background: url('https://www.sawariyaagritech.com/imageloading.png');
  font-size: 0px;
  background-size: contain;
}
.form-check-input {
  border-color: #00000085;
}