/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Unbounded:wght@200..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #736744;
  --secondary-color: #d4dcb8;
  --btn-color: #f89200;
  --font-primary: Unbounded;
  --font-secondary: Inter;
  --white: #fff;
  --black: #000000;
  --para: #333333;
}
.hero-section::before {
content: unset!important;
}

img {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
}

a:focus,
a:visited {
  outline: unset;
}

.js-content-wrapper {
  padding: 0 !important;
}

.page-my-account #content .links a:hover,
.page-my-account #content .links a:hover i {
  color: var(--btn-color);
}

.btn-primary,
.btn-primary:hover {
  color: #fff;
  background-color: var(--btn-color);
}

#s-ttl img {
    object-fit: cover;
    width: 100%;
    height: auto!important;
    max-width: 170px;
}

ul,
ul li,
ol li {
  list-style: none;
  padding-left: 0;
}

h1,
.h1 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 50px;
  line-height: 100%;
}

h2,
.h2 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 42px;
  line-height: 100%;
}

h5,
.h5 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  /* text-transform: capitalize; */
}

h6,
.h6 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}

p {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

#wrapper > div.container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

font {
  vertical-align: unset !important;
}

#wrapper {
  padding: 0;
}

section#content {
  padding: 0 !important;
  margin: 0 !important;
}

body {
  overflow-x: hidden;
}

footer.page-footer {
  margin: 0 !important;
}

footer#footer {
  padding: 0;
}
 
#wrapper .breadcrumb {
  display: none;
}

#header a:hover {
  color: var(--btn-color);
}

section .common-pad {
  padding: 100px 0 !important;
}

.common-pad p {
  font-family: var(--font-secondary) !important;
  color: #333333 !important;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1326px;
  }
}

.common-btn {
  background-color: var(--btn-color);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  padding: 22px 31px;
  border-radius: 63px;
  color: var(--white);
  border: unset;
}

.common-btn:hover {
  color: var(--white);
}

.main-header h6 {
  color: var(--black);
  margin: 0;
}

/* common bg section  */
.common-bg-section {
  position: relative;
  padding: 204px 0 145px;
  background-image: url("images/main.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  /* margin-bottom: 20px; */
}

.biodegradable-content ol li, .biodegradable-content ol, .biodegradable-content p {
    list-style: auto;
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #333333;
}
.remove-bg::before {
  content: unset!important;
}
.biodegradable-content p {
    margin-bottom: 10px!important;
    color: #333333;
}
.new-products-banner.common-bg-section::before {
 content: unset;
} 
.common-bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #00000033;
  z-index: 1;
}

.common-bg-section > * {
  position: relative;
  z-index: 2;
}

.common-bg-section h2 {
  color: var(--white);
  text-align: center;
}

/* CMS Banner Height Variations */
.common-bg-section.banner-small {
  padding: 75px 0 70px;
}

.common-bg-section.banner-medium {
  padding: 125px 0 120px;
}

.common-bg-section.banner-large {
  padding: 175px 0 170px;
}

.common-bg-section.banner-full {
  padding: 250px 0 245px;
}

/* CMS Banner Subtitle */
.banner-subtitle {
  color: var(--white);
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
  font-family: var(--font-secondary);
}

/* CMS Page Layout Classes */
.page-layout-full_width #left-column,
.page-layout-full_width #right-column {
  display: none;
}

.page-layout-full_width #content {
  max-width: 100%;
}

.page-layout-left_sidebar {
  display: flex;
  gap: 30px;
}

.page-layout-left_sidebar #left-column {
  order: 1;
  flex: 0 0 250px;
}

.page-layout-left_sidebar #content {
  order: 2;
  flex: 1;
}

.page-layout-right_sidebar {
  display: flex;
  gap: 30px;
}

.page-layout-right_sidebar #content {
  order: 1;
  flex: 1;
}

.page-layout-right_sidebar #right-column {
  order: 2;
  flex: 0 0 250px;
}

.page-layout-both_sidebars {
  display: flex;
  gap: 30px;
}

.page-layout-both_sidebars #left-column {
  order: 1;
  flex: 0 0 200px;
}

.page-layout-both_sidebars #content {
  order: 2;
  flex: 1;
}

.page-layout-both_sidebars #right-column {
  order: 3;
  flex: 0 0 200px;
}

/* main-header  */
.main-header {
  background-color: var(--secondary-color);
  padding: 13px 0px;
}

.main-header h6 {
  color: var(--black);
}

