:root {
  --primary-color: #573800;
  --light-btn: #B29A6E;
  --light-bg: #F8EFE1;
}

/* html , body
{
  overflow-x: hidden;
} */

body
{
  background-color: #FDFBF8;
}

/* body.cart-open , html.cart-open {
  overflow: hidden;
  height: 100%;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Poppins", sans-serif; */
}

::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent !important; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--light-btn); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

::selection
{
  background-color: var(--light-btn);
  color: white;
}

h1
{
  font-weight: 600;
}

body.nav-open {
  position: fixed;
  width: 100%;
}

.bg-light-brown
{
  background-color: var(--light-btn);
}

.bg-dark-brown
{
  background-color: var(--primary-color);
}

.bg-light-bg 
{
  background-color: var(--light-bg);
}

.text-primary-dark
{
  color: var(--primary-color) !important;
}

.text-primary-light , a.text-primary-dark:hover
{
  color: var(--light-btn) !important;
}

/* .font-playfair , .font-playfair > *
{
  font-family: "Playfair Display", serif !important;
}

.font-opensans
{
  font-family: "Open Sans", sans-serif !important;
}

.font-roboto
{
  font-family: "Roboto", sans-serif !important;
} */

select option:hover 
{
  background-color: var(--primary-color);
  color: white;
}

/* OVERLAY */
.welcome-overlay {
  position: fixed;
  inset: 0;
  background: #f8efe1b3;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* SHOW STATE */
.welcome-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* POPUP BOX */
.welcome-popup {
  background: #fffaf2;
  padding: 40px 36px;
  border-radius: 18px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

  transform: scale(0.9);
  transition: transform 0.4s ease;
}

/* OPEN */
.welcome-overlay.show .welcome-popup {
  transform: scale(1);
}

/* CLOSE (scale down smoothly) */
.welcome-overlay.closing .welcome-popup {
  transform: scale(0.9);
}


/* CLOSE BUTTON */
.welcome-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

/* TEXT */
.welcome-title, #filterSidebar .title {
  /* font-family: "Playfair Display", serif; */
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

.welcome-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: var(--primary-color);
}

/* BUTTON */
.welcome-btn {
  background: #b8a173;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.welcome-btn:hover {
  background: #9f885c;
}

/* SCROLL LOCK */
body.popup-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: #FFFFFF80;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur( 2px );
}

.site-header.scrolled ~ .cart-backdrop
{
  top: 135px;
}

/* .site-header.scrolled .logo img 
{
  width: 70px;
} */

.header-container {
  padding-top: 13px;
  padding-bottom: 13px;
}

/* LOGO */

/* NAV */
.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 4px;
  font-size: 20px;
}

.nav-menu a.active , .nav-menu a:hover
{
  font-weight: 600;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 50px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.3s ease;
}


.select {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #3b2f1d;
  transition: all 0.35s ease;
  transform-origin: center;
}

/* OPEN STATE → CLOSE ICON */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


.cart-btn img {
  position: relative;
}

/* CART COUNT BADGE */
.cart-count {
  position: absolute;
  top: 24%;
  right: -9px;
  min-width: 18px;
  height: 18px;
  background: var(--light-btn);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  pointer-events: none;
  /* BLINK / PULSE */
  animation: cartPulse 1.6s infinite;
}

/* PULSE ANIMATION */
@keyframes cartPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 #573900a6;
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(179, 38, 30, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(179, 38, 30, 0);
  }
}

/* HERO SECTION */
.hero-section , .inner-hero-section {
  background: url('../images/hero-banner.webp') no-repeat;
  background-position: top;
  background-size: cover;
  padding: 80px 0;
  height: 100vh;
  margin-top: -143px;
  border-radius: 0 0 62px 62px;
}

.hero-content h1 {
  /* font-family: "Playfair Display", serif; */
  font-size: 46px;
  color: var(--primary-color);
  line-height: 1.1;
  font-weight: 500;
}

.hero-content p {
  font-size: 24px;
  color: var(--primary-color);
}

