@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Lexend+Deca:wght@100..900&display=swap");
a {
  text-decoration: none;
}

.btn-dark {
  background: #3a473a;
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 700;
}

.btn-dark-card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 10px 20px;
  color: #3a473a;
  font-weight: 700;
}
.btn-dark-card:hover {
  background-color: #707c69;
  color: #f5f5f5;
}

.btn-white {
  background-color: #f0ebe1;
  color: #3a473a;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 20px;
}

.text-30 {
  font-size: 30px;
  line-height: normal;
  color: #3a473a;
  font-weight: 900;
}

h3 {
  color: #3a473a;
  font-weight: 800;
}

.swiper-pagination-bullet-active {
  background-color: #3a473a;
}

body {
  font-family: "Lexend Deca", sans-serif;
  background-color: #ffffff;
  color: #3a473a;
}

/* Header Styles */
.top-bar {
  background: #3a473a;
  color: #ffffff;
  text-align: center;
  padding: 14px 10px;
  font-weight: 600;
}
.top-bar .top-bar-wrapper {
  padding-right: 20px;
}
.top-bar .top-item {
  font-family: "Cormorant Garamond", serif;
}
.top-bar p {
  background-color: #df9034;
  padding: 3px 15px;
  border-radius: 7px;
  font-size: 14px;
  color: #ffffff;
}
.top-bar p a {
  color: #ffffff;
}

.header-main {
  padding: 20px 0;
}

.search-box {
  position: relative;
  padding-left: 40px;
}
.search-box input {
  height: 55px;
  border-radius: 15px;
  border: none;
  background: #f5f6f5;
  padding: 10px 60px 10px 20px;
}
.search-box .search-box-img {
  position: absolute;
  right: 24px;
  top: 14px;
  pointer-events: none;
}

.main-header {
  gap: 60px;
}

.nav-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background-color: rgba(240, 235, 225, 0.26);
  border-radius: 15px;
  padding: 9px 20px;
}
.nav-actions a {
  text-decoration: none;
  color: #3a473a;
  font-weight: 600;
  padding: 0 !important;
}
.nav-actions a:hover {
  background: transparent !important;
}
.nav-actions a .white-icon {
  filter: brightness(0) saturate(100%) invert(98%) sepia(98%) saturate(0%) hue-rotate(2deg) brightness(103%) contrast(104%);
}
.nav-actions .language-select {
  width: 60px;
  border: none;
  font-weight: 600;
  box-shadow: none !important;
  background: url(../images/down-arrow-white.png) no-repeat;
  background-position: 95% 55%;
  padding-right: 20px;
  color: #ffffff;
}
.nav-actions .language-select option {
  background-color: #3a473a;
}

.info-bar {
  background: #e6e3d5;
  padding: 12px 0;
  text-align: center;
  font-weight: 500;
}
.info-bar .top-item {
  font-size: 16px;
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.main-nav > ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 5px 35px;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a:active {
  background: rgba(255, 255, 255, 0.08);
  color: #e6e3d5;
}

/* Hamburger */
.menu-btn {
  width: 42px;
  height: 42px;
  position: relative;
  border: none;
  background: none;
}
.menu-btn span {
  position: absolute;
  left: 8px;
  width: 26px;
  height: 2px;
  background: #e6e3d5;
  transition: 0.4s;
}
.menu-btn span:nth-child(1) {
  top: 12px;
}
.menu-btn span:nth-child(2) {
  top: 20px;
}
.menu-btn span:nth-child(3) {
  top: 28px;
}
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
}

.offcanvas {
  width: 320px !important;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav li {
  border-bottom: 1px solid #e6e3d5;
}
.mobile-nav li.dropdown .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav li.dropdown .dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #3a473a;
  border-bottom: 2px solid #3a473a;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 5px;
  border-left: 0;
  border-top: 0;
}
.mobile-nav li.dropdown .dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(-135deg);
}
.mobile-nav a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: #3a473a;
  font-weight: 600;
}
.mobile-nav .dropdown-menu {
  position: static !important;
  float: none !important;
  background-color: #f5f6f5;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  box-shadow: none;
  display: none;
}
.mobile-nav .dropdown-menu.show {
  display: block;
}
.mobile-nav .dropdown-menu li {
  border-bottom: 1px solid rgba(58, 71, 58, 0.05);
}
.mobile-nav .dropdown-menu li:last-child {
  border-bottom: none;
}
.mobile-nav .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  color: #3a473a;
  font-weight: 500;
  font-size: 15px;
}
.mobile-nav .dropdown-menu .dropdown-item img {
  width: 50px;
  height: 35px;
  object-fit: contain;
}
.mobile-nav .dropdown-menu .dropdown-item:hover, .mobile-nav .dropdown-menu .dropdown-item:focus, .mobile-nav .dropdown-menu .dropdown-item:active {
  background-color: rgba(58, 71, 58, 0.05);
  color: #3a473a;
}

.extra-info a {
  color: #3a473a;
}

.desktop-header {
  background: rgba(112, 124, 105, 0.8);
}
.desktop-header .nav-item.dropdown {
  position: static;
}
.desktop-header .dropdown-menu {
  width: 100%;
  min-width: 918px;
  border: 0;
  background-color: transparent;
  padding: 0;
}
.desktop-header .dropdown-menu .dropdown-item {
  padding-top: 0;
  padding-bottom: 0;
}
.desktop-header .dropdown-menu .dropdown-item:hover, .desktop-header .dropdown-menu .dropdown-item:focus, .desktop-header .dropdown-menu .dropdown-item:active {
  background: transparent;
  color: #000;
}
.desktop-header .max-slider {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 35px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 15px 15px;
}
.desktop-header .nav-slider .swiper-slide {
  text-align: center;
}
.desktop-header .nav-slider .swiper-slide img {
  width: 100%;
  height: 80px;
  max-width: 190px;
  object-fit: contain;
  object-position: bottom;
  margin-bottom: 10px;
}
.desktop-header .nav-slider .swiper-slide span {
  width: 100%;
  display: block;
}
.desktop-header .swiper-button-next {
  right: -10px;
}
.desktop-header .swiper-button-prev {
  left: -10px;
}
.desktop-header .swiper-button-next:after,
.desktop-header .swiper-button-prev:after {
  content: none;
}
.desktop-header .dropdown-toggle::after {
  content: none;
}

.dropdown-single {
  position: relative;
}
.dropdown-single .dropdown-menu {
  min-width: inherit;
  width: auto;
  background-color: #e6e3d5;
  padding: 10px 0;
  max-width: 250px;
  width: 100%;
  border-radius: 0;
}
.dropdown-single .dropdown-menu .dropdown-item {
  color: #3a473a;
  padding: 10px 15px;
}
.dropdown-single .dropdown-menu .dropdown-item:hover {
  background-color: rgba(58, 71, 58, 0.05);
  color: #3a473a;
}

/* Footer Styles */
.footer-section {
  background: #3a473a;
  color: #e6e3d5;
}
.footer-section a {
  color: #e6e3d5;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}
.footer-section a:hover {
  color: #df9034;
}

.footer-logo {
  max-width: 180px;
  width: 100%;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(176deg) brightness(101%) contrast(101%);
}

.footer-title {
  font-size: 23px;
  font-weight: 900;
  color: #707c69;
  margin-bottom: 1rem;
}

.copy-rights {
  font-size: 18px;
}

.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #e6e3d5;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #df9034;
}

.footer-contact {
  line-height: 1.9;
}
.footer-contact a {
  color: #e6e3d5;
  text-decoration: none;
  transition: 0.3s;
}
.footer-contact a:hover {
  color: #df9034;
}

.stars {
  color: #df9034;
  font-size: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}