.main-inner-row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.account-login {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.account-login img {
  width: 24px;
  height: 24px;
  object-fit: scale-down;
}

/* header  */

.navbar-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.nav-bar-box {
  display: flex;
  align-items: center;
}

.navbar {
  padding: 18px 0px;
}

.navbar-brand img {
  max-width: 156px;
}

ul.navbar-nav {
  display: flex;
  gap: 40px;
  margin-top: 0px;
}

a.nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #111111;
  padding: 0 !important;
}

.cart {
  width: 51px;
  height: 51px;
  background-color: var(--secondary-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  position: relative;
}

.cart img {
  width: 24px;
  height: 24px;
  object-fit: scale-down;
}

.cart .cart-products-count {
  background-color: #000 !important;
  color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hero-section  */
.hero-section {
    position: relative;
    padding: 180px 0 140px;
    background-image: url("../img/main.png");
    background-size: cover;
    background-position: 100% 100%;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: end;
    justify-content: center;
    min-height: 700px;
}
.language-row {
  display: flex;
  align-items: center;
  gap: 19px;
}

a.account-login {
  border-right: 1px solid #000000;
  padding-right: 19px;
  text-decoration: none;
}

a.account-login h6 {
  margin: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #00000033;
  z-index: 1;
}

.hero-section > * {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--white);
  text-align: center;
  max-width: 808px;
  margin: auto;
  margin-bottom: 30px;
}

.hero-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* applications-section  */
.applications-section {
  padding: 110px 0;
}

.applications-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--black);
}

.applications-section .row {
  row-gap: 50px;
}

.applications-section-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.img-wrap {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.img-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.applications-section-box:hover .img-wrap img {
  transform: scale(1.1);
}

.img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.applications-section-box:hover .img-wrap::after {
  opacity: 1;
}

.applications-section-content {
  padding: 15px;
  padding-bottom: 0px;
}

.applications-section-content h5 {
  text-align: center;
  height: 40px;
  color: var(--black);
  text-transform: none !important;
}

/* products-section  */
.products-section {
  padding-bottom: 110px;
}

.products-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--black);
}

.products-section .row {
  row-gap: 25px;
}

.products-section-box {
  height: 100%;
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.products-img-wrap {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.products-img-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 25px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.products-img-wrap:hover img {
  transform: scale(1.04);
}

.products-section-content {
  text-align: center;
  margin-top: 16px;
}

.products-section-content h5 {
  color: #141013;
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.2;
  font-weight: 600;
}

.products-section-content h5 a {
  color: inherit;
  text-decoration: none;
}

.products-section-footer {
  justify-content: center;
}

.products-section-footer {
  width: 100%;
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.products-section-price {
  font-size: 18px;
  font-weight: 600;
  color: #6a5a3c;
  margin: 0;
}

.products-section-action {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d9dfc1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.products-section-action button {
  border: none;
  background: transparent;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 18px;
  color: #3c3828;
  cursor: pointer;
}

.products-section-action:hover {
  transform: translateY(-2px);
  background: #cfd5ad;
}

/* .products-section-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  padding: 0 12px;
  z-index: 2;
} */

/* biodegradable-section  */
.biodegradable-section {
  background-color: var(--secondary-color);
  position: relative;
  padding: 110px 0;
}

.biodegradable-content h2 {
  margin-bottom: 50px;
  color: var(--black);
}

.biodegradable-content p {
  margin-bottom: 30px;
}

.biodegradable-content ul {
  margin-bottom: 40px;
}

.biodegradable-content ul li,
.biodegradable-content h4 {
  margin-bottom: 20px;
}

.biodegradable-content ul li:last-child {
  margin-bottom: 0px;
}

.biodegradable-content p:last-child {
  margin-bottom: 0;
}

.biodegradable-section .col-lg-6 {
  position: static;
}

.biodegradable-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  width: calc((100% - 1320px) / 2 + ((1320px / 12) * 4.12));
}

.biodegradable-image img {
  width: 100%;
  display: block;
  height: 100%;
  max-width: 835px;
  object-fit: cover;
}

/* .wood-app-section  */
.wood-app-section {
  padding: 110px 0;
}

.wood-app-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--black);
}

.wood-app-section .row {
  row-gap: 50px;
}

.wood-app-section-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.wood-app-img-wrap {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.wood-app-img-wrap img {
  width: 100%;
  aspect-ratio: 416 / 300;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.wood-app-section-box:hover .wood-app-img-wrap img {
  transform: scale(1.1);
}

.wood-app-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wood-app-img-wrap-box:hover .img-wrap::after {
  opacity: 1;
}

.wood-app-section-content {
  padding: 15px;
  padding-bottom: 0px;
}

.wood-app-section-content h5 {
  text-align: center;
  height: 40px;
  color: var(--black);
}

/* newsletter-section  */
.newsletter-section {
  background-color: var(--secondary-color);
  padding: 99px 0;
}

.newsletter-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--black);
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 895px;
  border: unset;
}

.newsletter-form form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-section input {
  height: 63px;
  width: 350px;
  border-radius: 56px;
  padding: 22px 30px;
}

.newsletter-section button {
  padding: 22px 47px;
}

.pd-120 {
  padding-block: 120px;
}

.application-main {
  border: 1px solid #e2e2e2;
  background: #ffffff;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.application-main img {
  border-radius: 16px;
}

.application-main .application-main-content {
  padding: 24px 35px;
  text-align: center;
}

.application-main:hover {
  background: #d4dcb8;
}

.application-main .application-main-content h4 {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  margin: 0;
}

.application-main .application-main-content p {
  font-weight: 400;
  color: #333333;
  margin: 20px 0 0 0;
}

.contact-form-main {
  background: #f8f8f8;
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  max-width: 856px;
  margin: auto;
}

.contact-form-main h4 {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  color: #000000;
}

.contact-form-main p {
  margin: 32px 0 0 0;
}

/* footer  */
.footer-main {
  padding: 100px 0px 22px;
  background-color: var(--primary-color);
}

.footer-main-content {
  display: flex;
  gap: 84px;
  justify-content: space-between;
}

.footer-main-logo img {
  max-width: 140px;
}

/* 
.footer-main-ul {
  display: flex;
  gap: 149px;
} */

.footer-main-content h5 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-main-content li a {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--white);
}