.theme-btn {
  display: inline-block;
  background-color: var(--light-btn);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.theme-btn:hover {
  background-color: #a88c55;
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(246, 239, 227, 0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.search-overlay-content input {
  font-size: 30px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #5a3b13;
  outline: none;
  padding: 12px 0;
  color: #5a3b13;
  text-align: center;
  margin: auto;
}

.search-overlay-content input::placeholder {
  color: #9b7a4d;
}

/* CLOSE BUTTON */
.search-overlay-close {
  position: absolute;
  top: 40px;
  right: 50px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--primary-color);
}

.search-overlay-close:hover
{
  color: var(--light-btn);
}

footer 
{
  background-color: #F4EDE3;
  color: var(--primary-color);
}

footer h1 
{
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 900;
}

footer p 
{
  font-size: 20px;
}

footer a 
{
  color: var(--primary-color) !important;
  text-decoration: none;
}

footer a:hover 
{
  color: var(--light-btn) !important;
}

.social-icons span
{
  background-color: var(--primary-color);
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 20px;
  color: white;
  border: 1px solid var(--primary-color);
}

.social-icons span:hover
{
  background-color: var(--light-btn);
  color: var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* COMMON BOX */
.media-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  /* border-radius: 16px; */
}

/* IMAGE */
.media-box img,
.media-box video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 👈 no distortion */
  display: block;
  object-position: center top;
  transition: transform 0.4s ease;
}

.media-box:hover img,
.media-box:hover video {
  transform: scale(1.05);
}

/* OVERLAY TEXT */
.media-overlay .overlay-content {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  color: var(--primary-color);
}

/* TITLE */
.overlay-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* TEXT */
.overlay-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

/* CTA */
.overlay-link {
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
}

.overlay-link span , .theme-btn i {
  transition: transform 0.3s ease;
}

.overlay-link:hover span , .theme-btn:hover i {
  transform: translateX(4px);
}

.section-title 
{
  font-size: 50px;
  color: var(--primary-color);
  font-weight: 600;
}

.products-slide 
{
  color: var(--primary-color);
}

.products-slider a 
{
  text-decoration: none;
}

/* IMAGES */
.slide-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
  object-position: center top;
  transition: transform 0.4s ease;
}

.slide-img:hover img
{
  transform: scale(1.05);
}

/* CONTENT */
.slide-content {
  background: var(--light-bg);
  padding: 40px 36px;
  border-radius: 0px 10px 10px 0;
}

.slide-content h2 {
  /* font-family: "Playfair Display", serif; */
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 600;
}

.slide-content p {
  font-size: 18px;
  line-height: 1.8;
  font-family: "Open Sans", sans-serif !important;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  margin-bottom: 0;
}

/* slider PROGRESS BAR */
.slider-progress , .testimonial-progress{
  position: relative;
  height: 6px;
  background: var(--primary-color);
  border-radius: 2px;
}

.progress-fill , .testimonial-progress-fill{
  position: absolute;
  left: 0;
  top: -3px;
  height: 12px;
  width: 0%;
  background: var(--light-btn);
  transition: width 0.4s ease;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* ARROW BUTTONS */
.slider-btn , .creation-btn , .testimonial-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  color: var(--primary-color);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.slider-btn.prev-btn , .creation-prev , .testimonial-prev
{
  background: #E0EFF6;
}

.slider-btn.next-btn , .creation-next , .testimonial-next
{
  background: #F9D9DA;
}

.slider-btn:hover , .testimonial-btn:hover , .creation-btn:hover {
  background: #8b6b3d;
  color: #fff;
}

.slider-btn:disabled , .testimonial-btn:disabled , .creation-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.creation-nav {
  margin-top: auto;
}

.own-creation-section .left-side
{
  z-index: 2;
  position: relative;
  padding: 50px 40px 50px 100px;
  border-radius: 0 12px 12px 0;
}

.own-creation-section .left-side p
{
  font-size: 24px;
}

.creation-slider,
.creation-slider .swiper-wrapper , .testimonial-slider , .testimonial-slider .swiper-wrapper {
  overflow: visible;
}

.creation-card {
  transition: transform 0.4s ease;
}

/* IMAGE WRAPPER */
.creation-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 14px;
}