.social-icons a {
  font-size: 2rem;
  color: #fff;
}
.social-icons a svg {
  width: 30px;
}
.social-icons a:hover {
  transform: translateY(-10px);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-row .footer-child {
  position: relative;
}
.footer-row .footer-child:not(:first-child)::before {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #e6e3d5;
  position: absolute;
  left: -35px;
  opacity: 0.3;
}
.footer-row .footer-child:nth-child(2)::before {
  left: 25px;
}

/* Home Page Styles */
.banner-slider .swiper {
  width: 100%;
  height: 850px;
  position: relative;
}
.banner-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: #e6e3d5;
}
.banner-slider .custom-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  width: 80%;
  max-width: 400px;
}
.banner-slider .progress-bar-container {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
.banner-slider .progress-bar-container .progress-bar-fill {
  height: 100%;
  width: 0%;
  background: #f19a35;
  transition: width 0s;
}
.banner-slider .progress-bar-container.active .progress-bar-fill {
  animation: fillProgress 4000ms linear forwards;
}
@keyframes fillProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.banner-slider .swiper-item-detail {
  top: auto;
  left: 0;
  right: 0;
  bottom: 10%;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 0;
}
.banner-slider .swiper-item-detail h2 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 400;
  line-height: normal;
  font-family: "Cormorant Garamond", serif;
}

.product-slider-section {
  background: #ffffff;
  margin: 45px 0;
}
.product-slider-section h2 {
  color: #3a473a;
}
.product-slider-section .assortmentSwiper {
  padding: 30px 20px 90px 20px;
}
.product-slider-section .assortmentSwiper .swiper-slide {
  height: auto;
  transition: 0.3s all;
}
.product-slider-section .assortmentSwiper .swiper-slide.swiper-slide-active {
  scale: 1.1;
}
.product-slider-section .swiper-pagination {
  top: auto;
  bottom: 0;
  background-color: transparent;
  height: 6px;
  width: 100%;
}
.product-slider-section .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #f19a35;
}
.product-slider-section .swiper-pagination::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #df9034;
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  z-index: -1;
}
.product-slider-section .product-card {
  border-radius: 12px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
}
.product-slider-section .product-card img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-slider-section .product-card h6 {
  margin: 0;
  font-size: 18px;
  color: #444;
  font-weight: 500;
}
.product-slider-section .product-card .card-item-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 20px 20px;
  max-width: 262px;
}
.product-slider-section .product-card .card-item-detail h6 {
  color: #f5f6f5;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 10px;
}
.product-slider-section .product-card .card-item-detail p {
  margin-bottom: 0;
  color: #f5f6f5;
}
.product-slider-section .custom-prev,
.product-slider-section .custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}
.product-slider-section .custom-prev img,
.product-slider-section .custom-next img {
  width: 100%;
  height: 100%;
}
.product-slider-section .custom-prev:hover,
.product-slider-section .custom-next:hover {
  background: #66705d;
}
.product-slider-section .custom-prev i,
.product-slider-section .custom-next i {
  font-size: 22px;
}
.product-slider-section .custom-prev {
  left: -15px;
}
.product-slider-section .custom-next {
  right: -15px;
}
@media (max-width: 991.98px) {
  .product-slider-section .custom-prev,
  .product-slider-section .custom-next {
    width: 45px;
    height: 45px;
  }
  .product-slider-section .custom-prev {
    left: -10px;
  }
  .product-slider-section .custom-next {
    right: -10px;
  }
}
@media (max-width: 767.98px) {
  .product-slider-section .custom-prev,
  .product-slider-section .custom-next {
    display: none;
  }
}

.category-section {
  margin-bottom: 90px;
}
.category-section .icon-box {
  max-width: 100%;
  margin: 0 auto;
}
.category-section .icon-box-item img {
  max-width: 70px;
  height: 100px;
  object-fit: contain;
  width: 100%;
}
.category-section .icon-box-item .box-item-title {
  font-size: 18px;
  color: rgba(58, 71, 58, 0.8);
  font-weight: 700;
  margin-bottom: 0;
}

.two-cards {
  padding-bottom: 0;
}
.two-cards .card-container {
  padding: 40px 50px;
  position: relative;
  transition: all 0.4s;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
}
.two-cards .card-container p {
  margin-bottom: 40px;
  color: #f5f5f5;
}
.two-cards .card-container:hover {
  background-color: #f6f6f6;
}
.two-cards .card-container h3 {
  color: #f5f5f5;
  font-family: "Cormorant Garamond", serif;
}
.two-cards .card-left .card-container {
  justify-content: flex-end;
  border-radius: 0 10px 10px 0;
}
.two-cards .card-left .card-container .card-data {
  margin-right: 7%;
}
.two-cards .card-right .card-container {
  border-radius: 10px 0 0 10px;
}
.two-cards .card-data {
  max-width: 530px;
}
.two-cards .card-1 picture img {
  max-width: 300px;
  height: 210px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.two-cards .card-1 .card-cta {
  position: relative;
  z-index: 3;
}
.two-cards .card-1:first-child picture {
  transform: translateX(-50px);
  display: block;
}

.popular-products {
  margin-bottom: 60px;
}
.popular-products .iframe-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.popular-products .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.testimonial-section .section-title {
  font-size: 38px;
  font-weight: 400;
  color: #3f4a3d;
  padding-inline: 40px;
  font-family: "Cormorant Garamond", serif;
}
.testimonial-section .testimonial-slider-wrapper {
  position: relative;
  padding-inline: 40px;
}
.testimonial-section .swiper {
  overflow: hidden;
}
.testimonial-section .swiper .swiper-slide {
  height: auto;
}
.testimonial-section .testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(58, 71, 58, 0.3);
  padding: 2rem;
  height: 100%;
}
.testimonial-section .testimonial-card .card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.testimonial-section .testimonial-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3f4a3d;
  margin: 0;
}
.testimonial-section .testimonial-card p {
  color: #000;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-align: justify;
  letter-spacing: -0.8px;
}
.testimonial-section .testimonial-card .rating {
  white-space: nowrap;
  color: #d8922b;
  font-weight: 700;
}
.testimonial-section .testimonial-card .rating span {
  color: #3f4a3d;
  margin-left: 0.35rem;
}
.testimonial-section .testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-section .testimonial-card .author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-section .testimonial-card .author h5 {
  margin: 0;
  font-weight: 700;
  color: #3f4a3d;
}
.testimonial-section .testimonial-prev::after,
.testimonial-section .testimonial-next::after {
  content: none;
}
.testimonial-section .testimonial-prev {
  left: 5px;
}
.testimonial-section .testimonial-next {
  right: 5px;
}
.testimonial-section .inspiration-section .section-title {
  margin-bottom: 2.5rem;
}
.testimonial-section .inspiration-section .inspiration-img {
  width: 100%;
  display: block;
  height: 100%;
}

@media (max-width: 991px) {
  .testimonial-section .section-title {
    font-size: 2rem;
  }
  .testimonial-section .testimonial-slider-wrapper {
    padding-inline: 0;
  }
  .testimonial-section .testimonial-prev,
  .testimonial-section .testimonial-next {
    display: none;
  }
}
@media (max-width: 767px) {
  .testimonial-section .section-title {
    font-size: 1.75rem;
    text-align: center;
  }
  .testimonial-section .testimonial-card {
    min-height: auto;
    padding: 1.5rem;
  }
  .testimonial-section .testimonial-card .card-top {
    flex-direction: column;
  }
}
.card-details-center {
  max-width: 1015px;
  margin: 40px auto 60px auto;
}
.card-details-center p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(58, 71, 58, 0.8);
}
.card-details-center p strong {
  font-weight: 500;
}