.footer-main-content li {
  margin-bottom: 18px;
}

.footer-main-content li:last-child {
  margin-bottom: 0;
}

.footer-main-menu3 p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.footer-main-menu3 p {
  margin-bottom: 12px;
}

.footer-main-menu3 p:last-child {
  margin-bottom: 0;
}

.footer-main-menu3 p a {
  color: var(--white);
}

.footer-main-menu1,
.footer-main-menu2 {
  width: 25%;
}

.footer-main-menu3 {
  width: 50%;
}

/* about  */
.about-main-section {
    padding: 50px 0;
}
.about-main-section img {
  border-radius: 25px;
  margin-bottom: 60px;
}

.about-main-section h2 {
  text-align: center;
  color: var(--black);
  margin-bottom: 50px;
}

.about-main-section p {
  margin-bottom: 20px;
  color: var(--para);
}

.about-main-section p:last-child {
  margin-bottom: 0px;
}

.footer-main-menu1 ul,
.footer-main-menu2 ul {
  padding: 0;
  margin: 0;
}

.footer-main-menu1 ul li a,
.footer-main-menu2 ul li a {
  text-decoration: none;
}

.footer-bottom p {
  color: #fff;
  border-top: 1px solid #7d7d7d;
  margin: 0;
  padding-top: 21px;
}

.contact-info a {
  text-decoration: none;
}

/* Blog 3 Columns Layout */
.ets_blog_layout_grid .ets-blog-list > li {
  width: 100% !important;
  padding: 0 !important;
}

.ets-blog-wrapper-content {
  padding: 37px 24px;
}

a.ets_title_block {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  padding: 20px 0;
}

a.ets_title_block:hover {
  color: #000000;
}

.blog_description p {
  text-align: center;
  color: #333333;
}

.post-details .blog_description p {
  text-align: left;
}

.ets-blog-list .ets_item_img {
  background-color: unset;
}

ul.ets-blog-list.row.blog-main-page {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
  margin: 0;
  padding: 0;
}

.ets-blog-list li {
  margin: 0;
}

.ets_blog_layout_grid .ets-blog-list li:nth-child(2n + 1) {
  clear: none !important;
}

.ets_blog_layout_grid .ets-blog-list li:nth-child(3n + 1) {
  clear: both !important;
}

#ets_blog_page .thumb_post img {
  max-width: 100% !important;
}

/* Product Detail Page Styles */
.breadcrumb-nav {
  padding: 40px 0;
}

.breadcrumb-nav ol {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 0;
}

.breadcrumb-nav ol li a {
  color: #666;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.breadcrumb-nav ol li::after {
  content: ">";
  margin-left: 13px;
  color: #77878f;
  /* font-size: 18px; */
  font-weight: 700;
}

.breadcrumb-nav ol li:last-child::after {
  content: "";
}

.breadcrumb-item a {
  text-decoration: unset;
}

