@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.cdnfonts.com/css/samsung-sharp-sans');



:root {
  --pc: #33912B
}




body {
  font-family: 'Poppins', sans-serif;
  float: left;
  width: 100%;
  color: #000;
  font-weight: 300;
  background-attachment: fixed;
  background-size: 40%;
  padding-right: 0 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.modal-open {
  padding-right: 0 !important;
  overflow: hidden;
}

::-moz-selection {
  /* Code for Firefox */
  color: #000;
  background: #d7c07f;
}

::selection {
  color: #000;
  background: #d7c07f;
}

.btn {
  box-shadow: none;
  outline: none;
}

button {
  box-shadow: none;
  outline: none;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: 'Samsung Sharp Sans', sans-serif;

}

p {
  color: #000;
  line-height: 30px;
  font-size: 14px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

a:hover {
  color: #0e2c18;
}

ul li,
ul li a,
ol li,
ol li a {
  color: #161616;
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

:focus {
  outline: none;
}

/* Styles for images */
img {
  max-width: 100%;
  height: auto;
}


.logo {
  width: 50px;
  display: block;
}

.inp-search {
  display: flex;
  width: 474px;
  height: 48px;
  padding: 8px 16px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  border-radius: 13px;
  border: 1px solid #E6E6E6;
  background: #FFF;
}

.inp-search input {
  width: 100%;
  border: none;
  color: #555;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;

}

.inp-search button {
  border: none;
  background: transparent;
  flex-shrink: 0;
}

.nav-left {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-right {
  display: flex;
  gap: 3rem;
  align-items: center;
}

header {
  padding: 1rem 0;
  background: #EEFAED;
}

.auth-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;

}

.auth-links li a {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-right-links {
  gap: 1rem;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}





.swiper {
  width: 100%;
  height: 85vh
}

.swiper-slide {
  /* text-align: center; */
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
}

.swiper-button-prev {
  background-image: url(../media/prev.png) !important;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
}

.swiper-button-next {
  background-image: url(../media/next.png) !important;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
}

.swiper-button-next::after {
  display: none;
}

.swiper-button-prev::after {
  display: none;
}



.swiper-button-next,
.swiper-button-prev {

  width: calc(var(--swiper-navigation-size) / 44 * 49);

}

.slide-content {
  z-index: 99;
  position: relative;
}

/* From Uiverse.io by cssbuttons-io */
.button {
  display: inline-block;
  padding: 7px 28px;
  border: 1px solid var(--pc);
  border-radius: 3rem;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
  z-index: 1;
  background: var(--pc);
}

.button:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #39bda7;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button:hover {
  color: var(--pc);
  border: 1px solid var(--pc);
}

.button:hover:before {
  top: -35%;
  background-color: #fff;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button:hover:after {
  top: -45%;
  background-color: #fff;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}


h1 {
  color: #1E3354;
  font-family: "Samsung Sharp Sans";
  font-size: 56px;
  font-style: normal;
  font-weight: 700;

}


.slide-content h3 {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 155.556% */
  margin-bottom: 2rem;
}


h2.title {
  font-family: "Samsung Sharp Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  /* 48px */
  text-transform: capitalize;
  background: -webkit-linear-gradient(1deg, #000 45%, #33912B 58%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.py-40 {
  padding: 4rem 0;
}

.home-products {
  background: #EEFAED;
}

.pro-img img {
  object-fit: cover;
  height: 100%;
  flex-shrink: 0;
  width: 100%;
}


.p-head h3 {
  color: #222;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

.p-body p {
  color: #3C3C3C;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  line-height: 23px;
  font-weight: 400;
  display: -webkit-box;
    -webkit-line-clamp: 1; /* change to 2 or 3 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-body h2 {
  color: #1E1E1E;
  leading-trim: both;
  text-edge: cap;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}


.cart-btn span {
  border-radius: 3rem;
  border: 1px solid var(--pc);
  font-size: 11px;
  font-weight: 300;
  color: var(--pc);
  padding: 4px 40px 4px 20px;
  position: absolute;
  right: 0;
  width: max-content;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.p-foot {
  display: flex;
  justify-content: space-between;
}

.cart-btn {
  position: relative;
  z-index: 1;
  height: 100%;
}

.pro-img {
  margin-bottom: 1rem;
      aspect-ratio: 1;
    overflow: hidden;
  border-radius: 20px;
}

.pro-card {
  background: white;
  padding: 9px;
  border-radius: 29px;
  transition: all 300ms ease-in-out;
}

.cart-btn span {
  opacity: 0;
  transition: all 300ms ease-in-out;
}

.pro-card:hover .cart-btn span {
  opacity: 1;
}

.pro-card:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.p-body {
  padding: 0 1rem 10px;
}

.wishlist-icon::before {
  font-family: 'Font Awesome 5 Free';
  content: '\f004';
  /* Unicode for heart icon */
  color: #ccc;
  /* Outline color */
}

.wishlist-icon.added::before {
  content: '\f004';
  /* Solid heart */
  font-weight: 900;
  /* Solid style requires font-weight: 900 */
  color: red;
}

.wishlist-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  background: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.home-feat-products {
  background: #E5DCE1CC;
}

.owl-stage-outer {
  padding-bottom: 15px;
}

.owl-nav img {
  width: 45px;
}

.owl-nav .owl-next {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.owl-nav .owl-prev {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.owl-nav {
  margin: 0;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
  color: #FFF;
  text-decoration: none;
}

.sub-box h2 {
  color: #000;
  font-family: "Samsung Sharp Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /*margin-top: 3rem;*/
      margin-top: 0.8rem;
  margin-bottom: 1.3rem;
  /* 175% */
      text-align: left;
}

.insp-box {
  display: flex;
}

.insp-box input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 300px;
  padding: 0 15px;
  border-radius: 13px 0 0 13px;
}

.insp-box {
  border-radius: 13px;
  border: 1px solid #E6E6E6;
  background: #FFF;
  display: inline-block;

}

.sub-submit {
  border-radius: 0 13px 13px 0;
  background: #33912B;
  outline: none;
  border: none;
  color: #FFF;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 10px 20px;
  text-transform: capitalize;
}

footer {
  background: #EEFAED;
}

.q-head {
  color: #000;
  font-family: "Samsung Sharp Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;

  /* 21.6px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: capitalize;
}

.q-head+ul li a {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;

}

.q-head+ul li a:hover {
  text-decoration: underline;
}

.q-head+ul {
  padding: 0;
  list-style-type: none;
  margin-top: 1rem;
}

.q-head+ul li {
  margin: 6px 0;
}

.container.custom-cc {
  max-width: 100%;
  margin-left: calc((100% - 1320px)/2);
}

footer {
  overflow: hidden;
}

.f-bottom p {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 21px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.image-gallery {
  margin: 0 auto;
  display: table;
  position: sticky;
  top: 50px;
}

.image,
.thumbnails {
  display: table-cell;
  vertical-align: top;
}

.thumbnails {
  width: 150px;

}

.image {
  width: 600px;
  height: 500px;
  background-color: #cccccc;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 13px;
}

.thumbnail:hover .thumbnail-image,
.selected .thumbnail-image {
  border: 2px solid var(--pc);
}

.thumbnail-image {
  width: 100px;
  height: 100px;
  margin: 20px auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border: 2px solid transparent;
  border-radius: 13px;
}

.p-detial-box h2 {
  font-weight: 500;
  font-style: Medium;
  font-size: 28px;
  text-transform: capitalize;
}

.p-detial-box h3 {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 14.4px;
  color: #555555;
  text-align: center;
  text-transform: capitalize;

}

.p-detial-box p {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: #555555;
  line-height: 24px;
}

.p-detial-box h2.pp {
  font-family: Poppins;
  font-weight: 600;

  font-size: 24px;

  text-transform: capitalize;

}

.p-detial-box {
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid var(--pc);
}


.cart {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  display: inline-block;
  text-transform: capitalize;
  border: 1px solid var(--pc);
  color: var(--pc) !important;
  padding: 13px 25px;
  border-radius: 7px;
  margin: 0 5px;

}

.add-cart,.add-cart:hover {
  font-family: Poppins;
  font-weight: 500;
  display: inline-block;
  font-size: 16px;
  text-transform: capitalize;
  border: 1px solid var(--pc);
  background: var(--pc);
  color: #fff;
  padding: 13px 25px;
  border-radius: 7px;
  margin-bottom: 10px;
}

.add-cart.alt, .add-cart.alt:hover {
    background: transparent;
    color: var(--pc);
}

.btn-box {
  text-align: center;
  margin: 2rem 0 0;
}

.cart span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: red;
  color: #fff;
  display: inline-block;
  font-size: 10px;
  position: absolute;
}

.info-ul {
  margin-top: 2rem;
}

.info-ul li {
  color: #555;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 19.2px */
  text-transform: capitalize;
  margin: 10px 0;
}

.info-ul li h3:first-child::after {
  content: ':';
  position: absolute;
  right: 0;
}

.info-ul li h3 {
  color: #222;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 19.2px */
  text-transform: capitalize;
  position: relative;
}

.pp-div h3 {
  color: #555;

  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;

  text-transform: capitalize;
}

.pp-div h4 {
  color: #555;

  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;

  text-transform: capitalize;
}

.prof-img img {
  width: 40px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

.seller-sec a {
  color: #33912B;

  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;

  text-transform: capitalize;
}

.pp-div {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.prof-cont h3 {
  color: #333;

  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.prof-cont h4 {
  color: #333;

  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

}

.prof-left {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.prof-img.profile-img img {
  width: 100px;
}

.profile-grid {
  padding: 3rem 0;
}

.pro-right a {
  border-radius: 10px;
  background: #436D22;
  padding: 10px 25px;
  color: #FFF;
  text-align: center;

  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  transition: all 300ms ease-in-out;
}

.pro-right a:hover {
  background: #fff;
  color: var(--pc);
  outline: 1px solid var(--pc);
}

.profile-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  background: #EEFAED;
  padding: 1rem 2rem;
}

.item-box h3 {
  color: #222;

  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}


.item-box {
  border-radius: 10px;
  background: #EEFAED;
  text-align: center;
  width: 100%;
  transition: all 300ms ease-in-out;
  padding: 2rem;
  outline: 1px solid transparent;
}

.item-box:hover {
  outline: 1px solid var(--pc);
}

.item-box svg {
  margin-right: 15px;
}


.pro-right h3 {
  color: #333;
  text-align: center;
  margin-top: 10px;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}


.prof-cont.s-name h3 {
  font-size: 24px;
}

.profile-box-cart {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cart-list {
  border-radius: 10px;
  background: #EEFAED;
  padding: 1rem 2rem;
}

.stars {
  font-size: 11px;
  color: #F2A312;
}

.rating-text {
  color: #333;
  text-align: center;
  font-family: Poppins;
  font-size: 11.692px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.c-right h3 {
  color: #222;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
}

#qty_select i {
  color: var(--pc);
  font-size: 10px;
}

#qty_selector {
  width: 95px;
}

#qty_display {
  border-width: 0px;
  border-color: white;
  background-color: transparent;
  width: 35%;

  padding-left: 5px;
  color: #333;
  font-family: Poppins;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 17.28px */
  text-transform: capitalize;
}

#qty_display:focus {
  outline: none;
}

.cart-title {
  color: #000;

  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}


.pp {
  color: #1E1E1E;

  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;

  line-height: normal;
  text-transform: capitalize;
}

.increment-btn {
  width: 30px;
  height: 30px;
  border-radius: 50% !important;
  border: 1px solid #cdcd;
  cursor: pointer;
}

.decrement-btn {
  width: 30px;
  height: 30px;
  border-radius: 50% !important;
  border: 1px solid #cdcd;
  cursor: pointer;
}

.c-left img {
  width: 168px;
  height: 168px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 10px;
  background: url(<path-to-image>) lightgray 50% / cover no-repeat;
}

.cart-div {
  display: flex;
  gap: 1rem;
  border-radius: 10px;
  background: #FFF;
  padding: 1rem;
}

.my-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.my-cart li {
  /*flex-basis: 450px;*/
   flex-basis: 391px;
}

.plus-btn h3 {
  color: #555;

  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-top: 1rem;
}

.plus-btn {
  border-radius: 4px;
  border: 1px dashed #BBB7B7;
  display: flex;
  flex-direction: column;
  width: 182px;
  padding: 40px 21px;
  height: 100%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.my-cart li:last-child {
  flex-basis: auto;
}

.check-left h6 {
  color: #555;

  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.del-address {
  border-radius: 56px;
  border: 1px solid #EAEAEA;
  background: #F9F9F9;
}

.del-address {
  display: flex;
  gap: 1rem;
  max-width: 300px;
  padding: 10px;
  align-items: center;
}

.del-address span {
  width: 42px;
  height: 42px;
  stroke-width: 1px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.del-address div {
  flex-shrink: 0;
}

.del-address h3 {
  color: #333;

  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin: 0;
  /* 18.2px */
}

.del-address h4 {
  color: #555;

  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 19.2px */
}

.checkout-grid {
  border-radius: 10px;
  align-items: center;
  background: #FFF;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
}

.check-left ul {
  display: flex;
  align-items: center;
}

.check-left ul li {
  padding: 0 2rem;
}

.order-summary {
  padding: 2rem;
  border-radius: 10px;
  background: #fff;


}

.order-summary>h3 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.order-summary ul li {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}

.order-summary ul li h3 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0px;
  color: #56585C;
}

.method-left {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.method-left h3 {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;

  vertical-align: middle;
}

.method-left h4 {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  color: #727589;
  font-size: 12px;


}

.method-box {
  display: block;
  border: 1px solid #cdcd;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin: 1rem 0;
}

.pay-selected {
  display: none;
}

.method-box:has(input:checked) .pay-selected {
  display: block;
}

.method-box:has(input:checked) .pay-not-selected {
  display: none;
}

.method-box:has(input:checked) {
  outline: 1px solid var(--pc);
}

.method-box input {
  position: absolute;
  visibility: hidden;
}
.offer{display: inline-block;margin-left: 5px;background: #BEE6CF;border-radius: 3rem;font-size: 10px;padding: 3px 10px;}
.follower-count h3{color: #000;

font-family: Poppins;
font-size: 24px;
font-style: normal;
font-weight: 600;

text-transform: capitalize;}
.follower-count h4{color: #000;

font-family: Poppins;
font-size: 16px;

font-weight: 400;
text-transform: capitalize;}
.follower-count ul{display: flex;gap: 5rem;}


/*08/10/25   -   products page   */


.product-page .filter-section {
  /*background: #f8f8f8;*/
  border-radius: 12px;
  padding: 20px;
}
.product-page .filter-section label {

    margin-bottom: 8px;
    display: block;
    color: #222;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500 !important;
}
.product-page .filter-section input,
.product-page .filter-section select {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 10px;
  width: 100%;
}
.product-page .filter-section .btn {
  border-radius: 8px;
  padding: 10px 16px;
}

.product-page .filter-section .btn.apply {
    background-color: #33912B;
}

/*09/10*/


.select2-container--default .select2-selection--single {

    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 8px 10px !important;
    width: 100%;
    height: 100% !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 9px !important;
}
span.select2-selection__placeholder {
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #564f4f !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #33912b !important;
    color: white !important;
}
.select2-dropdown{
    border: 1px solid #ddd !important;
    border-radius: 0px 0px 8px 8px !important;
    }

/*my-profile page 08/10/25*/
.prof-left.my h3 {
    font-family: "Samsung Sharp Sans";
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    background: -webkit-linear-gradient(1deg, #000 45%, #33912B 58%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.profile-pic {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.pro-form  .profile-pic .circle {
  width: 120px;
  height: 120px;
  background-color: #e8dbff;
  border-radius: 50%;
}

.pro-form  .camera-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #1f8c2e;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

.pro-form .form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pro-form .form .input-group label {
  color: #333;
  margin-bottom: 4px;
  display: block;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0 3px;
}

.pro-form .form .input-box {
  display: flex;
  align-items: center;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px !important;
  padding: 10px;
}

.pro-form .form .input-box .icon {
  margin-right: 10px;
  font-size: 16px;
}

.pro-form .form .input-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 15px;
  background: transparent;
}

.pro-form .form .save-btn {
  background-color: #2b9e34;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  margin-top: 25px;
}

.pro-form .form .save-btn:hover {
  background-color: #228c2a;
}
.pro-form {
    border: 1px solid #33912b33;
    border-radius: 12px;
    padding: 40px;
    width: 50%;
    margin: 61px auto;
        background-color: #EEFAED;
}
.pro-form .input-group

 {
    position: relative;
    display: flex
;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    flex-direction: column;
}


/*my-store 08/10/2025*/

.seller{

    margin: 30px auto;
    background: #f1f8f4;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;

}
/* Slider */
.seller .swiper {
    width: 100%;
    height: 50vh;
        margin-top: 18px;
}
/* Seller Info */
.seller .seller-info {
 position: relative;
  padding: 20px;
}
.seller .profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}
/* Store name row */
.seller .store-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.seller .store-name h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #222;
}
.seller .edit-icon {
  font-size: 16px;
  color: #666;
  margin-left: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.seller .edit-icon:hover {
  color: #000;
}
.seller .info-text p {
    margin: 6px 0;
    color: #333;
    margin-bottom: 4px;
    display: block;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    padding: 0 3px;
}
.seller .info-text i {
  color: #3a3a3a;
  margin-right: 8px;
}
.seller .rating i {
  color: #f1b000;
}

.store-name h3 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0px;
    color: #56585C;
}
.sell-pro h3{
      margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #222;
    margin-top: 20px;
}
.seller .sell-pro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}


/*favorite items 08/10/25*/

section.home-products.py-5.fav .p-foot i

 {
    color: #555;
}



@media (max-width: 767px){
    .row.g-4.card-pro
 {
    display: flex
;
    flex-direction: column;
}
    .card-pro .col-3{
        width: 100%;
    }
/*    header nav {*/
/*    display: flex*/
/*;*/
/*    justify-content: space-between;*/
/*    align-items: flex-start;*/
/*    flex-direction: column;*/
/*    gap: 24px;*/
/*}*/
.nav-left {
    display: flex
;
    gap: 1rem;

    align-items: center;
    width: 100%;
}
.inp-search{
    width: 85%;
}
.container.custom-cc {
    max-width: 100%;
    margin-left: 0;
}
.insp-box {
    border-radius: 13px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    display: flex
;
}
.row.foot {
    display: flex
;
    flex-direction: column;
        padding-bottom: 32px;
}
.row.foot .col-7 {
    width: 100%;
}
.row.foot .row.mt-5

 {
    display: flex
;
    flex-direction: column;
}
.pro-form {
    width: 100%;
}
}


/*my-returns 9/10*/

.ret-card .pro-card {
    border-radius: 0px 0px 29px 29px;
}
.card-top {
    display: flex;
    justify-content: space-between;
    background-color: #fff4e6;
    border-radius: 29px 29px 0px 0px;
    padding: 20px 12px;
}
.ret-card .pro-card .pro-img img{
    height: 200px;
}
.top-side {
    display: flex;
    align-items: center;
}
.top-side p {
    font-weight: 500;
    margin-bottom: 0px !important;
    color: #fd9701;
    font-size: 16px;
}
.top-side i {
    color: black;
    margin-right: 10px;
    color:#fd9701;
}
button.return-btn {
    background-color: #fd9701;
    border: none;
    padding: 6px 20px;
    border-radius: 8px;
}
button.return-btn a {
    color: white !important;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0px !important;
    color: #fd9701;
    font-size: 16px;
}
.ret-card .pro-card .p-head h3{
        font-size: 15px;
}
.quantity i {
    color: #3C3C3C;
}
.quantity p {
    margin-bottom: 0px;
}
.quantity {
    display: flex
;
    align-items: center;
    gap: 10px;
}
.refund-status
 {
    display: flex;
    justify-content: space-between;
}
.refund-status button {
    background-color: #eefaee;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    padding: 7px 10px;
    color: #5bae5e;
}
.ret-card .pro-card .p-foot p {
    margin-bottom: 0px;
    color: #000;
}
.ret-card .pro-card .p-foot

 {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}
.ret-card .pro-card .p-foot i{
   color: #3C3C3C;
}

/*sell-now    13/10*/

.sell-now {
  max-width: 800px;
  margin: 20px auto;
  background: #e8f8e8;
  padding: 31px 20px;
  border-radius: 12px;
}
.sell-now h2, .radio-group p {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #222;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
}
.upload-box {
  width: 140px;
 height: 83px;
  border: 2px dashed #ccc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: #fff;
}
.upload-box label {
  text-align: center;
  color: #888;
  cursor: pointer;
      display: flex
;
    gap: 9px;
}
.upload-box i {
  font-size: 28px;
  display: block;

}
.sell-now input[type="text"],
.sell-now input[type="number"],
.sell-now textarea,
.sell-now select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  margin-bottom: 16px;
  font-size: 15px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.sell-now textarea {
  height: 90px;
  resize: none;
}
.radio-group {
  margin-bottom: 16px;
}
/*.radio-group p {*/
/*  font-weight: 600;*/
/*  margin-bottom: 6px;*/
/*}*/
.radio-group label {
      margin-right: 20px;
   
    color: #222;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;

}
.variant-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.add-btn {
  background: #1a8f3a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0px 14px;
  cursor: pointer;
  font-weight: 500;
  height: 46px;
}
.submit-btn {
  width: 100%;
  background: #1a8f3a;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 17px;
  cursor: pointer;
  font-weight: 600;
}
.submit-btn:hover {
  background: #15752f;
}
.upload-sec, .radio{
    display: flex;
    justify-content: flex-start;
    gap: 59px;
    
}
section.sell {
    padding-bottom: 50px;
}
.variant-row input[type="text"] {
    width: 80%;
}
label.suit {
    margin-right: 20px;
    font-size: 15px;
    color: #222;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 15px;
}
.pri-qua {
    display: flex
;
    gap: 20px;
}


/*update-store-information*  13/10 */

section.update {
    margin: 30px auto;
    background: #f7fff7;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 900px;
}
section.update h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: "Samsung Sharp Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    background: -webkit-linear-gradient(1deg, #000 45%, #33912B 58%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-logo{
     margin-bottom: 20px;
}
.section-logo .label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: #333;
}
.section-logo .image-upload {
     position: relative;
         margin-bottom: 30px;

}
.section-logo .store-logo {
     width: 40%;
    height: 180px;
     border-radius: 12px;
     object-fit: cover;
     object-position: top;
}
 /* ✅ Updated Add Button Styling */
    .section-logo .add-btn {
      position: absolute;
      bottom: 10px;
      /*right: 10px;*/
          left: 33%;

      background: #d9f2d9;
      border: 1px solid #65a665;
      color: #333;
      border-radius: 8px;
      font-size: 20px;
      padding: 6px 10px;
      cursor: pointer;
      transition: 0.3s;
    }
 .section-logo.add-btn:hover {
      background: #c7e8c7;
    }
    .input-group {
      margin-bottom: 15px;
    }
    .input-group label {
      font-weight: 500;
      display: block;
      margin-bottom: 4px;
      color: #444;
    }
    .input-group input {
      width: 100%;
      padding: 10px;
      border-radius: 10px !important;
      border: 1px solid #ccc;
      font-size: 15px;
      outline: none;
    }
    .input-group input:focus {
      border-color: #4caf50;
    }
    .form-field {
    display: flex;
    gap: 14px;
}
.section-pay h3, .section-ban h3 {
    font-weight: 500;
    display: block;
        margin-bottom: 14px;
    color: #444;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
}
.section-pay .checkbox-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .section-pay  .checkbox-group label {
      font-size: 15px;
    }
    .section-pay  .checkbox-group label {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}
.section-pay .checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 26px;
        margin-bottom: 17px;
}
.banner-group {
      display: flex;
      gap: 10px;
      align-items: center;
    }
    .banner-group img {
      width: 90px;
      height: 70px;
      object-fit: cover;
      border-radius: 10px;
    }
    .add-banner {
      width: 90px;
      height: 70px;
      background: #eef8ef;
      border: 2px dashed #90c290;
      color: #4caf50;
      font-size: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      cursor: pointer;
    }
    section.update form .save-btn {
      width: 100%;
      background: #4caf50;
      color: white;
      border: none;
      padding: 12px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 41px;
    }
    section.update form .save-btn:hover {
      background: #3d9443;
    }
    
    /*my addresses 13/10*/
    
    /* ✅ Grid Layout for Cards */
    .address-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      justify-items: center;
      margin-bottom: 40px;
    }

    /* ✅ Card Styling */
    .address-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 20px;
      width: 100%;
      max-width: 500px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.2s ease;
    }

    .address-card:hover {
      transform: translateY(-4px);
    }

    .address-info {
      color: #333;
      line-height: 1.6;
    }

    .address-info h3 {
      margin: 0 0 10px;
      font-size: 18px;
      color: #222;
    }

    .address-info p {
    margin: 4px 0;
    font-size: 16px;
    font-weight: 400;
    color: #555;
}
    /* ✅ Bottom icon section */
    .card-actions {
      display: flex;
      justify-content: flex-end;
      gap: 15px;
      margin-top: 15px;
      border-top: 1px solid #eee;
      padding-top: 10px;
      align-items: center;
    }

    .card-actions i {
      font-size: 18px;
      cursor: pointer;
      transition: 0.3s;
    }

    .card-actions .fa-pen {
      color: #4caf50;
    }

    .card-actions .fa-trash {
      color: #f44336;
    }

    .card-actions i:hover {
      transform: scale(1.2);
    }

    /* ✅ Responsive for smaller screens */
    @media (max-width: 900px) {
      .address-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .address-container {
        grid-template-columns: 1fr;
      }
    }
    .card-actions p a{
            color: #33912B
    }
    .card-actions p {

    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 500;
    color: #33912B;

    }
    .new-address button a
 {
    color: white;
}
.new-address button {
    width: 19%;
    background: #4caf50;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}
.new-address {
    display: flex
;
    align-items: center;
    justify-content: center;
}
  .modal-body .submit-wrap button.submit {
    width: 100%;
    background: #1a8f3a;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 17px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 21px;
}  
    
    
/*privacy-policy    */

.privacy p, .privacy ul li {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 21px;
}
.privacy h2 {
    font-size: 21px;
    margin-bottom: 13px;
}
.privacy ul li span, .privacy p span {
    font-weight: 500;
}  
.privacy h3{
        font-size: 19px;
        margin-bottom: 13px;
}
ul.points {
    list-style: none;
}
.privacy h4{
    font-size: 17px;
}

/*cart 14/10 */

.sav-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sav-add h4 {
    font-size: 16px;
}

.sav-add p {
    color: #198754;
    font-weight: 500;
    font-size: 16px;
}

button.list-group-item.list-group-item-action.address-option {
    border: none;
    color: black;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
        justify-content: space-between;
        margin-bottom:20px;
}
.loc-tit {
    display: flex;
    align-items: center;
    gap: 6px;
}
/*button.list-group-item.list-group-item-action.address-option p {*/
/*    font-size: 15px;*/
/*    margin-left: 26px;*/
/*    font-weight: 400;*/
/*    color: #555;*/

/*    margin-bottom:20px;*/
/*}*/

.address-option.active {
  background-color: #e9f9ec;
  border-color: #499745;
}
.selected-badge {
    font-size: 0.85rem;
    background-color: #499745 !important;
    font-weight: 400;
}


/*  add offer 15/10  */

section.add-offer{
        padding-bottom: 50px;
}
.add-offer {
  background-color: #f4fdf4;
  padding: 30px;
  border-radius: 12px;
  max-width: 900px;
  margin: auto;
  font-family: "Poppins", sans-serif;
  margin-top: 80px;
  margin-bottom: 80px;
}

.add-offer h2 {
      text-align: center;
    margin-bottom: 57px;
    font-family: "Samsung Sharp Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    background: -webkit-linear-gradient(1deg, #000 45%, #33912B 58%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* header dropdown 15/10 */

ul.dropdown-menu.dropdown-menu-end.show {
    width: 180px;
}
ul.dropdown-menu.dropdown-menu-end.show li a {
    padding: 5px 13px;
}
/*update-store-info 16/10  */


.section-pay label {

    margin-right: 20px;
}
.section-pay {
    margin-bottom: 30px;
    margin-top: 20px;
}
@media(max-width: 468px) {
    .image-gallery {
        display: unset;
    }

    .thumbnails {
        display: flex;
        gap: 25px;
    }

    .p-detial-box {
        padding: 1rem;
        border: none;
    }

    .insp-box input {
        width: 80%;
    }

    .seller .seller-info {
         padding: 0px; 
        padding-top: 20px;
    }

    h2.title {
        padding: 1rem 0 !important;
    }

    .pro-card {
        padding: 8px;
        border-radius: 12px;
    }

    .p-body p,
    .cart-btn span {
        display: none;
    }

    .p-body {
        padding: 0;
    }

    .p-body h2 {
        font-size: 14px;
        margin: 0;
    }

    .p-head h3 {
        font-size: 16px;
    }

    .p-foot {
        align-items: center;
    }

    .p-body svg {
        width: 25px;
        height: 25px;
    }
    
    .image {
        width: 600px;
        height: 300px;
    }

    .p-detial-box h2,.btn-box ,.p-detial-box h3{
        text-align: left;
    }

    .p-detial-box p {
        text-align: left;
        margin-bottom: 10px;
    }
}

.product-details-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.product-details-table th,
.product-details-table td {
    padding: 12px 16px;
    text-align: left;
    vertical-align: middle;
}

.product-details-table th {
    width: 40%;
    background: #f1f3f5;   /* header column color */
    font-weight: 600;
    color: #333;
    border-right: 1px solid #e0e0e0;
}

.product-details-table td {
    background: #ffffff;  /* value column color */
    font-weight: 500;
    color: #555;
}

.product-details-table tr:not(:last-child) th,
.product-details-table tr:not(:last-child) td {
    border-bottom: 1px solid #e5e5e5;
}

.seller-card {
    background: #fff;
}

.seller-box {
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 16px;
    background: #f9fafb;
}

.seller-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.seller-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
}

.seller-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #222;
}

.seller-store {
    font-size: 14px;
    margin: 2px 0 0;
    color: #666;
}

.seller-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #2f8f2f;
    text-decoration: none;
}

.seller-link:hover {
    text-decoration: underline;
}

.pp {
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.buyer-protection {
    font-size: 14px;
    color: #6c757d;
}

.buyer-protection span {
    font-weight: 600;
    color: #333;
}

.active>.page-link, .page-link.active {
    background-color: #77c13c;
    border-color: #77c13c;
}

.page-link { color: #77c13c; }

.d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between {
    display: flex;
    flex-direction: column-reverse;
}

.profile-grid .col-lg-4.col-md-6 i {
    color: #436d22;
}

.p-foot strong.d-block {
    color: green;
}

/* Modal Card */
.price-modal {
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Product Card */
.product-card {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 12px;
}

.product-image {
  width: 100px;
  height: 100px;
  borde-radius: 4px;
  object-fit: cover;
  overflow: hidden;
}

/* Price Breakdown */
.price-breakdown {
  background: #f1fdf3;
  padding: 10px 12px;
  border-radius: 10px;
}

/* Description */
.description ul {
  margin-bottom: 12px;
}

.description li {
  font-size: 14px;
  margin-bottom: 4px;
}

/* Button */
.modal-footer .btn-success {
  border-radius: 10px;
  padding: 10px;
  font-weight: 500;
  background-color: #33912B;
}