.product-slider-title {
  font-weight: 900;
  font-size: 30px;
  line-height: normal;
}

.custom-review-slider {
  padding: 80px 0;
  overflow: hidden;
}
.custom-review-slider .reviewSwiper {
  position: relative;
  padding: 40px 0 70px;
}
.custom-review-slider .swiper {
  overflow: visible;
}
.custom-review-slider .swiper-slide {
  width: 420px;
  transition: 0.35s ease;
  opacity: 0;
  transform: scale(0.88);
}
.custom-review-slider .swiper-slide.swiper-slide-prev, .custom-review-slider .swiper-slide.swiper-slide-next, .custom-review-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.custom-review-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 5;
}
.custom-review-slider .review-card {
  background: #596554;
  color: #ffffff;
  border-radius: 18px;
  padding: 28px;
  min-height: 300px;
  box-sizing: border-box;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}
.custom-review-slider .review-card__top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.custom-review-slider .review-card__profile {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.custom-review-slider .review-card__profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-review-slider .review-card__info {
  flex: 1;
}
.custom-review-slider .review-card__info h4 {
  font-size: 28px;
  margin: 0;
  font-weight: 600;
}
.custom-review-slider .review-card__info span {
  color: #c8c8c8;
  font-size: 15px;
}
.custom-review-slider .review-card__logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1254901961);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  align-self: flex-start;
}
.custom-review-slider .review-card__rating {
  font-size: 30px;
  color: #f19a35;
  margin-bottom: 10px;
  letter-spacing: 3px;
}
.custom-review-slider .review-card p {
  font-size: 20px;
  line-height: 1.55;
  color: #ededed;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.custom-review-slider .review-prev,
.custom-review-slider .review-next {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  background: #3a473a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transform: translateY(-50%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  color: #ffffff;
}
.custom-review-slider .review-prev:hover,
.custom-review-slider .review-next:hover {
  background: #707c69;
  color: #ffffff;
}
.custom-review-slider .review-prev {
  left: 60px;
}
.custom-review-slider .review-next {
  right: 60px;
}
.custom-review-slider .swiper-pagination {
  bottom: 0 !important;
}
.custom-review-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #8b8b8b;
  opacity: 1;
  transition: 0.3s;
}
.custom-review-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background: #ffbf59;
}
@media (max-width: 991px) {
  .custom-review-slider .swiper-slide {
    width: 320px;
  }
  .custom-review-slider .review-card {
    padding: 22px;
    min-height: 300px;
  }
  .custom-review-slider .review-card__info h4 {
    font-size: 22px;
  }
  .custom-review-slider .review-card p {
    font-size: 18px;
    margin-bottom: 0;
  }
  .custom-review-slider .review-prev,
  .custom-review-slider .review-next {
    display: none;
  }
}
@media (max-width: 575px) {
  .custom-review-slider .swiper-slide {
    width: 280px;
  }
}

.inspiration-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 490px;
  border-radius: 15px;
  position: relative;
}
.inspiration-bg .card-data {
  position: absolute;
  bottom: 40px;
  left: 40px;
  max-width: 500px;
}
.inspiration-bg .card-data h3 {
  color: #3a473a;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 38px;
  color: #ffffff;
}
.inspiration-bg .card-data p {
  color: #ffffff;
}

.single-image {
  border-radius: 15px;
}

.more-details-single-title .card-data {
  margin-top: 40px;
  padding-left: 40px;
  max-width: 540px;
}
.more-details-single-title .card-data h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 38px;
  color: #3a473a;
}
.more-details-single-title .card-data p {
  color: #3a473a;
}

.card-img-box img {
  object-fit: cover;
  border-radius: 15px;
}
.card-img-box .card-data {
  position: absolute;
  bottom: 40px;
  left: 40px;
  max-width: 500px;
}
.card-img-box .card-data h3 {
  color: #3a473a;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 38px;
  color: #ffffff;
}
.card-img-box .card-data p {
  color: #ffffff;
}

.final-slider-wrapper {
  padding-bottom: 50px;
}
.final-slider-wrapper .swiper-pagination {
  top: auto;
  bottom: 0;
  background-color: transparent;
  height: 6px;
  width: 100%;
}
.final-slider-wrapper .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #f19a35;
}
.final-slider-wrapper .swiper-pagination::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #df9034;
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  z-index: -1;
}