.breadcrumb-item span {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #5f6c72;
}

.breadcrumb-item.active span {
  color: #736744;
  font-weight: 500;
}

.home-icon {
  margin-right: 12px;
}

.product-container {
    margin-top: 20px;
    align-items: flex-start!important;
}
.product-name-container h2 {
    font-size: 24px;
}
.product-name-container h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.product-description-short {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.product-prices {
  margin-bottom: 20px;
}

.current-price-value {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-primary);
}

.tax-shipping-delivery-label {
  font-size: 14px;
  color: #666;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.product-quantity {
  display: flex !important;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.qty-input-container {
  display: flex;
  align-items: center;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  overflow: hidden;
}

.qty-btn {
  background: #f8f8f8;
  border: none;
  width: 40px;
  height: 60px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-input-container input#quantity_wanted {
  width: 100px;
  height: 60px;
  border: none;
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  text-align: center;
  font-size: 18px;
  margin: 0;
  -moz-appearance: textfield;
  appearance: none;
}

.qty-input-container input#quantity_wanted::-webkit-outer-spin-button,
.qty-input-container input#quantity_wanted::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-primary.add-to-cart {
  background-color: var(--btn-color);
  border: none;
  padding: 22px 50px;
  border-radius: 63px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.btn-primary.add-to-cart:hover {
  background-color: #e08300;
}

.product-details-bottom {
  padding: 60px 0;
  border-top: 1px solid #e2e2e2;
  margin-top: 60px;
}

.product-details-bottom h2 {
  margin-bottom: 30px;
}

.product-description-list p strong {
  color: #000;
}

.product-description-list ul {
  list-style: none;
  margin-top: 20px;
}

.product-description-list ul li {
  position: relative;
  padding-left: 35px;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  color: #333333;
}

.product-description-list ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.uses-recommendations {
  padding: 60px 0;
}

.uses-recommendations h2 {
  margin-bottom: 40px;
}

.uses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.use-item {
  text-align: center;
}

.use-item img {
  border-radius: 20px;
  margin-bottom: 20px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.use-item h4 {
  font-size: 18px;
  margin: 0;
}

.related-products {
  padding: 60px 0;
  background: #fff;
}

.related-products h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-item {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.related-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.related-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  color: white;
  text-align: center;
}

.related-content h4 {
  font-size: 18px;
  margin: 0;
}

/* product list   17-2-26 */

div#js-product-list-top {
  display: none;
}

.product-listing-cs {
  padding: 120px 0;
}

.product-listing-cs .pagination {
  display: none;
}

#products .product-listing-cs .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  row-gap: 48px;
}

#products .product-listing-cs .product-miniature {
  display: block;
}

#products
  .product-listing-cs
  .product-miniature
  .thumbnail-container
  .product-thumbnail
  img {
  border-radius: 15px;
  aspect-ratio: 306 / 345;
  object-fit: cover;
}

#products .product-listing-cs .product-miniature .thumbnail-container {
  margin-bottom: 0;
  background: transparent;
  border-radius: 15px;
}

/* #products .product-listing-cs .product-action-cart {
  position: absolute;
  z-index: 999;
  bottom: 37px;
  right: 16px;
} */

#products .product-listing-cs .product-action-cart button.btn.btn-primary {
  border: 2px solid #ffffff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #d4dcb8;
}

#products
  .product-listing-cs
  .product-action-cart
  i.material-icons.shopping-cart {
  margin: 0;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#products .product-listing-cs .product-miniature .product-description {
  padding: 0;
  background: transparent;
}

#products .product-listing-cs .product-miniature .product-title,
#products .product-listing-cs .product-miniature .product-title a {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  margin-top: 26px;
  color: #000000;
  text-align: left;
  margin-bottom: 9px;
}

#products .product-listing-cs .product-miniature .product-price-and-shipping {
  color: #736744;
  font-family: Unbounded;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.product-container ul.product-images.js-qv-product-images::-webkit-scrollbar {
  width: 4px; /* scrollbar width */
}

.product-container ul.product-images.js-qv-product-images::-webkit-scrollbar-track {
  background: #f0f0f0; /* track color */
  border-radius: 4px;
}

.product-container ul.product-images.js-qv-product-images::-webkit-scrollbar-thumb {
  background-color: #3498db; /* thumb color */
  border-radius: 4px;
  border: 2px solid #f0f0f0; /* spacing around thumb */
}

.product-container ul.product-images.js-qv-product-images::-webkit-scrollbar-thumb:hover {
  background-color: #2980b9; /* hover effect */
}

