/*
Theme Name: Storefront Child
Theme URI: https://woocommerce.com/storefront/
Description: Child Theme of Storefront
Author: 
Author URI: https://example.com
Template: storefront
Version: 1.0.0
Text Domain: storefront-child
*/

@font-face {
  font-family: "Marcellus";
  src: url("fonts/Marcellus-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("fonts/Jost-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("fonts/Quicksand-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("fonts/Quicksand-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("fonts/Quicksand-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --theme-color: #75262c;
  --white: #fff;
  --black: #000;
  --text-gray-100: #e9e9e9;
  --text-gray-900: #2c2c2c;

  --bg-red-400: #a43019;
  --bg-amber-700: #4f2f13;
  --transition: all 0.4s ease;
  /* fonts */
  --mcs: "Marcellus", serif;
  --jost: "Jost", sans-serif;
  --qs: "Quicksand", sans-serif;
}

body { font-family: var(--qs); background: #f3e7da; color: #000; } 
img { max-width: 100%; max-height: 100%; } 
a { color: var(--black); text-decoration: none; transition: var(--transition); } 
a:focus, input:focus, textarea:focus, button:focus { outline: none !important; } 
p { font-size: 16px; color: var(--text-gray-900); font-family: var(--qs); font-weight: 500; } 
.sp { padding: 80px 0px; } .container { max-width: 1320px !important; } 
ul { padding-left: 0px; margin-left: 0px; list-style: none !important; } 

/* btns----------------------- */ 
.solid-btn { font-family: var(--qs); text-align: center; font-weight: 500; text-transform: uppercase; font-size: 18px; color: var(--text-gray-100); background: var(--bg-amber-700); display: inline-block; transition:  var(--transition); padding: 12px 24px; } 
.solid-btn:hover { background: var(--bg-red-400); } 
.reg-btn, .add_to_cart_button { font-family: var(--qs); background-color: transparent; text-align: center; font-weight: 500; text-transform: uppercase; font-size: 18px; color: var(--bg-amber-700); border: 1px solid var(--bg-amber-700); display: inline-block; padding: 12px 24px; transition: var(--transition); } 
.reg-btn:hover, .add_to_cart_button:hover { background: var(--bg-amber-700); color: var(--text-gray-100); }

/* bootstrap------------------------------ */ 
.d-flex { display: flex; } 
.align-items-center { align-items: center; } 
.justify-content-end { justify-content: end; } 

/* header-------------------------- */ 
.fixed-header { position: fixed; width: 100%; padding: 10px 0px; z-index: 9; transition: var(--transition); background: url(assets/images/banner.webp); background-size: cover; } 
.fixed-header .logo img { transition: var(--transition); width: auto; height: 80px; } 
.fixed-header ul { display: flex; gap: 20px; margin-bottom: 0; } 
.fixed-header a { display: flex; align-items: center; gap: 10px; text-transform: uppercase; height: 100%; position: relative; width: fit-content; font-weight: 500; font-size: 16px; } 
.leftmenu a::before { content: ""; width: 0%; height: 2px; background: var(--bg-red-400); position: absolute; bottom: 0px; transition: var(--transition); } 
.leftmenu a:hover::before { width: 80%; } 
.fixed-header.scrolled { box-shadow: 0 0 3px #dbd9d9; } 
.fixed-header.scrolled .logo img { height: 70px; } 
.megamenu { position: absolute; z-index: 999; width: 100%; background: linear-gradient(to right, rgb(242 231 219), rgb(232 209 185)); left: 0px; display: flex; justify-content: center; opacity: 0; visibility: hidden; padding: 40px 0px; height: 0; transition: var(--transition); } 
.fixed-header li:hover .megamenu { visibility: visible; opacity: 1; height: 295px; } 
.megamenu h4 a{ font-size: 21px; font-weight: 600; color: var(--theme-color); margin-bottom: 20px; } 
.megamenu ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; } 
.megamenu a::before { height: 1px; } 
.catalog-text { display: block; } 
.main-wrapper { padding-top: 99px; } 
.home .main-wrapper { padding-top: 0px; }

.search-popup { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); display: flex; justify-content: center; opacity: 0; visibility: hidden; transition: 0.3s ease; z-index: 9999; } 
.search-popup.active { opacity: 1; visibility: visible; } 
.search-popup-content { background: #fff; width: 90%; height: fit-content; max-width: 900px; margin-top: 40px; padding: 25px; border-radius: 8px; position: relative; transform: translateY(-30px); transition: 0.3s ease; } 
.search-popup.active .search-popup-content { transform: translateY(0); }

/* header end----------------- */


/* homepage------------------- */
.banner { background: url(assets/images/banner.webp); padding: 160px 0 60px; background-size: cover; position: relative; } 
.banner h1 { color: var(--theme-color); font-size: 74px; font-weight: 400; font-family: var(--mcs); text-transform: uppercase; margin-bottom: 0; } 
.banner h2 { color: var(--theme-color); font-size: 27px; font-family: var(--jost); font-weight: 300; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1.5rem; } 
.banner p { color: var(--text-gray-900); font-size: 18px; margin-bottom: 1.8rem; } 
.banner2 { background: url(assets/images/banner2.webp); background-size: 100% 100%; min-height: 210px; display: flex; align-items: center; margin-top: -1rem; position: relative; z-index: 1; } 
.usp-grid { display: flex; justify-content: space-between; list-style: none; padding-left: 0; margin-bottom: 0; } 
.usp-grid li { display: flex; gap: 20px; align-items: center; position: relative; } 
.usp-grid li::before { content: ""; background: url(assets/images/vc1.png) no-repeat; height: 100%; width: 20px; } 
.usp-grid li:first-child::before { content: none; } 
.usp-grid .icon { flex-shrink: 0; } 
.usp-grid h3 { font-size: 20px; font-family: var(--mcs); color: var(--theme-color); font-weight: 400; margin-bottom: 0; } 
.usp-grid p { font-size: 18px; font-family: var(--qs); font-weight: 500; position: relative; } 
.usp-grid p::after { position: absolute; content: ""; bottom: -30px; background: url(assets/images/hr1.png) no-repeat; height: 18px; width: 100%; left: 0px; } 

/* section title -------- */ 
.section-title { font-size: 40px; color: var(--theme-color); font-family: var(--mcs); font-weight: 400; text-align: center; position: relative; padding-bottom: 30px; margin-bottom: 10px; } 
.section-title::before { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0px; background: url(assets/images/hr2.png) no-repeat; width: 140px; height: 20px; } 
.section-title.left { text-align: left; } 
.section-title.left::before { left: 0; transform: unset; }

.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 40px; } 
.product-card { padding: 24px 20px; border: 1px solid var(--bg-amber-700); corner-shape: scoop; border-radius: 6px; background: url(assets/images/product-card-bg.webp); background-size: 100% 100%; display: flex; flex-direction: column; align-items: center; justify-content: end; position: relative; text-align: center; } 
.product-card::before { content: ""; background: url(assets/images/hr-flower.png) no-repeat; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 44px; height: 22px; } 
.product-img, .product-card .product-card__img { margin: -36px 0 16px; } 
.product-card h3 { font-size: 26px; color: var(--theme-color); font-family: var(--mcs); font-weight: 400; } 
.product-price, .product-card .product-card__price { font-family: var(--qs); font-weight: 600; margin-bottom: 16px; } 
.product-price span { font-family: var(--jost); font-weight: 300; } 
.product-card .reg-btn, .product-card .add_to_cart_button { padding: 8px 16px; font-size: 14px; font-weight: 600; } 
.product-card .badge { position: absolute; top: -10px; right: 10px; background: var(--black); color: var(--white); border-radius: 4px; } 
.product-card .product-card__cat { display: none; }

.bg-img{
   background: url(assets/images/banner4.webp);
  background-size: 100% 100%;
}

.discover-set-info {
  font-family: var(--mcs);
  font-size: 18px;
  color: #663908;
  font-weight: 400;
}
.discovery-price {
  font-size: 40px;
  font-family: var(--mcs);
  margin-bottom: 20px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
  margin: 40px 0;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 15%;
  right: 15%;
  height: 1px;
  border-top: 1px dashed var(--bg-amber-700);
  z-index: 1;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}
.process-circle {
  background: #f3e7da;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  border: 1px solid var(--bg-amber-700);
  overflow: hidden;
  padding: 8px;
}
.process-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  object-position: top;
}
.step-number {
  font-size: 20px;
  font-weight: 500;
  position: relative;z-index: 1; width: 35px; height: 35px; background: var(--theme-color); color: #fff; display: grid; place-items: center; margin: -37px auto 20px; border-radius: 50%;
}
.process-step h3 {
  color: var(--theme-color);
  font-family: var(--mcs);
  font-size: 24px;
  margin-bottom: 10px;
}

/* slider----------------- */
.reviews-section {
  z-index: -1;
}
.slider-wrap {
  position: relative;
  margin-top: 24px;
}
.slider-viewport {
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
  user-select: none;
}
.slider-track.dragging {
  transition: none;
  cursor: grabbing;
}
.slide {
  flex: 0 0 33.3333%;
  padding: 10px;
}
.slide img,
.slide a {
  -webkit-user-drag: none;
}
.review-card {
  position: relative;
  height: 100%;
  border: 1px solid var(--bg-amber-700);
  border-radius: 20px;
  padding: 34px 30px 30px;
  text-align: center;
  transition: var(--transition);
}
.review-card::before {
  content: "";
  background: url(assets/images/hr-flower.png) no-repeat;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 22px;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(73, 25, 28, 0.12);
}
.review-card img {
  margin: 0px auto 20px;
}
.review-author {
  font-family: var(--mcs);
  color: var(--theme-color);
  font-size: 22px;
  letter-spacing: 0.3px;
}
/* ---------- Dots ---------- */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(117, 38, 42, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--theme-color);
  transform: scale(1.35);
}

/* slider end---------------*/

/* footer */
.zig-zag-3d-edge {
  --s: 20px; /* control the size */
  --a: 90deg; /* control the angle  */
  --d: 20px; /* the depth */
  mask: conic-gradient(
      from calc(180deg - var(--a) / 2) at top,
      #0000,
      #000 1deg calc(var(--a) - 1deg),
      #0000 var(--a)
    )
    50% / var(--s);
}
.footer-bg {
  background: #49191c url("assets/images/footer-bg.webp");
  background-size: 100% 100%;
  padding-top: 70px;
  margin-top: -10px;
}
footer ul {
  list-style: none;
  padding-left: 0px;
  margin-left: 0px;
}
footer .heading {
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
}
footer .sub-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-family: var(--jost);
  font-weight: 500;
}
.border-t-dark {
  border-top: 1px solid #542b06;
  font-family: var(--mcs);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
.line-gradient {
  background: var(--bg-red-400);
  height: 1px;
  width: 4rem;
  margin-top: 1rem;
}
.footer-link a {
  display: block;
  text-decoration: none;
  color: white;
  padding-left: 20px;
  font-size: 16px;
  font-family: var(--jost);
  line-height: 38px;
  background: url("assets/images/left-arrow-icon.png") 0px 15px no-repeat;
}
.footer-link a:hover {
  color: #9a5a21;
  transition-duration: 0.6s;
}
footer .contact-info a {
  color: #fff;
  font-family: var(--jost);
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
}
footer .contact-info a h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
}
footer .contact-info a p {
  font-family: var(--qs);
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
}
footer .contact-info a:hover p,
footer .contact-info a:hover h3 {
  color: #9a5a21;
  transition: all 0.4s ease;
}
footer .icon-box {
  width: 42px;
  height: 42px;
  background: var(--bg-red-400);
  display: grid;
  place-items: center;
  border-radius: 2px;
}