.jouw-section {
  margin-top: 70px;
}
.jouw-section .cart-list {
  background: #ffffff;
  margin-bottom: 40px;
}
.jouw-section .cart-item {
  padding: 30px 0;
  border-bottom: 1px solid #3a473a;
}
.jouw-section .product-image img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
}
.jouw-section .product-content h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #707c69;
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.jouw-section .product-content p {
  margin-bottom: 20px;
  color: #707c69;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.jouw-section .product-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.jouw-section .quantity-box {
  display: flex;
  align-items: center;
  border: 1px solid #cfcfcf;
  overflow: hidden;
}
.jouw-section .quantity-box input {
  width: 30px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  color: #707c69;
}
.jouw-section .quantity-box .qty-btn {
  width: 30px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
  color: #707c69;
}
.jouw-section .quantity-box .qty-btn:hover {
  background: #f5f5f5;
}
.jouw-section .action-btn {
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: #707c69;
  transition: 0.3s;
}
.jouw-section .action-btn:hover {
  transform: scale(1.1);
}
.jouw-section .action-btn.remove {
  color: #707c69;
  border: 2px solid #707c69;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.jouw-section .product-price {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #707c69;
}
@media (max-width: 991px) {
  .jouw-section .product-price {
    margin-top: 15px;
  }
  .jouw-section .product-content h3 {
    font-size: 20px;
  }
  .jouw-section .product-content p {
    font-size: 16px;
  }
  .jouw-section .product-price {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .jouw-section .cart-item {
    padding: 20px 0;
  }
  .jouw-section .quantity-box-sl {
    width: 140px;
  }
  .jouw-section .quantity-box-sl input {
    width: 100%;
  }
  .jouw-section .product-price {
    font-size: 24px;
  }
}

.forgot-products .section-title {
  margin-bottom: 3rem;
}
.forgot-products .product-card {
  display: flex;
  flex-direction: column;
}
.forgot-products .product-image {
  text-align: center;
  margin-bottom: 25px;
}
.forgot-products .product-image img {
  max-width: 80px;
  width: 100%;
  transition: 0.3s ease;
}
.forgot-products .product-content {
  background: #e6e3d5;
  padding: 25px;
}
.forgot-products .product-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #3a473a;
  margin-bottom: 0;
}
.forgot-products .product-content p {
  color: #3a473a;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 25px;
}
.forgot-products .price-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.forgot-products .price-rating .price {
  font-size: 18px;
  font-weight: 700;
  color: #3a473a;
}
.forgot-products .price-rating .rating {
  color: #df9034;
  font-size: 18px;
}
.forgot-products .price-rating .rating span {
  color: #3a473a;
  font-size: 18px;
  font-weight: 300;
}
.forgot-products .product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.forgot-products .quantity-box {
  display: flex;
  align-items: center;
  border: 1px solid #bdbdbd;
  background: #fff;
}
.forgot-products .quantity-box button {
  width: 28px;
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 20px;
}
.forgot-products .quantity-box input {
  width: 20px;
  border: 0;
  text-align: center;
  background: transparent;
}
.forgot-products .actions {
  display: flex;
  gap: 20px;
}
.forgot-products .actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}
.forgot-products .actions a:hover {
  transform: translateY(-3px);
}
.forgot-products .swiper {
  overflow: visible;
}
.forgot-products .swiper-pagination {
  position: relative;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .forgot-products .product-content h3 {
    font-size: 26px;
  }
  .forgot-products .product-content p {
    font-size: 18px;
  }
  .forgot-products .price-rating .price {
    font-size: 28px;
  }
  .forgot-products .price-rating .rating {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .forgot-products .forgot-products .section-title {
    font-size: 34px;
  }
  .forgot-products .product-content {
    padding: 20px;
  }
  .forgot-products .product-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cart-summary-section .order-summary {
  background: #e6e3d5;
  padding: 2rem;
  margin-bottom: 3rem;
}
.cart-summary-section .order-item {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(112, 124, 105, 0.2);
}
.cart-summary-section .order-item:last-of-type {
  border-bottom: 0;
}
.cart-summary-section .order-item h4 {
  color: #707c69;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 0;
}
.cart-summary-section .order-item p {
  font-size: 14px;
  color: #707c69;
  margin-bottom: 0;
  font-weight: 300;
}
.cart-summary-section .order-item .options {
  margin-top: 2rem;
}
.cart-summary-section .order-item .options strong {
  font-weight: 300;
  color: #707c69;
}
.cart-summary-section .order-item .price {
  font-size: 1rem;
  font-weight: 400;
  color: #707c69;
}
.cart-summary-section .totals {
  margin-top: 0;
}
.cart-summary-section .totals .d-flex {
  font-size: 1rem;
  line-height: 24px;
  margin-bottom: 0;
  color: #707c69;
  font-weight: 400;
}
.cart-summary-section .totals .total-price {
  font-size: 1rem;
  font-weight: 400;
}
.cart-summary-section .delivery-title {
  color: #707c69;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  padding: 0 2rem;
}
.cart-summary-section .delivery-options {
  border: 1px solid #707c69;
  overflow: hidden;
}
.cart-summary-section .delivery-option {
  display: grid;
  grid-template-columns: 1fr 0.4fr 30px;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid #707c69;
  transition: 0.3s ease;
}
.cart-summary-section .delivery-option:last-child {
  border-bottom: 0;
}
.cart-summary-section .delivery-option:has(input:checked) {
  background: #e6e3d5;
  box-shadow: inset 0 0 0 2px rgba(58, 71, 58, 0.8);
}
.cart-summary-section .delivery-option input[type=radio] {
  width: 22px;
  height: 22px;
  accent-color: #707c69;
  cursor: pointer;
  display: none;
}
.cart-summary-section .delivery-option input[type=radio] + .custom-radio {
  background-color: transparent;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 1px solid #3a473a;
  position: relative;
}
.cart-summary-section .delivery-option input[type=radio] + .custom-radio img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.3s;
}
.cart-summary-section .delivery-option input:checked + .custom-radio img {
  opacity: 1;
  transform: scale(1);
}
.cart-summary-section .delivery-option span {
  color: #707c69;
  font-size: 1rem;
  width: 220px;
}
.cart-summary-section .delivery-option strong {
  color: #707c69;
  font-size: 1rem;
  font-weight: 400;
}
.cart-summary-section .features-row {
  margin: 1.5rem 0 0rem 0;
}
.cart-summary-section .feature-item {
  color: #707c69;
}
.cart-summary-section .feature-item i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.cart-summary-section .feature-item p {
  font-size: 1rem;
  line-height: 17px;
  font-weight: 400;
  margin: 10px 0 0;
}
.cart-summary-section .checkout-btn {
  background: #3a473a;
  color: white;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.cart-summary-section .checkout-btn:hover {
  background: #707c69;
  color: white;
}
@media (max-width: 767px) {
  .cart-summary-section .order-summary {
    padding: 1.25rem;
  }
  .cart-summary-section .order-item .price {
    font-size: 1.5rem;
  }
  .cart-summary-section .delivery-option {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }
  .cart-summary-section .delivery-option strong {
    grid-column: 2;
  }
  .cart-summary-section .checkout-btn {
    font-size: 1rem;
  }
}

.category-header .breadcrumb {
  margin: 0;
}
.category-header .breadcrumb .breadcrumb-item {
  font-size: 18px;
  font-weight: 300;
}
.category-header .breadcrumb .breadcrumb-item a {
  color: #707c69;
  text-decoration: none;
  transition: color 0.3s ease;
}
.category-header .breadcrumb .breadcrumb-item a:hover {
  color: #707c69;
}
.category-header .breadcrumb .breadcrumb-item.active {
  color: #707c69;
}
.category-header .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #707c69;
  content: ">";
}
.category-header .category-title {
  font-size: 48px;
  font-weight: 400;
  line-height: normal;
  color: #3a473a;
  font-family: "Cormorant Garamond", serif;
}
.category-header .category-title span {
  font-weight: 700;
}
.category-header .category-description {
  font-size: 18px;
  line-height: normal;
  color: #3a473a;
  font-weight: 300;
}
.category-header .build-box {
  background: #d8d5c8;
  padding: 14px 19px;
  margin-bottom: 1rem;
}
.category-header .build-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #3a473a;
  margin-bottom: 0.75rem;
}
.category-header .build-box p {
  color: #3a473a;
  margin-bottom: 15px;
  max-width: 290px;
}
.category-header .build-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 40px;
  border-radius: 10px;
  background: #3a473a;
  color: #e6e3d5;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.category-header .filter-box {
  border: 0 solid #707c69;
  background-color: #88957d;
  padding: 20px 20px;
  border-radius: 16px;
}
.category-header .filter-box h2 {
  font-size: 38px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
  font-family: "Cormorant Garamond", serif;
}
.category-header .filter-group {
  margin-bottom: 2rem;
}
.category-header .filter-group h4 {
  font-size: 18px;
  font-weight: 500;
  color: #303730;
  margin-bottom: 1.25rem;
}
.category-header .custom-radio {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
  cursor: pointer;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
}
.category-header .custom-radio input {
  display: none;
}
.category-header .custom-radio span {
  width: 17px;
  height: 17px;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  border-radius: 0;
  position: relative;
  border-radius: 0;
  flex-shrink: 0;
}
.category-header .custom-radio input:checked + span {
  border-color: #3a473a;
}
.category-header .custom-radio input:checked + span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #3a473a url(../images/check-me.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.category-header .reset-btn {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: #2a363b;
  color: #ffffff;
  font-weight: 700;
  max-width: 215px;
  margin: 0 auto;
  display: table;
  font-size: 18px;
}
.category-header .mobile-filter-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1050;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: #3a473a;
  color: white;
  font-weight: 600;
}
.category-header .filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 1040;
}
.category-header .center-content {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .category-header .filter-sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    width: 320px;
    max-width: 90%;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    z-index: 1050;
    transition: 0.5s ease;
  }
}
@media (min-width: 1200px) {
  .category-header .mobile-filter-btn,
  .category-header .close-filter,
  .category-header .filter-overlay {
    display: none;
  }
}

.filter-open .filter-sidebar {
  left: 0;
}
.filter-open .filter-overlay {
  opacity: 1;
  visibility: visible;
}