.product-container ul.product-images.js-qv-product-images {
    display: flex;
    padding: 0;
    flex-direction: column;
    margin: 0;
    gap: 2px;
    overflow-y: auto;
    height: 100%;
    overflow-x: hidden;
}
.product-container ul.product-images.js-qv-product-images img {
  object-fit: cover;
  margin: 0;
}
.product-container .images-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
}

.product-container ul.product-images.js-qv-product-images img {
  object-fit: cover;
}
#product #content {
  max-width: 100%;
}

.product-container .product-name-container h1 {
  margin-bottom: 40px;
}

.product-name-container {
  margin-bottom: 15px;
}

.product-container .product-description-short {
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 15px;
}

.product-container .current-price-value {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #736744;
}

.product-container .product-prices .tax-shipping-delivery-label {
  font-family: Inter;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #333333;
}

.product-container .product-prices {
  margin: 0;
  margin-bottom: 15px;
}

.product-container .block-categories .category-sub-menu li[data-depth="1"],
.product-container .product-prices div {
  margin-bottom: 0;
}

.product-container .product-actions .control-label {
  font-family: Inter;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #333333;
  margin-bottom: 10px;
}

.product-container .product-quantity {
  flex-direction: column;
  align-items: flex-start;
  width: 70%;
  margin: 0;
  gap: 15px;
}

.product-container .product-quantity .bootstrap-touchspin {
  width: 100%;
}

.product-container .product-quantity .input-group-btn-vertical .btn {
  display: none;
}

.product-container .product-quantity #quantity_wanted {
  position: relative;
  width: 100%;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  height: 60px;
  text-align: center;
}

.product-container .product-quantity .qty {
  width: 100%;
  position: relative;
}

.product-container button.qty-btn {
  position: absolute;
  z-index: 99;
  background: unset;
}

.product-container button.qty-btn.qty-minus {
  left: 10px;
}

.product-container button.qty-btn.qty-plus {
  right: 10px;
}

.product-cover img {
  border-radius: 10px;
  aspect-ratio: 1/1;
  object-fit: cover;
  height: 100%;
  transition: all 0.3s ease;
}

.js-thumb,
.js-modal-thumb {
  transition: all 0.3s ease;
  cursor: pointer;
}

.js-thumb:hover,
.js-modal-thumb:hover,
.js-thumb.selected,
.js-modal-thumb.selected,
.js-thumb.js-thumb-selected,
.js-thumb-selected {
  border: 2px solid var(--btn-color);
}
#product-modal .modal-content .modal-body .product-cover-modal {
  object-fit: scale-down;
  width: 100%;
  height: 100%;
}

/* account  */
.page-customer-account div#content-wrapper {
  padding: 100px 0 !important;
}

.page-registration #content {
  max-width: 900px;
}

#registration .register-form p {
  text-align: center;
  margin-bottom: 20px;
}

#registration .register-form p a {
  color: #000;
}

#registration .form-control-comment {
  display: block;
}

#customer-form button {
  float: left !important;
}

.page-customer-account div#content {
  border: 1px solid #d3d3d3;
  border-radius: 15px;
}

.page-customer-account .form-control {
  border: 1px solid #94a3b863;
  border-radius: 25px;
  height: 40px;
  padding: 0px 30px;
}

.page-customer-account
  .input-group
  .input-group-btn
  > .btn[data-action="show-password"] {
  padding: 0.78rem 1rem;
  background: var(--btn-color);
  position: absolute;
  right: 0;
  z-index: 99;
}

.page-customer-account .forgot-password a,
.page-customer-account .no-account a {
  color: #000;
}

/* contact  */
#contact div#content {
  padding: 0;
}

#contact .contact-form {
  background: unset;
}

#contact .form-label {
  margin-bottom: 15px;
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  text-transform: capitalize;
  color: #000000;
}

#contact .form-control {
  border: 1px solid #94a3b863;
  border-radius: 58px;
  height: 60px;
  padding: 0px 30px;
  background-color: #fff;
}

#contact textarea.form-control {
  height: 166px;
  padding: 16px 30px;
  border-radius: 25px;
}

#contact .form-control::placeholder {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #666666;
}

#contact .form-group {
  margin-bottom: 20px;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}

.application-inner-section {
  padding: 100px 0;
}

.application-inner-section ul.ets-blog-list.row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 0;
  gap: 24px;
  row-gap: 50px;
}

.product-cover {
  position: relative;
  cursor: pointer;
  margin: 0;
  width: calc(100% - 130px) !important;
}