/* --------cart---------- */
.custom-cart-page {
  background: url(assets/images/banner5.webp);
  background-size: 100% 100%;
  padding: 40px 0px;
}
.custom-cart-page .wc-block-cart__submit-button,
button.button {
  font-family: var(--qs);
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  color: var(--text-gray-100);
  background: var(--bg-amber-700);
  display: inline-block;
  padding: 12px 24px;
}
.custom-cart-page .wc-block-cart__submit-button:hover,
button.button:hover {
  background: var(--bg-red-400);
  color: var(--white);
}
.custom-cart-page .woocommerce {
  display: flex;
}
.custom-cart-page .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding-left: 0px;
  margin-left: 0;
}
.custom-cart-page .woocommerce-MyAccount-navigation-link a {
  padding: 10px;
  color: var(--black);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.custom-cart-page .woocommerce-MyAccount-navigation-link.is-active a,
.custom-cart-page .woocommerce-MyAccount-navigation-link a:hover {
  background: var(--theme-color);
  color: #fff;
}
.custom-cart-page .woocommerce-MyAccount-navigation ul li a::before {
  opacity: 1;
  color: var(--theme-color);
  margin-left: 0px;
  text-align: center;
}
.custom-cart-page .woocommerce-MyAccount-navigation ul li.is-active a::before,
.custom-cart-page .woocommerce-MyAccount-navigation ul li a:hover::before {
  color: #fff;
}
.custom-cart-page .woocommerce-info {
  background: var(--theme-color);
}
.custom-cart-page input[type="text"],
.custom-cart-page input[type="email"],
.custom-cart-page input[type="tel"],
.custom-cart-page input[type="url"],
.custom-cart-page input[type="password"],
.custom-cart-page input[type="search"],
.custom-cart-page textarea,
.custom-cart-page .input-text {
  background: var(--white);
  margin-bottom: 10px;
  border-radius: 6px;
}
.custom-cart-page .form-row label {
  color: var(--black);
  font-weight: 600;
  margin-bottom: 6px;
}
.custom-cart-page .select2-container--default .select2-selection--single {
  height: 44px;
  border: 0;
  padding: 6px 0;
  margin-bottom: 10px;
}
.custom-cart-page
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  margin-top: 6px;
}
.custom-cart-page .add_to_cart_button {
  background: transparent;
}
.custom-cart-page .wc-block-components-product-metadata__description h2 {
  font-size: 1rem;
}
.custom-cart-page .woocommerce .woocommerce-order {
  flex: 1;
}
.custom-cart-page .woocommerce-columns--2 {
  display: flex;
}