.products-section .active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.products-section .active-filters .filter-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.3rem 1.5rem;
  border: 0;
  border-radius: 10px;
  background: #d8d5c8;
  color: #40473c;
  font-size: 1rem;
  font-weight: 400;
  transition: 0.3s ease;
}
.products-section .active-filters .filter-tag span {
  font-size: 24px;
  line-height: 1;
}
.products-section .active-filters .filter-tag:hover {
  opacity: 0.85;
}
.products-section .products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.products-section .products-toolbar .results-count {
  font-size: 1rem;
  color: #40473c;
}
.products-section .products-toolbar .results-count strong {
  font-weight: 700;
}
.products-section .products-toolbar .toolbar-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.products-section .products-toolbar .view-switcher {
  display: flex;
  gap: 0.75rem;
}
.products-section .products-toolbar .view-switcher .view-btn {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 2rem;
  color: #bcbcbc;
  transition: 0.3s ease;
}
.products-section .products-toolbar .view-switcher .view-btn.active {
  color: #d8942b;
}
.products-section .products-toolbar .view-switcher .view-btn:hover {
  color: #d8942b;
}
.products-section .products-toolbar .sort-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.products-section .products-toolbar .sort-wrapper label {
  margin: 0;
  white-space: nowrap;
  color: #40473c;
}
.products-section .products-toolbar .sort-wrapper .form-select {
  min-width: 280px;
  height: 42px;
  border-radius: 0;
}
.products-section .product-card {
  height: 100%;
  position: relative;
}
.products-section .product-card .product-image {
  background: #fff;
  padding: 0;
  text-align: center;
}
.products-section .product-card .product-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.products-section .product-card .product-content {
  padding: 1.75rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.products-section .product-card .product-content h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.products-section .product-card .product-content .product-size {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.products-section .product-card .product-content .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.products-section .product-card .product-content .product-meta .price {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
}
.products-section .product-card .product-content .product-meta .rating {
  color: #e39a2e;
  font-size: 1.125rem;
}
.products-section .product-card .product-content .product-meta .rating span {
  color: #555;
}
.products-section .product-card .product-content .product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.products-section .product-card .product-content .product-features li {
  margin-bottom: 0.35rem;
  color: #40473c;
}
.products-section .product-card .product-content .product-features li:before {
  content: "+";
  font-weight: 700;
  margin-right: 0.5rem;
}
.products-section .product-card .product-content .product-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.products-section .product-card .product-content .product-actions a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}
.products-section .product-card .product-content .product-actions a:hover {
  transform: translateY(-5px);
}
.products-section .products-wrapper.list-view .row {
  row-gap: 1.5rem;
}
.products-section .products-wrapper.list-view [class*=col-] {
  width: 100%;
}
.products-section .products-wrapper.list-view .product-card {
  display: flex;
  align-items: stretch;
}
.products-section .products-wrapper.list-view .product-card .product-image {
  width: 320px;
  flex-shrink: 0;
}
.products-section .products-wrapper.list-view .product-card .product-content {
  flex: 1;
}
.products-section .products-wrapper .btn-dark {
  max-width: 215px;
  margin: 0 auto;
  width: 100%;
  padding: 6px 20px;
  font-weight: 400;
  color: #e6e3d5;
}
.products-section .products-wrapper .inspiration-section {
  margin-top: 5rem;
}
.products-section .products-wrapper .inspiration-section .section-title {
  margin-bottom: 2.5rem;
}
.products-section .products-wrapper .inspiration-section .inspiration-img {
  width: 100%;
  display: block;
  height: 100%;
}
@media (max-width: 991px) {
  .products-section .products-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .products-section .products-toolbar .toolbar-right {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .products-section .active-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .products-section .active-filters::-webkit-scrollbar {
    display: none;
  }
  .products-section .active-filters .filter-tag {
    white-space: nowrap;
  }
  .products-section .products-toolbar {
    gap: 1rem;
  }
  .products-section .products-toolbar .toolbar-right {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 1rem;
  }
  .products-section .products-toolbar .sort-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .products-section .products-toolbar .sort-wrapper .form-select {
    min-width: 100%;
  }
  .products-section .products-wrapper.list-view .product-card {
    flex-direction: column;
  }
  .products-section .products-wrapper.list-view .product-card .product-image {
    width: 100%;
  }
}

.banner-top-detail img {
  height: 700px;
}
.banner-top-detail h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 66px;
  font-weight: 400;
  color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}

.detail-content {
  padding: 30px 0 100px;
}
.detail-content .prod-detail-section {
  background: #ffffff;
  margin-top: 50px;
}
.detail-content .prod-breadcrumb .breadcrumb {
  gap: 5px;
}
.detail-content .prod-breadcrumb .breadcrumb .breadcrumb-item {
  font-size: 18px;
  color: #707c69;
  font-weight: 300;
}
.detail-content .prod-breadcrumb .breadcrumb .breadcrumb-item a {
  color: #707c69;
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
}
.detail-content .prod-breadcrumb .breadcrumb .breadcrumb-item a:hover {
  color: #707c69;
}
.detail-content .prod-breadcrumb .breadcrumb .breadcrumb-item.active {
  color: #707c69;
}
.detail-content .prod-breadcrumb .breadcrumb .breadcrumb-item.active * {
  color: #ffffff !important;
}
.detail-content .prod-gallery {
  max-width: 900px;
  margin: 0 auto;
}
.detail-content .prod-main-slider {
  border-radius: 12px;
  overflow: hidden;
}
.detail-content .prod-main-slider .swiper-slide img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.detail-content .prod-thumb-slider .swiper-slide {
  border: 1px solid #707c69;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
}
.detail-content .prod-thumb-slider .swiper-slide img {
  width: 100%;
  display: block;
}
.detail-content .prod-thumb-slider .swiper-slide-thumb-active {
  border-color: #3a473a;
}
.detail-content .prod-info-wrapper {
  max-width: 1000px;
  margin-inline: auto;
}
.detail-content .prod-info-title {
  font-size: 24px;
  font-weight: 400;
  color: #3a473a;
  margin-bottom: 30px;
}
.detail-content .prod-accordion .prod-accordion-item {
  border: 0;
  border-bottom: 1px solid #707c69;
  border-radius: 0;
  background: transparent;
}
.detail-content .prod-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  padding: 0.8rem 0;
  font-size: 20px;
  font-weight: 300;
  color: #707c69;
}
.detail-content .prod-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: #707c69;
}
.detail-content .prod-accordion .accordion-button::after {
  width: 16px;
  height: 16px;
  background-size: contain;
}
.detail-content .prod-accordion .accordion-body {
  padding: 0 0 1rem;
  color: #707c69;
  font-size: 15px;
  line-height: 1.8;
}
.detail-content {
  /* Responsive */
}
@media (max-width: 767px) {
  .detail-content .prod-info-title {
    font-size: 1.75rem;
  }
  .detail-content .prod-accordion .accordion-button {
    font-size: 1rem;
    padding: 1rem 0;
  }
}
.detail-content .jk-product-slider .jk-section-heading {
  padding-inline: 40px;
}
.detail-content .jk-product-slider .jk-section-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #3f4a43;
  margin: 0;
}
.detail-content .jk-product-slider .jkProductSwiper {
  overflow: hidden;
  padding-inline: 40px;
}
.detail-content .jk-product-slider .swiper-slide {
  height: auto;
}
.detail-content .jk-product-slider .jk-product-card {
  background: #ffffff;
  border: 1px solid #707c69;
  transition: all 0.3s ease;
  height: 100%;
}
.detail-content .jk-product-slider .jk-product-card:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}
.detail-content .jk-product-slider .jk-product-image {
  height: 180px;
  border-bottom: 1px solid #707c69;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.detail-content .jk-product-slider .jk-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.detail-content .jk-product-slider .jk-product-content {
  padding: 15px;
}
.detail-content .jk-product-slider .jk-product-title {
  font-size: 1rem;
  font-weight: 700;
  color: #3a473a;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.detail-content .jk-product-slider .jk-product-size {
  font-size: 0.875rem;
  color: #3a473a;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
}
.detail-content .jk-product-slider .jk-product-price {
  font-size: 20px;
  font-weight: 700;
  color: #3a473a;
  line-height: 1;
  margin-bottom: 10px;
}
.detail-content .jk-product-slider .jk-product-rating {
  color: #d98a27;
  font-size: 18px;
  letter-spacing: 2px;
}
.detail-content .bk-sevilla-section .bk-sevilla-title {
  font-size: 38px;
  font-weight: 400;
  line-height: normal;
  color: #3a473a;
  font-family: "Cormorant Garamond", serif;
}
.detail-content .bk-sevilla-section .bk-sevilla-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: #707c69;
}
.detail-content .bk-sevilla-section .bk-sevilla-price {
  font-size: 28px;
  font-weight: 900;
  color: #3a473a;
  line-height: 1;
}
.detail-content .bk-sevilla-section .bk-sevilla-description {
  max-width: 720px;
  font-size: 1rem;
  line-height: 20px;
  color: #707c69;
  margin-bottom: 1rem;
}
.detail-content .bk-sevilla-section .bk-sevilla-features li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 1rem;
  font-weight: 300;
  color: #707c69;
  line-height: 1.5;
}
.detail-content .bk-sevilla-section .bk-sevilla-features .bk-check {
  color: #3a473a;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.detail-content {
  /* Tablet */
}
@media (max-width: 991.98px) {
  .detail-content .bk-sevilla-section .bk-sevilla-title {
    font-size: 1.9rem;
  }
  .detail-content .bk-sevilla-section .bk-sevilla-subtitle {
    font-size: 1.1rem;
  }
  .detail-content .bk-sevilla-section .bk-sevilla-price {
    font-size: 2.5rem;
  }
  .detail-content .bk-sevilla-section .bk-sevilla-description {
    font-size: 1rem;
  }
}
.detail-content {
  /* Mobile */
}
@media (max-width: 575.98px) {
  .detail-content .bk-sevilla-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .detail-content .bk-sevilla-section .bk-sevilla-title {
    font-size: 1.7rem;
  }
  .detail-content .bk-sevilla-section .bk-sevilla-subtitle {
    font-size: 1rem;
  }
  .detail-content .bk-sevilla-section .bk-sevilla-price {
    font-size: 2rem;
  }
  .detail-content .bk-sevilla-section .bk-sevilla-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .detail-content .bk-sevilla-section .bk-sevilla-features li {
    font-size: 0.95rem;
  }
}
.detail-content .bk-product-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  background-color: transparent;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.detail-content .bk-product-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.detail-content .bk-product-card {
  border: 0 solid #c8c8c8;
  padding: 1.25rem 1.75rem;
  background-color: #707c69;
  border-radius: 10px;
}
.detail-content .bk-product-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.detail-content .bk-wishlist {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.75rem;
  font-weight: 400;
}
.detail-content .bk-wishlist svg {
  color: #d98a1f;
  flex-shrink: 0;
}
.detail-content .bk-wishlist:hover {
  color: #3a473a;
}
.detail-content .bk-product-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}
.detail-content .bk-product-price {
  font-size: 2rem;
  font-weight: 700;
  color: #3a473a;
  line-height: 1;
}
.detail-content .bk-cart-btn {
  width: 48px;
  height: 48px;
  position: relative;
  border: 0;
  border-radius: 10px;
  background: #3a473a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.detail-content .bk-cart-btn:hover {
  transform: translateY(-2px);
}
.detail-content .bk-cart-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  right: 10px;
}
@media (max-width: 991.98px) {
  .detail-content .bk-product-title {
    font-size: 1.75rem;
  }
  .detail-content .bk-wishlist {
    font-size: 1.25rem;
  }
  .detail-content .bk-product-price {
    font-size: 1.75rem;
  }
}
@media (max-width: 767.98px) {
  .detail-content .bk-product-card {
    padding: 0;
    border: 0;
  }
  .detail-content .bk-product-title {
    font-size: 1.2rem;
    text-align: center;
  }
  .detail-content .bk-wishlist {
    font-size: 1rem;
  }
  .detail-content .bk-wishlist svg {
    width: 24px;
    height: 24px;
  }
  .detail-content .bk-product-actions {
    justify-content: flex-end;
    gap: 1rem;
  }
  .detail-content .bk-product-price {
    font-size: 1.2rem;
  }
  .detail-content .bk-cart-btn {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 575.98px) {
  .detail-content .bk-product-card .row {
    text-align: center;
  }
  .detail-content .bk-wishlist {
    justify-content: center;
  }
  .detail-content .bk-product-actions {
    justify-content: center;
  }
}
.detail-content .table-configurator {
  --border-color: #d7d7d2;
  --active-bg: #88957d;
  --primary: #4a5a4d;
  --text: #555;
  color: var(--text);
}
.detail-content .table-configurator-step {
  margin-bottom: 2rem;
}
.detail-content .table-configurator-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 25px;
  font-family: "Cormorant Garamond", serif;
  color: #707c69;
}
.detail-content .table-configurator-title .step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.detail-content .table-configurator-card {
  border: 1px solid var(--border-color);
  border-radius: 7px;
  overflow: hidden;
}
.detail-content .table-configurator-option, .detail-content .table-configurator-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding: 0.7rem;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease;
}
.detail-content .table-configurator-option:last-child, .detail-content .table-configurator-product:last-child {
  border-bottom: 0;
}
.detail-content .table-configurator-option.active, .detail-content .table-configurator-product.active {
  background: var(--active-bg);
  box-shadow: inset 0 0 0 0 rgba(58, 71, 58, 0.8);
}
.detail-content .table-configurator-option.active *, .detail-content .table-configurator-product.active * {
  color: #ffffff !important;
}
.detail-content .table-configurator-option input, .detail-content .table-configurator-product input {
  display: none;
}
.detail-content .table-configurator-option input:checked + .custom-radio, .detail-content .table-configurator-product input:checked + .custom-radio {
  border-color: var(--primary);
}
.detail-content .table-configurator-option input:checked + .custom-radio::after, .detail-content .table-configurator-product input:checked + .custom-radio::after {
  transform: scale(1);
}
.detail-content .table-configurator .option-content {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-right: 1rem;
  gap: 40px;
}
.detail-content .table-configurator .option-content span {
  max-width: 180px;
  width: 100%;
  font-weight: 300;
  color: #707c69;
}
.detail-content .table-configurator .option-content strong {
  font-weight: 400;
  color: #707c69;
}
.detail-content .table-configurator .product-left {
  flex: 0 0 160px;
}
.detail-content .table-configurator .product-left img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 60px;
}
.detail-content .table-configurator .product-left .big-pr-image {
  height: 91px;
}
.detail-content .table-configurator .product-left .product-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.detail-content .table-configurator .product-left .product-badge img {
  height: 20px;
  width: 20px;
}
.detail-content .table-configurator .product-left.icon-thumb {
  flex: 0 0 60px;
}
.detail-content .table-configurator .product-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.detail-content .table-configurator .product-center {
  flex: 1;
}
.detail-content .table-configurator .product-center h5 {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 300;
  max-width: 210px;
  text-align: left;
}
.detail-content .table-configurator .product-center p {
  margin: 0;
  color: #8a8a8a;
}
.detail-content .table-configurator .product-price {
  font-weight: 400;
  white-space: nowrap;
  margin-right: 1rem;
  color: #707c69;
}
.detail-content .table-configurator .custom-radio {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.detail-content .table-configurator .custom-radio::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/check-me-white.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0;
  margin: auto;
  transform: scale(0);
  transition: 0.3s ease;
}
.detail-content .table-configurator .quantity-box {
  display: flex;
  align-items: center;
  border: 1px solid #d4d4d4;
  margin-right: 1rem;
}
.detail-content .table-configurator .quantity-box button {
  width: 20px;
  height: 30px;
  border: 0;
  background: #ffffff;
  font-weight: 300;
  color: #707c69 !important;
}
.detail-content .table-configurator .quantity-box input {
  width: 20px;
  text-align: center;
  display: block;
  border: 0;
  background: #ffffff;
  box-shadow: none;
  height: 30px;
  font-weight: 300;
  color: #707c69 !important;
}
.detail-content .table-configurator-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.detail-content .table-configurator .qty-control {
  display: flex;
  border: 1px solid #d8d8d8;
}
.detail-content .table-configurator .qty-control button {
  width: 48px;
  height: 48px;
  border: 0;
  background: #f8f8f8;
  font-weight: 700;
}
.detail-content .table-configurator .qty-control input {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.detail-content .table-configurator .final-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.detail-content .table-configurator .btn-cart {
  background: var(--primary);
  color: #ffffff;
  min-width: 240px;
  height: 56px;
  border-radius: 8px;
  font-size: 20px;
}
.detail-content .table-configurator .btn-cart:hover {
  background: var(--primary);
  color: #ffffff;
}
.detail-content .table-configurator .quantity-box button {
  width: 40px;
  height: 50px;
  color: #3a473a !important;
  font-size: 25px;
  font-weight: 700;
}
.detail-content .table-configurator .quantity-box input {
  font-weight: 700;
  width: 40px;
  height: 50px;
  color: #3a473a !important;
  font-size: 25px;
}
@media (max-width: 767.98px) {
  .detail-content .table-configurator-product {
    flex-wrap: wrap;
  }
  .detail-content .table-configurator .product-left {
    flex: 0 0 100%;
  }
  .detail-content .table-configurator .product-price {
    margin-left: auto;
  }
  .detail-content .table-configurator-footer {
    align-items: stretch;
    justify-content: center;
  }
  .detail-content .table-configurator .btn-cart {
    width: 100%;
  }
  .detail-content .table-configurator .final-price {
    text-align: center;
  }
}
.detail-content .select-box {
  border: 1px solid var(--border-color);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding: 1rem;
  justify-content: flex-end;
}
.detail-content .select-box p {
  margin: 0;
  font-weight: 300;
  font-size: 1rem;
  margin-right: auto;
  margin-left: 110px;
}
.detail-content .select-box select {
  font-size: 1rem;
  color: #707c69;
  font-weight: 300;
}

.product-slider-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 400;
  color: #707c69;
}