#main .images-container .js-qv-mask.scroll {
    width: 110px !important;
    margin: 0 auto;
    max-height: 410px;
}
.product-cover .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.product-cover:hover .layer {
  opacity: 1;
}

.product-cover .layer i {
  color: #fff;
  font-size: 40px;
}

/* modal  */
#blockcart-modal .modal-header .btn-close {
  margin: 0;
  position: absolute;
  right: 30px;
}

#blockcart-modal .cart-content .cart-content-btn {
  flex-wrap: wrap;
  gap: 20px;
}

#blockcart-modal .product-name {
  color: #000;
}

#blockcart-modal .cart-content .cart-content-btn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

#blockcart-modal .btn-primary .material-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

#blockcart-modal .product-total {
  margin-bottom: 20px;
}

#blockcart-modal button.btn.btn-secondary {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 63px;
  border: unset;
}

#blockcart-modal a.btn.btn-primary {
  background-color: var(--btn-color);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 63px;
  color: var(--white);
  border: unset;
}

#blockcart-modal .product-price,
#blockcart-modal .modal-body .divide-right span,
#blockcart-modal .cart-content p.cart-products-count,
#blockcart-modal .cart-content p .label,
#blockcart-modal .cart-content p {
  font-family: var(--font-primary);
}

.custom-upload {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #94a3b863;
  padding: 11px 30px;
  border-radius: 58px;
  background-color: #fff;
}

.upload-btn {
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.upload-btn:hover {
  background: #333;
}

.file-name {
  font-size: 14px;
  color: #666;
}

.custom-upload button {
  background-color: var(--btn-color);
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  padding: 10px 21px;
  border-radius: 63px;
  color: var(--white);
  border: unset;
}

.history-page,
.my-account-pagee,
.cart-page-section,
.checkout-box {
  padding: 100px 0;
}

form .form-control-label,
.form-control-comment,
.page-customer-account .form-control,
label {
  font-family: var(--font-primary);
}

label {
  text-align: left;
}

.cart-page-section .current-price {
  color: var(--btn-color);
  margin-top: 10px;
}

.cart-page-section .product-line-grid-body > .product-line-info > .label,
.cart-page-section .product-line-info span,
.cart-page-section .product-price,
.cart-page-section .cart-summary-line .label,
.cart-page-section .cart-summary-line .value,
.cart-page-section .blockreassurance_product span,
body#checkout section.checkout-step .step-title,
.blockreassurance_product .item-product,
.cart-summary-line.cart-summary-subtotals .label,
.cart-summary-products p,
.blockreassurance_product span,
.media-list .product-name {
  font-family: var(--font-primary);
}

.product-line-info span {
  font-family: var(--font-secondary);
}

.cart-page-section .cart-summary-line .label,
.cart-page-section .cart-summary-line .value,
.cart-page-section
  .card-block.cart-summary-totals
  .cart-summary-line.cart-total
  span {
  font-size: 14px;
}

.media-list,
ul {
  margin-top: 20px;
}

.media-list .media {
  margin-bottom: 20px;
}

.media-list .product-quantity {
  margin-top: 0px;
  font-family: var(--font-secondary);
}

.media-list .media-body .alignment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.media-list .media-body .alignment .product-quantity {
  margin: 0;
  white-space: nowrap;
}

.media-list .media-body .alignment .product-price {
  float: none !important;
  margin-left: auto;
  white-space: nowrap;
}

.cart-page-section .product-price {
  font-size: 12px;
}

.media-list .product-name a,
.media-list .product-price,
.cart-summary-products p a,
.cart-summary-products p a:hover,
.cart-summary-products p a:focus {
  color: var(--btn-color) !important;
}

.cart-page-section .blockreassurance_product .item-product img,
.cart-page-section .blockreassurance_product .item-product svg {
  height: 30px;
  width: 30px;
  object-fit: scale-down;
}

/* order-confirmation  */

#order-confirmation .done {
  font-size: 50px;
}

#order-confirmation section .common-pad {
  padding: 60px 0 !important;
}

#order-confirmation .card-block h3.h2.card-title {
  text-align: center;
  margin-bottom: 30px;
}

#order-confirmation .card-block p {
  text-align: center;
}

#order-confirmation .card-block p a {
  color: var(--btn-color);
  font-weight: 800;
}

#order-confirmation .product-miniature .thumbnail-container .product-thumbnail {
  background: #fff;
  border-radius: 15px;
}

#order-confirmation
  .product-miniature
  .thumbnail-container
  .product-thumbnail
  img {
  border-radius: 15px;
  aspect-ratio: 306 / 345;
  object-fit: cover;
}