/* -----------------archive product  page -------------------*/
.archive-product .product-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0px;
}
.product-card .product-card__price span {
  font-family: var(--qs);
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}
.archive-product #shop-orderby {
  outline: none;
  text-align: left;
  font-size: 14px;
  padding-right: 40px;
}
.select-arrow {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234f2f13' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 10px;
}
.select-arrow:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 10px;
}
.archive-product .filter-block h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--theme-color);
}
.archive-product .filter-scroll label {
  padding: 6px 0px;
  color: var(--text-gray-900);
}
.archive-product .shop-pagination {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  gap: 8px;
}
.archive-product .shop-pagination button {
  background: var(--theme-color);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  line-height: 0px;
  padding: 0px;
  color: #fff;
}
.archive-product .shop-pagination button:hover {
  background: var(--bg-red-400);
}

/* --------------- single product page gandhmula.com/product/gulab/ -------------------- */
.cart-banner {
  /* background: url(assets/images/banner5.webp);
  background-size: 100% 100%; */
  padding: 40px 0px 40px;
}
.cart-banner .product-top-wrapper {
  display: grid; gap: 60px;
  grid-template-columns: repeat(2, 1fr);
}
.cart-banner .woocommerce-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100% !important;
  float: unset !important;
}
.cart-banner
  .woocommerce-product-gallery
  .woocommerce-product-gallery__image
  a {
  display: block;
  height: 300px;
  object-fit: contain;
  object-position: center;
}
.cart-banner
  .woocommerce-product-gallery
  .woocommerce-product-gallery__image
  a
  img {
  width: 100%;
  height: 100%;
}
.cart-banner .flex-control-thumbs {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.cart-banner .flex-control-thumbs li {
  flex-shrink: 0;
  height: 80px !important;
  width: 80px !important;
  float: unset !important;
  margin: 0 !important;
}
.cart-banner .flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: contain; padding: 5px;
  border: 1px solid var(--theme-color);
}
.cstm-product-smry .woocommerce-product-details__short-description h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--bg-amber-700);
  font-family: var(--qs) !important;
}
.cstm-product-smry .woocommerce-product-details__short-description p {
  margin-bottom: 10px;
}
.single-product .cstm-product-smry .price {
  margin: 10px 0px;
}