.creation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.creation-category {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  transition: all 0.35s ease;
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 18px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.creation-slider .swiper-slide {
  transition: 
    transform 0.45s ease,
    opacity 0.45s ease,
    margin 0.45s ease;
  transform: scale(0.98);
}

/* Active slide */
.creation-slider .swiper-slide-active {
  transform: scale(1.08);
  z-index: 2;
  margin-right: 28px !important;
}

/* Optional: hide previous slide like you want */
.creation-slider .swiper-slide-prev {
  opacity: 0;
}

/* Active = always visible */
.swiper-slide-active .creation-category {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Hover for others */
.creation-card:hover .creation-category {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* PROGRESS BAR WRAPPER */
.creation-progress {
  position: relative;
  width: 150px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* PROGRESS FILL */
.creation-progress-fill {
  position: absolute;
  left: 0;
  top: -3px;
  height: 8px;
  width: 0%;
  background-color: #fff;
  transition: width 0.4s ease;
}

.benifit-section , .testimonial-section , .testimonial-section a
{
  color: var(--primary-color);
}

.benifit-section .icon-box 
{
  width: 80px;
  height: 80px;
  margin: auto;
}

.benifit-section .icon-box img 
{
  width: 40px;
  height: 40px;
}

.quote-mark {
  position: absolute;
  top: -22%;
  left: -18%;
}

.quote-mark img 
{
  width: 75%;
}

.testimonial-image .user-img {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
}

/* TEXT */
.testimonial-text {
  font-size: 20px;
  line-height: 1.6;
}

.testimonial-author span {
  display: block;
  font-size: 14px;
}

/* NAV */
.testimonial-nav {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.testimonial-slider .swiper-slide-next {
  opacity: 0;
}

/* WRAPPER */
.cart-dropdown-wrapper {
  position: relative;
}


/* SHOW ON HOVER (DESKTOP) */
.cart-dropdown-wrapper:hover .cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* TITLE */
.cart-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 16px;
}

.cart-item-wrap {
  overflow-y: auto;
  overflow-x: hidden; 
  padding-right: 6px;  
}

.cart-item-wrap .row {
  margin-left: 0;
  margin-right: 0;
}

.cart-item {
  border-top: 1px solid lightgrey;
  padding-bottom: 1.5rem;
}

.cart-item img 
{
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

/* INFO */
.cart-meta{
  font-size: 14px;
}

/* QTY */
.cart-qty {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 0px 10px;
}

.cart-qty button {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

.cart-qty span
{
  font-size: 14px;
}

/* PRICE */
.cart-remove {
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;
  height: 20px;
}

/* CHECKOUT */
.cart-checkout , .theme-btn-dark {
  display: block;
  text-align: center;
  background: var(--primary-color);
  color: #fff;
  padding: 10px;
  text-decoration: none;
  border: none;
}

.cart-checkout:hover , .theme-btn-dark:hover
{
  background: var(--light-btn);
}

.cart-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* BACKDROP */
.cart-backdrop {
  position: fixed;
  top: 143px; /* adjust if needed */
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3px);
  opacity: 0;
  display: none;
  transition: opacity 0.35s ease;
  z-index: 3;
}

/* SHOW BACKDROP */
.cart-backdrop.active , .cart-dropdown-wrapper:hover .cart-backdrop {
  opacity: 1;
  display: block;
}

.account-sideimg
{
  height: calc(100vh - 143px);
  object-fit: cover;
  object-position: center top;
}

.auth-form > * 
{
  font-family: "Open Sans", sans-serif !important;
}

.auth-form input 
{
  border: 1px solid #606060;
}

/* PASSWORD TOGGLE */
.password-toggle {
  position: absolute;
  top: 45%;
  right: 14px;
  transform: translateY(-50%);
}

/* LINKS */
.forgot-link {
  display: block;
  text-align: left;
  color: var(--light-btn);
  font-size: 16px;
  text-decoration: none;
}

.forgot-link:hover 
{
  color: var(--primary-color);
}

/* BUTTON */
.auth-btn {
  width: 100%;
  background: #5b3a00;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 14px;
  cursor: pointer;
}

/* DIVIDER */
.auth-divider {
  margin: 30px 0;
  font-size: 14px;
}

/* SOCIAL */
.social-login {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* FOOTER */
.auth-footer {
  margin-top: 24px;
  font-size: 14px;
}

.social-icon-wrap img 
{
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.social-icon-wrap img:hover 
{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.inner-hero-section
{
  background: url('../images/jacket-cover.webp') no-repeat;
  background-position: top;
  background-size: cover;
}

/* STICKY SIDEBAR */
.filter-sidebar {
  position: sticky;
  top: 150px; /* header height */
  height: fit-content;
}

/* FILTER ACCORDION */
.filter-item {
  margin-bottom: 14px;
  border: 1px solid var(--primary-color);
}

.filter-header {
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.filter-body {
  max-height: 0;
  overflow: hidden;
  background: var(--light-bg);
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 16px;
}

.filter-body label {
  display: block;
  margin: 10px 0;
  font-size: 14px;
}

.filter-item.active .filter-header 
{
  background: var(--light-bg);
  color: var(--primary-color);
}

/* OPEN STATE */
.filter-item.active .filter-body {
  max-height: max-content;
  padding: 12px 16px;
}

.filter-item.active .icon {
  transform: rotate(45deg);
}

.filter-item .icon {
  transition: transform 0.3s ease;
}

/* APPLIED FILTER TAGS */
.applied-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.filter-tag {
  background: #d8e0d7;
  padding: 2px 20px;
  font-size: 14px;
  display: flex;
  gap: 6px;
  align-items: center;
  border: 1px solid #d8e0d7;
  cursor: pointer;
}

.filter-tag button {
  border: none;
  background: none;
  font-size: 24px;
}

.filter-tag:hover 
{
  background: #eff3ee;
}

.filter-tag button:hover 
{
  color: red;
}

.custom-check {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  display: block;
  font-size: 13px;
}

.custom-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-check .checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 16px;
  width: 16px;
  border: 1.5px solid #b9a27b;
  background: #fff;
}

/* CHECKED */
.custom-check input:checked ~ .checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* CHECK ICON */
.custom-check .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.custom-check input:checked ~ .checkmark::after {
  display: block;
}

.custom-check .checkmark::after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-radio {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  display: block;
  font-size: 13px;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
}

.custom-radio .radiomark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 1.5px solid #b9a27b;
  background: #fff;
}

/* CHECKED */
.custom-radio input:checked ~ .radiomark {
  border-color: var(--primary-color);
}

/* INNER DOT */
.custom-radio .radiomark::after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio input:checked ~ .radiomark::after {
  display: block;
}

.custom-radio input[type="checkbox"]:checked,
.custom-check input[type="radio"]:checked {
  accent-color: #5b3a00;
}

.custom-radio .radiomark::after {
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
}

/* PRODUCT CARD */
.product-card {
  position: relative;
  max-height: 625px;
  margin-bottom: 15px;
}

/* IMAGE CONTAINER */
.product-img {
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* BOTH IMAGES */
.product-img img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

/* HOVER IMAGE */
.img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
}

/* ON HOVER */
.product-card:hover .img-hover {
  opacity: 1;
  transform: scale(1);
}

.product-card:hover .img-main {
  opacity: 0;
  transform: scale(1.05);
}

/* PRODUCT INFO */
.product-info {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 18px;
}

.wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
  width: 40px;
  height: 40px;
}

.wishlist i {
  font-size: 18px;
  color: #5b3a00;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* ACTIVE */
.wishlist.active i {
  font-weight: 900;
  color: #5b3a00;
  transform: scale(1.1);
}

.product-info {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.mobile-filter-btn {
  font-weight: 600;
  cursor: pointer;
}

.mobile-filter-btn i {
  transition: transform 0.3s ease;
}

/* Rotate icon when open */
.mobile-filter-btn.active i {
  transform: rotate(180deg);
}

.filter-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
}

.product-thumbs
{
  max-height: 500px;
  min-width: 100px;
  width: 100px;
  overflow-y: auto;
  padding-right: 5px;
}

.product-thumbs img {
    width: 100%;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.product-thumbs img.active {
    border-color: var(--primary-color);
}

.product-main img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 1 / 1;
}

.zoom-container {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.zoom-container img {
  width: 100%;
  transition: transform 0.2s ease-out;
  transform-origin: center center;
}

/* PRODUCT INFO */
.color-option {
  margin-right: 10px;
  cursor: pointer;
}

.color-option input {
  display: none;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #ccc;
}

.color-option input:checked + .color-dot {
  border-color: var(--primary-color);
}

.color-dot.yellow { background: #e5c74f; }
.color-dot.white { background: #fff; }

.product-desc , .order-body i
{
  font-size: 18px
}

.size-select 
{
  padding: 12px;
}

.accordion-item:first-of-type , .accordion-item:first-of-type>.accordion-header .accordion-button , .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed , .accordion-item:last-of-type
{
  border-radius: 0 !important;
}

.accordion-item , .accordion-button
{
  background-color: var(--light-bg);
}

.accordion-button
{
  color: black;
  font-weight: 600;
  font-size: 18px;
}

.accordion-button:not(.collapsed)
{
  color: var(--primary-color);
  background-color: var(--light-bg);
}

.accordion-button:focus
{
  box-shadow: 0 0 0 0.25rem rgba(87, 56, 0, 0.25)
}

.accordion-button.silk::after
{
  display: none !important;
}

.order-body img 
{
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.order-summary-box {
  max-width: 40%;
  margin-left: auto;
}

.note
{
  font-size: 13px;
}

.checkout-btn {
  width: 40%;
  cursor: pointer;
  margin-left: auto;
}

.checkout-sec
{
  background: linear-gradient(to right, #fff 58%, var(--light-bg) 42%)
}

.step-section {
  opacity: 1;
  transform: translateY(0);
  transition:
  opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
  transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* HIDDEN STATE */
.step-hidden {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
}

/* VISIBLE STATE */
.step-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.payment-success i.text-success , .payment-success i.text-danger
{
  font-size: 50px;
}

.cover-hero-section {
  background: url('../images/cover-hero.webp') no-repeat;
  background-position: top;
  background-size: cover;
  padding: 40px 0;
  height: 35vh;
  margin-top: -125px;
  border-radius: 0 0 0 0;
  display: flex;
}

.contact-box button 
{
  border: 1px solid var(--primary-color);
  padding: 10px;
  color: var(--primary-color);
  background-color: transparent;
  width: 100%;
}

.contact-box button:hover 
{
  background-color: var(--primary-color);
  color: white;
}

.blog-info .blog-desc
{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.single-blog-wrap .blog-img 
{
  height: 500px;
  object-fit: cover;
}

.auth-img 
{
  width: 100px;
  height: 100px;
}