#order-confirmation .product-miniature .thumbnail-container,
#order-confirmation .product-miniature .product-description {
  background: unset;
}

#order-confirmation .product-miniature .product-title a {
  font-family: Unbounded;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  margin-top: 26px;
  color: #000000;
  text-align: left;
  margin-bottom: 9px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin: 10px 0px;
}

#order-confirmation .product-price-and-shipping {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#order-confirmation .product-action-cart button.btn.btn-primary {
  border-radius: 100%;
  width: 30px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#order-confirmation .btn-primary .material-icons {
  margin-right: 0;
}

#order-confirmation .products.row {
  row-gap: 30px;
}

#order-confirmation a.all-product-link.float-xs-left.float-md-right.h4 {
  color: var(--btn-color);
  font-weight: 800;
}
#product-modal .modal-content .modal-body {
  margin-left: -45 !important;
  background: #fff;
  flex-direction: row-reverse;
}
.js-product-images-modal ul.product-images {
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 85vh;
  overflow-y: scroll;
}
.js-product-images-modal ul.product-images {
  scrollbar-width: thin;
  scrollbar-color: #444 transparent;
}

.js-product-images-modal ul.product-images::-webkit-scrollbar {
  width: 6px;
}

.js-product-images-modal ul.product-images::-webkit-scrollbar-track {
  background: transparent;
  border: none;
}

.js-product-images-modal ul.product-images::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
}

.js-product-images-modal ul.product-images::-webkit-scrollbar-thumb:hover {
  background: #888;
  width: 10px;
}
.js-product-images-modal .modal-body {
  gap: 20px;
  justify-content: space-between;
}

.js-product-images-modal .modal-body figure {
  width: 100%;
  height: auto;
  margin: 0 !important;
}
#product-modal .modal-content .modal-body .product-images img {
  width: 120px;
  cursor: pointer;
  background: #fff;
  height: 120px;
  margin: 0 !important;
  padding: 0 !important;
}

@media (min-width: 768px) {
  #blockcart-modal .cart-content {
    padding-left: 10px !important;
  }
}

/* responsive  */