.woocommerce-cart .wc-block-components-product-metadata,
.woocommerce-cart .wc-block-components-product-metadata__description {
  display: none !important;
}
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.col2-set#customer_login .col-1,
.col2-set.addresses .col-1,
.col2-set#customer_login .col-2,
.col2-set.addresses .col-2 {
  float: unset !important;
}
.product-btn .added_to_cart {
  display: none !important;
}
.cart-banner .woocommerce-product-gallery .woocommerce-product-gallery__image a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.add-to-cart-wrapper .size-selector .size-options {
    display: flex;
    gap: 10px;
}

.add-to-cart-wrapper .size-selector .size-btn:hover, .add-to-cart-wrapper .size-selector .size-btn.active {
    color: var(--white);
    background: var(--bg-amber-700);
}

.add-to-cart-wrapper .size-selector .size-btn {
    font-size: 14px;
    border: 1px solid var(--bg-amber-700);
    background: transparent;
    padding: 8px 16px;
    transition: var(--transition);
}
.add-to-cart-wrapper .single_add_to_cart_button {
    font-size: 16px;
    color: var(--white);
    padding: 10.5px 31px;
    background: var(--bg-amber-700);
}
.add-to-cart-wrapper .qty-stepper{border: 1px solid var(--bg-amber-700);}
.add-to-cart-wrapper .qty-stepper button, .add-to-cart-wrapper .qty-stepper input {
    font-weight: 600;
    background: transparent;
    border-right: 1px solid var(--bg-amber-700);
}
.add-to-cart-wrapper .qty-stepper input[type="number"]::-webkit-inner-spin-button,
.add-to-cart-wrapper .qty-stepper input[type="number"]::-webkit-outer-spin-button{ -webkit-appearance: none; margin: 0;}
.add-to-cart-wrapper .qty-stepper button:last-child{border-right: none;}