@media (max-width: 575.98px) {
  .product-slider-title {
    font-size: 32px;
  }
}
/* Custom Radio Buttons (Privé / Bedrijf) */
.custom-radio-group {
  display: flex;
  gap: 12px;
}
.custom-radio-group .btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.custom-radio-group .custom-radio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 10px 28px;
  background-color: #ffffff;
  border: 1.5px solid #d5d8dc;
  border-radius: 10px;
  color: #555555;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.custom-radio-group .custom-radio-btn:hover {
  border-color: #bdc3c7;
}
.custom-radio-group .btn-check:checked + .custom-radio-btn {
  background-color: #fff8dc;
  border-color: #ebcc47;
  color: #2c2c2c;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Order Summary Card (Besteloverzicht) */
.order-summary-card {
  background: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.order-summary-card .title-form h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  color: #3a473a;
  margin-bottom: 8px;
}
.order-summary-card .title-form hr {
  margin-top: 4px;
  margin-bottom: 20px;
  opacity: 0.15;
}
.order-summary-card .summary-item .summary-item-thumb {
  width: 70px;
  flex-shrink: 0;
}
.order-summary-card .summary-item .summary-item-thumb img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #fafafa;
  border: 1px solid #e9ecef;
  padding: 4px;
}
.order-summary-card .summary-item .summary-item-thumb .qty-badge {
  font-weight: 700;
  font-size: 14px;
  color: #333;
}
.order-summary-card .summary-item .summary-item-info .product-title {
  font-size: 15px;
  font-weight: 600;
  color: #2b2b2b;
  line-height: 1.3;
}
.order-summary-card .summary-item .summary-item-info .product-sku {
  font-size: 13px;
  color: #777;
  margin-bottom: 2px;
}
.order-summary-card .summary-item .summary-item-info .product-meta {
  font-size: 13px;
  color: #666;
  line-height: 1.3;
}
.order-summary-card .summary-item .summary-item-price {
  min-width: 60px;
}
.order-summary-card .summary-item .summary-item-price .old-price {
  font-size: 13px;
  color: #888;
  text-decoration: line-through;
}
.order-summary-card .summary-item .summary-item-price .current-price {
  font-size: 16px;
  font-weight: 700;
  color: #c02b2b;
}
.order-summary-card hr {
  border-color: #e5e7eb;
  opacity: 0.8;
}
.order-summary-card .discount-code-toggle {
  cursor: pointer;
  user-select: none;
}
.order-summary-card .discount-code-toggle .toggle-label {
  font-weight: 600;
  font-size: 15px;
  color: #2b2b2b;
}
.order-summary-card .discount-code-toggle .toggle-arrow {
  width: 12px;
  transition: transform 0.2s ease;
}
.order-summary-card .discount-code-toggle[aria-expanded=true] .toggle-arrow {
  transform: rotate(180deg);
}
.order-summary-card .summary-totals {
  font-size: 15px;
}
.order-summary-card .summary-totals .total-row .row-label {
  color: #444;
}
.order-summary-card .summary-totals .total-row .row-value {
  color: #222;
}
.order-summary-card .summary-totals .badge-gratis {
  background-color: #c02b2b;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  display: inline-block;
}
.order-summary-card .total-amount-box {
  background-color: #fff8dc;
  border-radius: 10px;
}
.order-summary-card .total-amount-box .total-label {
  font-weight: 700;
  font-size: 17px;
  color: #222;
}
.order-summary-card .total-amount-box .total-price {
  font-weight: 800;
  font-size: 20px;
  color: #222;
}
.order-summary-card .delivery-estimate {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.nw-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 28px;
  color: #3a473a;
}