@media (max-width: 1199px) {
  .footer-main-ul {
    flex-wrap: wrap;
    gap: 50px;
  }

  .footer-main-menu1,
  .footer-main-menu2 {
    width: 40%;
  }

  ul.navbar-nav {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  h1,
  .h1 {
    font-size: 45px;
  }

  h2,
  .h2 {
    font-size: 37px;
  }

  .page-customer-account div#content-wrapper {
    padding: 80px 0 !important;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    background: #fff;
    width: 100%;
    left: 0;
    padding: 20px;
  }

  button.navbar-toggler.collapsed {
    box-shadow: unset;
  }

  .navbar-nav .nav-item {
    margin: 0 !important;
  }

  .product-container .product-prices,
  .product-container .product-description-short {
    margin-bottom: 30px;
  }

  .product-container .product-quantity {
    gap: 30px;
  }

  .uses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-listing-cs {
    padding: 80px 0;
  }

  .product-container .current-price-value {
    font-size: 35px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  ul.ets-blog-list.row.blog-main-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .ets_blog_layout_grid .ets-blog-list li:nth-child(3n + 1) {
    clear: none !important;
  }

  .ets_blog_layout_grid .ets-blog-list li:nth-child(2n + 1) {
    clear: both !important;
  }

  .biodegradable-image {
    position: relative;
    top: 30px;
    width: 100%;
  }

  .footer-main-content {
    flex-wrap: wrap;
    gap: 65px;
  }

  .footer-main-menu1,
  .footer-main-menu2 {
    width: 45%;
  }

  .footer-main-menu3 {
    width: 45%;
  }

  #products .product-listing-cs .products {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-main-section,
  .biodegradable-section,
  .applications-section,
  .wood-app-section,
  .newsletter-section {
    padding: 80px 0;
  }

  .products-section {
    padding-bottom: 80px;
  }

  .footer-main {
    padding-top: 80px;
  }

  .biodegradable-content h2,
  .about-main-section h2,
  .about-main-section img,
  .newsletter-section h2,
  .applications-section h2,
  .products-section h2,
  .wood-app-section h2,
  .newsletter-section h2 {
    margin-bottom: 30px;
  }

  .application-inner-section {
    padding: 80px 0;
  }

  .application-inner-section ul.ets-blog-list.row {
    row-gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .product-container {
    margin-top: 20px;
    row-gap: 50px;
  }
  .language-row {
    gap: 8px;
    flex-wrap: wrap;
  }
  .main-inner-row {
    gap: 6px;
  }
  h1,
  .h1 {
    font-size: 40px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  h5,
  .h5 {
    font-size: 18px;
  }

  p {
    font-size: 16px;
    line-height: 24px;
  }

  .breadcrumb-nav {
    padding: 20px 0px 10px;
  }

  .breadcrumb-nav ol {
    margin: 0;
  }

  a.ets_title_block {
    font-size: 18px;
  }

  .product-container .product-prices,
  .product-container .product-description-short {
    margin-bottom: 20px;
  }

  .product-container .product-quantity {
    gap: 20px;
  }

  .product-container .current-price-value {
    font-size: 30px;
  }

  .ets_blog_layout_grid .ets-blog-list > li {
    width: 100% !important;
  }

  ul.ets-blog-list.row.blog-main-page {
    grid-template-columns: repeat(1, 1fr);
  }

  #products .product-listing-cs .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main-content {
    gap: 45px;
  }

  .about-main-section,
  .biodegradable-section,
  .applications-section,
  .wood-app-section,
  .newsletter-section {
    padding: 60px 0;
  }

  .products-section {
    padding-bottom: 60px;
  }

  .footer-main {
    padding-top: 60px;
  }

  .biodegradable-content h2,
  .about-main-section h2,
  .about-main-section img,
  .newsletter-section h2,
  .applications-section h2,
  .products-section h2,
  .wood-app-section h2,
  .newsletter-section h2 {
    margin-bottom: 20px;
  }

  .newsletter-section input {
    width: 100%;
    height: 50px;
  }

  .common-btn {
    font-size: 14px;
    padding: 14px 31px;
  }

  .newsletter-section button {
    padding: 16px 47px;
  }

  .application-inner-section ul.ets-blog-list.row {
    grid-template-columns: repeat(1, 1fr);
  }

  .application-inner-section {
    padding: 60px 0;
  }

  .history-page,
  .my-account-pagee,
  .cart-page-section,
  .checkout-box {
    padding: 80px 0;
  }

  section .common-pad {
    padding: 80px 0 !important;
  }
}

@media (max-width: 575px) {
  .product-container .images-container {
    flex-direction: column;
  }
  .product-cover {
    width: 100% !important;
  }
  #main .images-container .js-qv-mask.scroll {
    width: 100% !important;
    margin: 0 auto;
  }
  .product-container ul.product-images.js-qv-product-images {
    flex-direction: row;
    margin: 0 0 20px;
  }
  h1,
  .h1 {
    font-size: 35px;
  }

  h2,
  .h2 {
    font-size: 25px;
  }

  .product-description-list ul li::before {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .product-description-list ul li {
    font-size: 16px;
    line-height: 30px;
  }

  .product-details-bottom {
    padding: 0px;
    margin-top: 30px;
  }

  .page-customer-account div#content-wrapper {
    padding: 60px 0 !important;
  }

  .product-container .current-price-value {
    font-size: 25px;
  }

  .product-listing-cs {
    padding: 60px 0;
  }

  .uses-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  #products .product-listing-cs .products {
    grid-template-columns: repeat(1, 1fr);
  }

  #products .product-listing-cs .product-miniature .product-title,
  #products .product-listing-cs .product-miniature .product-title a {
    font-size: 18px;
  }

  #products .product-listing-cs .product-miniature .product-price-and-shipping {
    font-size: 20px;
  }

  .navbar {
    padding: 10px 0px;
  }

  .navbar-brand img {
    max-width: 120px !important;
  }

  .history-page,
  .my-account-pagee,
  .cart-page-section,
  .checkout-box {
    padding: 60px 0;
  }

  section .common-pad {
    padding: 60px 0 !important;
  }

  body#checkout section.checkout-step .step-title,
  .cart-grid-body .card-block h1 {
    font-size: 1.1rem;
  }

  .cart {
    width: 41px;
    height: 41px;
  }

  .cart .cart-products-count {
    width: 15px;
    height: 15px;
    font-size: 8px !important;
  }

  .btn-primary.add-to-cart {
    padding: 14px;
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .footer-main-menu1,
  .footer-main-menu2,
  .footer-main-menu3 {
    width: 100%;
  }
}
.products-section-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.products-section-link {
  display: block;
  width: 100%;
}

#checkout .cargus-disabled-option {
  opacity: 0.65;
  cursor: not-allowed;
}

#checkout .cargus-disabled-option * {
  cursor: not-allowed !important;
}

#checkout .carrier-overweight-note {
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 1.3;
}