.cstm-product-smry .woocommerce-product-details__short-description h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--bg-amber-700);
    font-family: var(--qs) !important;
}
.cstm-product-smry .woocommerce-product-details__short-description p {
    margin-bottom: 10px;
} 
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {display: none !important;}
.buy-now-btn{width: 58%;}

/* Feature icons row */
.feature-icons-row {
    display: flex; gap: 50px; margin-bottom: 26px; 
}
.feature-icon-item { text-align: center; }
.feature-icon-item .icon-circle {
    display: flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%;
    border: 1px solid var(--theme-color); margin: 0 auto 8px;
}
.feature-icon-item img { width: 26px; height: 26px; object-fit: contain; }
.feature-label { font-size: 14px; font-weight: 500; display: block; }

/* Accordions */
.product-accordion {
    border: 1px solid var(--theme-color);
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}
.product-accordion.specs-box { background: transparent; }
.product-accordion .accordion-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 16px; cursor: pointer; font-weight: 600; color: var(--theme-color);
    background: #f1e1d0;
}
.product-accordion .accordion-body { padding: 14px 16px; }
.product-accordion .accordion-body h2,.product-accordion .accordion-body h3, .product-accordion .accordion-body h4{font-size: 18px; color: var(--text-gray-900);} 
.specs-list { list-style: none; margin: 0; padding: 0; }
.specs-list li { margin-bottom: 6px; }
.product-accordion .woocommerce-product-attributes td, .product-accordion .woocommerce-product-attributes th{border: 1px dashed var(--theme-color); background: transparent;}

