:root {
  --color-grey: #333;
  --color-dark-green: #123c26;
  --color-head-black: #1a1818;
  --color-light-green: #f2f8f1;
  --fs-22: 22px;
}
.shop-title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 0;
}
.shop-filter {
  display: flex;
  position: absolute;
  right: 0;
  gap: 30px;
}
.shop-title {
  color: var(--color-dark-green);
  text-align: center;
  font-family: "New Kansas";
  font-size: var(--fs-40);
  font-weight: 700;
  line-height: 1.2;
}
.shop-title-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: var(--color-grey);
  opacity: 0.1;
}
.filter-title {
  color: var(--color-grey);
  font-family: Poppins;
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 1.2;
}
.sorting a {
  color: var(--color-grey);
  font-family: Poppins;
  font-size: var(--fs-18);
  font-weight: 300;
  line-height: 1.2;
  text-decoration: underline;
}
.products-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 90px;
  row-gap: 100px;
  margin: 60px 0;
}
.product-image {
  position: relative;
  max-width: 330px;
  width: 100%;
  height: 404px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sale {
  position: absolute;
  background: #123c26;
  color: #f2f8f1;
  width: 30px;
  height: 30px;
  top: 10px;
  right: 10px;
  font-family: "Catamaran";
  border-radius: 22px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-info {
  text-align: center;
}
.product-title {
  color: var(--color-head-black);
  text-align: center;
  font-family: "New Kansas";
  font-size: var(--fs-30);
  font-weight: 400;
  line-height: 1.2;
  max-width: 306px;
  width: 100%;
  margin: 0 auto 14px;
  padding: 0;
}
.price {
  color: var(--color-head-black);
  text-align: center;
  font-family: Poppins;
  font-size: var(--fs-30);
  font-weight: 700;
  line-height: normal;
}
.product-link {
  border-radius: 10px;
  border: 3px solid var(--color-grey);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  color: var(--color-grey);
  font-family: Catamaran;
  font-size: var(--fs-22);
  font-weight: 600;
  margin-top: 25px;
}
.product-link:hover {
  background: var(--color-grey);
  color: #fff;
}
.product-option {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.9;
  background: var(
    --Gradiant,
    linear-gradient(275deg, #4da747 16.53%, #127c4e 89.21%)
  );
  color: #fff;
  font-family: Catamaran;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100px);
  transition: all 0.7s ease-in-out;
}
.product-option:hover {
  color: #fff;
}
.product-image:hover .product-option {
  transform: none;
}
section.best-saller.recommend-section {
  padding: 60px 0 80px;
}
.all-product-section {
  padding: 20px 0 40px;
}
.cart-menuside {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: none;
  transition: all 0.4s ease-in-out;
}
.cart-menuside.active {
  display: block;
  animation: fadecart 0.4s ease-in-out;
}
@keyframes fadecart {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cls-cart {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease-in-out;
}
.cart-menubox {
  height: 100vh;
  background: #fff;
  max-width: 400px;
  overflow: hidden;
  padding: 12px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
}
.cm-dash {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
  position: relative;
  margin-bottom: 16px;
  padding-left: 10px;
  padding-right: 10px;
}
.cm-dash::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
  opacity: 0.2;
}
.cm-title {
  color: #1a1818;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.cm-clsbtn {
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.cm-details {
  max-height: 60vh;
  overflow-y: auto;
  padding: 0 10px;
}
.cmp-product {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.cmp-image {
  max-width: 125px;
  width: 100%;
  height: 175px;
  overflow: hidden;
  border-radius: 10px;
}
.cmp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cmp-info {
  width: 100%;
}
.cmp-name {
  color: var(--color-grey);
  font-family: "New Kansas";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
.cmp-drop {
  color: var(--color-grey);
  font-family: Poppins;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}
.cmp-review {
  color: var(--Paragraph-Gray, #333);
  font-family: Poppins;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0;
}
.cmp-review img {
  width: 56px;
}
.cmp-sku {
  display: block;
  color: #3686f7;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-decoration: underline;
}
.cmp-price {
  margin: 10px 0;
}
.cmp-price span {
  display: block;
}
.original-price {
  color: var(--color-grey);
  font-family: "New Kansas";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: line-through;
  opacity: 0.5;
}
.discount-price {
  color: var(--color-grey);
  font-family: "New Kansas";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
.cmp-quantity {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: end;
}
.cmpq-box {
  max-width: 90px;
  width: 100%;
}
.quan-label {
  color: var(--color-grey);
  font-family: Poppins;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.q-monitor {
  display: flex;
  align-items: center;
  gap: 4px;
}
.q-monitor input::-webkit-outer-spin-button,
.q-monitor input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.q-monitor input {
  border: 1px solid #333;
  border-radius: 3px;
  width: 45px;
  text-align: center;
  font-size: 12px;
  font-family: "Poppins";
  font-weight: 300;
}
.q-holder {
  display: flex;
  gap: 2px;
}
.q-btn {
  background: transparent;
  border: none;
  width: 16px;
  line-height: 1;
  cursor: pointer;
}
.cm-clear {
  color: #3686f7;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
}
.cmp-coupon::before,
.cmp-coupon::after,
.cmp-total::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-grey);
  opacity: 0.2;
}
.cmp-coupon::before {
  top: 0;
}
.cmp-coupon::after,
.cmp-total::after {
  bottom: 0;
}
.cmp-coupon {
  padding: 24px 10px;
  position: relative;
}
.coupon-form {
  display: flex;
  gap: 7px;
}
.coupon-form input[type="text"] {
  min-width: 242px;
  height: 31px;
  border-radius: 6px;
  border: 1px solid var(--color-grey);
  padding: 5px 10px;
  color: var(--color-grey);
  font-family: Poppins;
  font-size: 12px;
  font-weight: 300;
}
.coupon-form input[type="submit"] {
  border-radius: 6px;
  background: var(--color-dark-green);
  color: #fff;
  text-align: center;
  font-family: Catamaran;
  font-size: 16px;
  font-weight: 400;
  border: none;
  cursor: pointer;
}
.cmp-total {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  position: relative;
}
.total-heading,
.total-price {
  color: var(--color-head-black);
  font-family: "New Kansas";
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.cmp-more {
  padding-top: 8px;
}
.cmp-ship {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 250px;
  margin-bottom: 20px;
  padding-left: 10px;
}
.cmp-checkout,
.cmp-wishlist {
  border-radius: 8px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: Catamaran;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}
.cmp-checkout {
  background: var(
    --Gradiant,
    linear-gradient(275deg, #4da747 16.53%, #127c4e 89.21%)
  );
}
.cmp-wishlist {
  background: var(--color-grey);
}
.cmp-checkout:hover,
.cmp-wishlist:hover {
  color: #fff;
}
.cmp-continue {
  display: block;
  color: var(--color-grey);
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 6%;
  text-underline-offset: 30%;
  text-underline-position: from-font;
  margin-top: 16px;
}
.cmp-continue:hover {
  color: var(--color-grey);
}
.single-blog-section {
  padding: 30px 0 40px;
}
.sb-grid {
  display: flex;
  gap: 54px;
  margin: 30px 0;
}
.sb-banner {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 400px;
}
.sb-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sb-details {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 32px;
}
.sb-details p {
  color: var(--color-grey);
  font-family: Poppins;
  font-size: var(--fs-20);
  font-weight: 300;
  line-height: normal;
}
.sb-description .sb-heading {
  color: var(--color-dark-green);
  font-family: "New Kansas";
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
.sb-description p {
  color: var(--color-grey);
  font-family: Poppins;
  font-size: var(--fs-20);
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 20px;
}
.sb-description a {
  color: var(--Green, #04720f);
  font-family: Poppins;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  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;
}
.sb-description .sb-subheading {
  color: var(--color-grey);
  font-family: Poppins;
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}
.sb-description p.sb-bold {
  font-weight: 500;
  margin-bottom: 4px;
}
.sb-description p {
  color: var(--color-grey);
  font-family: Poppins;
  font-size: var(--fs-20);
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 20px;
}
.sb-description ul {
  padding-left: 24px;
  padding-bottom: 20px;
}
.sb-description ul li,
.sb-description ul li strong {
  list-style: decimal;
  color: var(--color-grey);
  font-family: Poppins;
  font-size: var(--fs-20);
  font-weight: 400;
  line-height: normal;
}
.sb-sharing {
  position: relative;
  padding: 30px 0;
}
.sb-sharing::before,
.sb-sharing::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
  opacity: 0.3;
}
.sb-sharing::before {
  top: 0;
}
.sb-sharing::after {
  bottom: 0;
}
.sb-sharing {
  position: relative;
  padding: 30px 100px 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sb-share {
  display: flex;
  gap: 10px;
}
.sb-share span img {
  max-width: 28px;
}
.sb-share-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sb-share-list img {
  max-width: 30px;
}
.sb-share span {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: var(--fs-20);
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.sb-comment-box {
  padding-top: 20px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.sb-comment-username {
  color: var(--color-grey);
  font-family: Poppins;
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: normal;
}
.sb-comment-description {
  max-width: 1380px;
  margin: 0 auto;
  color: var(--color-grey);
  font-family: Poppins;
  font-size: var(--fs-18);
  font-weight: 300;
  line-height: normal;
}
.sb-comment-user {
  margin-bottom: 40px;
}
.sb-form-group textarea {
  height: 144px;
  border-radius: 10px;
  background: var(--Light-Green, #f2f8f1);
  border: none;
  color: var(--color-grey);
  font-family: Poppins;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 20px;
}
.sb-form-group input[type="submit"] {
  padding: 12px 40px;
  color: #fff;
  text-align: center;
  font-family: poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-24);
  border: none;
  outline: none;
  background: var(
    --Gradiant,
    linear-gradient(275deg, #4da747 16.53%, #127c4e 89.21%)
  );
  cursor: pointer;
  border-radius: 10px;
  max-width: fit-content;
  margin: 10px 0;
}
.shop-all-section {
    padding-bottom: 60px;
}
section.single-product .product-title {
    padding-bottom: 60px;
}
@media (max-width: 1599px) {
    .product-image {
        height: 320px;
    }
    .product-option {
        height: 60px;
    }
    .product-title {
        max-width: 98%;
    }
    .product-link {
        font-size: 20px;
        height: 50px;
        border-width: 2px;
        margin-top: 20px;
    } 
    .sb-wrapper {
        max-width: 940px;
    }   
    .header-menu-start .serch-other ul li {
        padding: 2px 10px;
      }
      .header-menu-start .serch-other ul li.serch {
        padding-left: 10px;
      }
      .header-menu-start .serch-other ul li.serch span {
        left: 10px;
      }
      .header-menu-start {
        gap: 29px;
      }
}
@media (max-width: 1399px) {
    .product-image {
        height: 260px;
    }
    .product-title {
        max-width: 96%;
    }
    .product-link {
        font-size: 18px;
        height: 45px;
    }
    .product-option {
        height: 50px;
        font-size: 16px;
    }
    .sb-wrapper {
        max-width: 760px;
    }
    .nav ul {
        gap: 15px;
      }
      .header-menu-start .serch-other ul li.serch {
        padding-left: 10px;
      }
      .header-menu-start .serch-other ul li.serch span {
        border-left-style: 20px;
      }
      .header-menu-start {
        gap: 15px;
      }
      .nav ul {
        gap: 12px;
      }
}
@media (max-width: 1199px) {
  .products-list {
    gap: 30px;
    row-gap: 60px;
  }
  .product-title {
    max-width: 86%;
  }
  .sb-grid {
    gap: 40px;
  }
  .sb-wrapper {
    max-width: 645px;
  }
  .sb-banner {
    height: 300px;
  }
}
@media (max-width: 991px) {
  .shop-title-box {
    justify-content: space-between;
  }
  .shop-filter {
    position: static;
    gap: 20px;
  }
  .products-list {
    grid-template-columns: 1fr 1fr 1fr;
    margin: 40px 0;
  }
  .sb-grid {
    flex-direction: column-reverse;
  }
  .sb-grid .blog-actions,
  .sb-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .products-list {
    grid-template-columns: 1fr 1fr;
  }
  .product-title {
    max-width: 67%;
  }
  .product-image {
    height: 300px;
  }
  .product-link {
    font-size: 16px;
    height: 40px;
  }
  .sb-sharing {
    padding: 20px 0;
  }
}
@media (max-width: 575px) {
  .product-title {
    max-width: 100%;
  }
  .product-image {
    height: auto;
    margin: 0 auto 20px;
  }
  .product-image img {
    height: auto;
  }
  .products-list {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 40px auto;
  }
  .sb-banner {
    height: 200px;
  }
  .sb-details p {
    font-size: 14px;
  }
  .sb-description .sb-heading {
    font-size: 18px;
  }
}
@media (max-width: 430px) {
  .shop-title-box {
    flex-direction: column;
  }
  .shop-title {
    margin-top: 5px;
    margin-bottom: 10px;
  }
  .coupon-form input[type="text"] {
    min-width: 200px;
  }
  .cmp-checkout,
  .cmp-wishlist,
  .cmp-name,
  .discount-price {
    font-size: 18px;
  }
}