/* Factuuradres Checkbox Box */
.billing-address-box {
  background-color: #f5f6f8;
  padding: 14px 18px;
  border-radius: 8px;
}
.billing-address-box .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}
.billing-address-box .form-check-input:checked {
  background-color: #111111;
  border-color: #111111;
}

/* Checkout Sections */
.checkout-section .section-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e2f0e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3c;
  flex-shrink: 0;
}
.checkout-section .border-dark-selected {
  border: 2px solid #2b2b2b;
  border-radius: 10px;
  background-color: #ffffff;
}

/* Payment Methods List */
.payment-options-list .payment-option-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0;
}
.payment-options-list .payment-option-card:hover {
  border-color: #bbbbbb;
}
.payment-options-list .payment-option-card .form-check-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.payment-options-list .payment-option-card .form-check-input:checked {
  background-color: #111111;
  border-color: #111111;
}
.payment-options-list .payment-option-card .badge-gratis-text {
  color: #2e7d32;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Payment Logo Wrappers */
.payment-logo-wrap {
  width: 44px;
  height: 30px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.payment-logo-wrap.ideal-wero-logo {
  background-color: #fef08a;
  color: #86198f;
  font-weight: 800;
  font-size: 11px;
}
.payment-logo-wrap.klarna-logo {
  background-color: #fbcfe8;
  color: #000000;
  font-weight: 800;
  font-size: 14px;
}
.payment-logo-wrap.creditcard-logo {
  background-color: #fafafa;
  border: 1px solid #eeeeee;
  position: relative;
}
.payment-logo-wrap.creditcard-logo .circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}
.payment-logo-wrap.creditcard-logo .circle.red {
  background-color: #eb001b;
}
.payment-logo-wrap.creditcard-logo .circle.orange {
  background-color: #ff5f00;
  margin-left: -5px;
  opacity: 0.9;
}
.payment-logo-wrap.paypal-logo {
  background-color: #003087;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  font-style: italic;
}
.payment-logo-wrap.sepa-logo {
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-size: 10px;
  font-weight: 800;
}
.payment-logo-wrap.gpay-logo {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
}

/* Nu Kopen Button */
.btn-buy-now {
  background-color: #ffd600;
  color: #111111;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.btn-buy-now:hover {
  background-color: #ecc200;
  color: #000000;
}
.btn-buy-now:active {
  transform: scale(0.99);
}

/* Configurator Step Form Styles */
.step-forms {
  background-color: #fbf9f5;
  padding: 40px 0 80px;
}
.step-forms .configurator-title {
  font-family: "Lexend Deca", sans-serif;
  font-weight: 800;
  color: #3a473a;
  font-size: 32px;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .step-forms .configurator-title {
    font-size: 24px;
    text-align: center;
  }
}
.step-forms {
  /* Left Side: 3D Preview Box */
}
.step-forms .configurator-preview-card {
  background-color: #f5f4f0;
  border-radius: 12px;
  padding: 30px 20px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .step-forms .configurator-preview-card {
    min-height: 320px;
    padding: 20px 15px;
  }
}
.step-forms .configurator-preview-card .configurator-dummy-img {
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.06));
}
.step-forms .configurator-preview-card .overlay-360 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.step-forms .configurator-preview-card .overlay-360 .badge-360 {
  background: rgba(40, 40, 40, 0.75);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.step-forms .configurator-preview-card .overlay-360 .badge-360 svg, .step-forms .configurator-preview-card .overlay-360 .badge-360 i {
  font-size: 16px;
}
.step-forms .configurator-preview-card .overlay-360 .badge-360:hover {
  background: rgba(20, 20, 20, 0.88);
  transform: scale(1.05);
}
.step-forms {
  /* Right Side: Step Card Container */
}
.step-forms .configurator-step-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  border: 1px solid #eaeaea;
}
@media (max-width: 576px) {
  .step-forms .configurator-step-card {
    padding: 20px 14px;
  }
}
.step-forms {
  /* Stepper Header Progress List */
}
.step-forms .step-progress-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 4px;
}
.step-forms .step-progress-wrapper::-webkit-scrollbar {
  display: none;
}
.step-forms .step-progress-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.step-forms .step-progress-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  min-width: 320px;
}
.step-forms .step-progress-list .step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}
.step-forms .step-progress-list .step-item .step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #9ea7ad;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease;
}
.step-forms .step-progress-list .step-item .step-circle .check-icon {
  display: none;
  font-size: 14px;
}
.step-forms .step-progress-list .step-item .step-label {
  font-size: 14px;
  color: #8e989f;
  font-weight: 500;
  transition: color 0.25s ease, font-weight 0.25s ease;
}
.step-forms .step-progress-list .step-item {
  /* Active Step */
}
.step-forms .step-progress-list .step-item.active .step-circle {
  background-color: #000000;
  color: #ffffff;
}
.step-forms .step-progress-list .step-item.active .step-label {
  color: #1a1a1a;
  font-weight: 700;
}
.step-forms .step-progress-list .step-item {
  /* Completed Step */
}
.step-forms .step-progress-list .step-item.completed .step-circle {
  background-color: #1d70b8;
  color: #ffffff;
}
.step-forms .step-progress-list .step-item.completed .step-circle .step-num {
  display: none;
}
.step-forms .step-progress-list .step-item.completed .step-circle .check-icon {
  display: inline-block;
}
.step-forms .step-progress-list .step-item.completed .step-label {
  color: #1a1a1a;
  font-weight: 600;
}
.step-forms .step-progress-list .step-line {
  flex-grow: 1;
  height: 1px;
  background-color: #e0e0e0;
  margin: 0 8px;
  min-width: 12px;
}
.step-forms .step-divider {
  border: 0;
  border-top: 1px solid #ebebeb;
  margin: 20px 0 24px;
}
.step-forms {
  /* Form Fields */
}
.step-forms .step-tab-content {
  display: none;
}
.step-forms .step-tab-content.active {
  display: block;
  animation: fadeInStep 0.3s ease-in-out;
}
@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-forms .custom-floating-field {
  margin-bottom: 20px;
}
.step-forms .custom-floating-field .form-label-custom {
  display: block;
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  margin-bottom: 6px;
}
.step-forms .custom-floating-field .form-select-custom {
  width: 100%;
  height: 48px;
  padding: 10px 36px 10px 16px;
  border-radius: 8px;
  border: 1px solid #d4d4d4;
  background-color: #ffffff;
  font-size: 15px;
  color: #222222;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  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 fill='%23333333' d='M1.41 0L6 4.58L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.step-forms .custom-floating-field .form-select-custom:focus {
  outline: none;
  border-color: #1d70b8;
  box-shadow: 0 0 0 3px rgba(29, 112, 184, 0.12);
}
.step-forms .custom-floating-field .select-with-swatch {
  position: relative;
  display: flex;
  align-items: center;
}
.step-forms .custom-floating-field .select-with-swatch .wood-swatch-thumb {
  position: absolute;
  left: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.step-forms .custom-floating-field .select-with-swatch .form-select-custom.ps-swatch {
  padding-left: 48px;
}
.step-forms {
  /* Sub Tabs inside Step 3 */
}
.step-forms .module-subtabs-header {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 24px;
  gap: 0;
}
.step-forms .module-subtabs-header .module-tab-btn {
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #949494;
  letter-spacing: 0.8px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  text-transform: uppercase;
}
.step-forms .module-subtabs-header .module-tab-btn.active {
  color: #1d70b8;
}
.step-forms .module-subtabs-header .module-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1d70b8;
}
.step-forms .module-subtabs-header .module-tab-btn:hover:not(.active) {
  color: #555555;
}
.step-forms .module-tab-content {
  display: none;
}
.step-forms .module-tab-content.active {
  display: block;
  animation: fadeInStep 0.25s ease-in-out;
}
.step-forms {
  /* Step Navigation Links */
}
.step-forms .step-navigation-wrapper {
  padding-top: 10px;
}
.step-forms .step-navigation-wrapper .btn-step-nav {
  background: none;
  border: none;
  color: #3a473a;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 0;
  transition: opacity 0.2s ease;
}
.step-forms .step-navigation-wrapper .btn-step-nav:hover {
  opacity: 0.75;
}
.step-forms .step-navigation-wrapper .btn-step-nav.disabled {
  visibility: hidden;
  pointer-events: none;
}
.step-forms .step-navigation-wrapper .btn-step-nav svg, .step-forms .step-navigation-wrapper .btn-step-nav i {
  font-size: 14px;
}
.step-forms {
  /* Toggle Switch */
}
.step-forms .dimensions-toggle-wrapper .toggle-label {
  font-size: 14px;
  color: #444444;
  font-weight: 500;
}
.step-forms .dimensions-toggle-wrapper .switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}
.step-forms .dimensions-toggle-wrapper .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.step-forms .dimensions-toggle-wrapper .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  transition: 0.3s;
  border-radius: 24px;
}
.step-forms .dimensions-toggle-wrapper .switch .slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.step-forms .dimensions-toggle-wrapper .switch input:checked + .slider {
  background-color: #1d70b8;
}
.step-forms .dimensions-toggle-wrapper .switch input:checked + .slider::before {
  transform: translateX(24px);
}
.step-forms {
  /* Outer Action Buttons */
}
.step-forms .configurator-actions .btn-outline-configurator {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #3a473a;
  border: 2px solid #3a473a;
  border-radius: 0px;
  background-color: transparent;
  transition: all 0.2s ease;
  text-transform: uppercase;
  text-align: center;
}
.step-forms .configurator-actions .btn-outline-configurator:hover {
  background-color: #3a473a;
  color: #ffffff;
}