.benefits-section { padding: 60px 0; }
.benefits-grid { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.benefits-col { flex: 1 1 320px; display: flex; flex-direction: column; gap: 26px; }
.benefit-item { display: flex; gap: 14px; }
.benefit-number { color: var(--theme-color); font-family: var(--mcs); font-weight: 400;font-size: 18px; border: 1px solid var(--theme-color); border-radius: 50%; flex-shrink: 0; width: 40px; height: 40px; display: grid;place-items: center; }
.benefit-item h3 { margin: 0 0 4px; font-size: 22px; color: var(--theme-color); font-family: var(--mcs); font-weight: 400; }
.benefit-item p { margin: 0; font-size: 16px; color: #222; line-height: 1.6; font-family: var(--jost); }
.benefits-center-image { flex: 0 0 260px; text-align: center; }
.benefits-center-image img { max-width: 100%; }

/* FAQ */
.faq-item { border: 1px solid var(--text-gray-900); border-radius: 4px; margin-bottom: 10px; overflow: hidden; }
.faq-item.active{border-color: var(--theme-color);}
.faq-item.active .faq-question { background: var(--theme-color); color: #fff; }
.faq-question { display: flex; justify-content: space-between; align-items: center;padding: 14px 18px; cursor: pointer; font-weight: 600; background: transparent; color: var(--text-gray-900);}
.faq-item .toggle-icon{color: var(--theme-color);}
.faq-item.active .toggle-icon{color:var(--white)}
.faq-answer { padding: 14px 18px; font-size: 14px; color: #666; line-height: 1.7; }

.content-area, .widget-area{margin-bottom: 0px !important;}




.cmn-abste-reltve{position: relative;}
.cmn-abste-reltve::before,.cmn-abste-reltve::after{content: ""; position: absolute;background-blend-mode: multiply;}

/* ---------- Responsive ---------- */
@media (min-width: 1400px) {
 .banner::before { content: ""; position: absolute; left: 0px; width: 200px; height: 100%; background: url(assets/images/banner1-watermark.webp) no-repeat; background-size: 150px; }
 .tl-br::before{left: 0px; top: 0; background: url(assets/images/discovery-set-left-icon1.png) no-repeat; width: 206px; height: 235px;background-blend-mode: multiply;}
}

@media (max-width: 992px) {
 .slide { flex: 0 0 50%; } 
 .usp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 20px; padding: 70px 0px; } 
 .usp-grid li::before { display: none; } .usp-grid li { flex-direction: column; text-align: center; } 
 .usp-grid p::after { width: 135px; left: 50%; transform: translateX(-50%); } 
 .product-grid { grid-template-columns: repeat(3, 1fr); } 
 .footer-bg { background-image: unset; }
}

@media (max-width: 768px) {
  /* header */
  .fixed-header { background: linear-gradient(to right, rgb(242 231 219), rgb(232 209 185)); } 
  .fixed-header li:hover .megamenu { height: 100vh; overflow-y: auto; } 
  .main-wrapper {padding-top: 65px;}
  .catalog-menu .megamenu { display: none; } 
  .catalog-menu.mobile-open .megamenu { display: block; } 
  .catalog-text { display: none; } 
  .fixed-header .catalog-toggle { width: 40px; } 
  .catalog-toggle img { width: 30px; } 
  .fixed-header .logo img, .fixed-header.scrolled .logo img { height: 50px; } 
  .catalog-menu.mobile-open .catalog-toggle img { display: none; } 
  .catalog-menu.mobile-open .catalog-toggle::before { content: "×"; font-size: 40px; line-height: 1; display: block; position: absolute; top: 4px; } 
  .leftmenu a::before { background: none; } /* header  end*/
   .banner { background-image: unset; } 
  .bg-img { background: #efe0d0; } 
  .slide { flex: 0 0 100%; } 
  .section-title { font-size: 1.9rem; } 
  .product-grid, .archive-product .product-grid { grid-template-columns: repeat(2, 1fr); } 
  .process-timeline { grid-template-columns: repeat(1, 1fr); gap: 30px; } 
  .process-timeline::before { display: none; } .banner { text-align: center; } 
  .banner h1 { font-size: 46px; margin-bottom: 0.8rem; } 
  .banner h2 { font-size: 22px; margin-bottom: 0.8rem; } 
  .section-title.left::before { left: 50%; transform: translateX(-50%); } 
  .section-title.left { text-align: center; } 
  .custom-cart-page .woocommerce, .custom-cart-page .woocommerce-columns--2 { flex-direction: column; }
  .cart-banner .product-top-wrapper {grid-template-columns: repeat(1, 1fr); gap:10px;}
  .cart-banner .flex-control-thumbs li{width: 60px !important; height: 60px !important;}
  .feature-icons-row{display: grid; grid-template-columns: repeat(2,1fr);}
  .benefit-item{flex-direction: column; align-items: center;}
}

@media (max-width: 576px) {
  .product-grid, .archive-product .product-grid { grid-template-columns: repeat(1, 1fr); } 
  .usp-grid p { font-size: 16px; } 
  .usp-grid .icon img { width: auto; max-height: 75px; }
}

@media (prefers-reduced-motion: reduce) {
  .slider-track {
    transition: none;
  }
  .review-card {
    transition: none;
  }
}
