: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,
.table-responsive::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track,
.table-responsive::-webkit-scrollbar-track {
  background: transparent !important;
}

/* Handle */
::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb {
  background: #555;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover,
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #000;
}

::selection {
  background-color: black;
  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-dark {
  color: black !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;
}

/* ✅ Content above video */
.home_hero_section>* {
  position: relative;
  /* z-index: 2; */
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

.offcanvas {
  position: fixed;
}

/* ✅ Optional dark overlay */
/* .home_hero_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
} */

/* 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,
.wishlist-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  background: black;
  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: #000 !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: var(--site-font) !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: 20px;
  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: var(--site-font) !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 #000;
  background: #fff;
}

/* CHECKED */
.custom-check input:checked~.checkmark {
  background: black;
  border-color: black;
}

/* 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: 100%;
  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: 1;
  width: 40px;
  height: 40px;
}

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

/* ACTIVE - solid red heart once the product is in the wishlist */
.wishlist.active i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #e11d48;
  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: 750px;
  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%;
  /* height: 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%, black 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: 40vh;
  margin-top: -125px;
  border-radius: 0 0 0 0;
  display: flex;
} */

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

.contact-box button:hover {
  background-color: black;
  color: white;
}

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

/* .single-blog-wrap .blog-img {
  height: 350px;
  object-fit: cover;
} */

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

.product-badge {
  text-transform: uppercase;
  color: white;
  padding: 4px 15px 0;
  z-index: 1;
}

.error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
}

.form-control.error {
  border-color: #dc3545;
}

.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .18);
  z-index: 99999;
  padding: 24px;
  transform: translateY(120%);
  transition: .4s ease;
  opacity: 0;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text h4 {
  margin: 0 0 10px;
  font-size: 22px;
}

.cookie-text p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

.reject-btn {
  background: #eee;
  color: #222;
}

.reject-btn:hover {
  background: #ddd;
}

.accept-btn {
  background: #111;
  color: #fff;
}

.accept-btn:hover {
  background: #000;
}

@media(max-width:768px) {

  .cookie-consent {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 20px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .checkout-sec {
    background: none;
  }
}

.orderpay-card,
.orderpay-summary {
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
}

.orderpay-summary {
  background: #fafafa;
  position: sticky;
  top: 100px;
}

.orderpay-heading {
  font-weight: 600;
  font-size: 18px;
  color: #1c1c1c;
  margin-bottom: 18px;
}

.orderpay-item {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.orderpay-item:last-child {
  border-bottom: none;
}

.orderpay-thumb {
  width: 56px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
}

.orderpay-item-name {
  font-weight: 500;
  color: #1c1c1c;
  font-size: 15px;
}

.orderpay-item-qty {
  font-size: 13px;
  color: #8a8a8a;
}

.orderpay-item-price {
  font-weight: 600;
  color: #1c1c1c;
  white-space: nowrap;
}

.orderpay-form .form-check {
  padding-left: 1.8em;
}

.checkout_sub_level p {
  font-size: 13px;
  color: #8a8a8a;
  margin: 4px 0 12px 1.8em;
}

.checkout_small_para small {
  font-size: 12px;
  color: #9a9a9a;
}

.orderpay-row {
  padding: 7px 0;
  color: #4a4a4a;
  font-size: 15px;
}

.orderpay-total {
  font-weight: 700;
  font-size: 18px;
  color: #1c1c1c;
}

.orderpay-secure {
  font-size: 13px;
  color: #7a7a7a;
  text-align: center;
}

@media (max-width: 991px) {
  .orderpay-summary {
    position: static;
  }
}

.discount-badge {
  top: 10px;
  left: 10px;
  background-color: white;
  color: red;
  font-weight: 600;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: normal;
  z-index: 1;
}

/* ============ TOAST NOTIFICATIONS ============ */
.app-toast-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.app-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
  max-width: 340px;
  padding: 13px 16px;
  background: #ffffff;
  color: var(--primary-color, #573800);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color, #573800);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-family: var(--site-font);
  font-size: 14px;
  line-height: 1.35;
  opacity: 0;
  transform: translateX(120%);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: auto;
}

.app-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.app-toast .app-toast-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
}

.app-toast.success {
  border-left-color: #2e7d32;
}

.app-toast.success .app-toast-icon {
  background: #2e7d32;
}

.app-toast.info {
  border-left-color: var(--primary-color, #573800);
}

.app-toast.info .app-toast-icon {
  background: var(--primary-color, #573800);
}

.app-toast.error {
  border-left-color: #c62828;
}

.app-toast.error .app-toast-icon {
  background: #c62828;
}

@media (max-width: 576px) {
  .app-toast-container {
    top: auto;
    bottom: 20px;
    right: 12px;
    left: 12px;
  }

  .app-toast {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}

.login-method-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  width: 100%;
}

.login-method-btn {
  flex: 1;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: .3px;
  cursor: pointer;
  transition: all .2s ease;
}

.login-method-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* OTP email + send button row */
.otp-email-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.otp-email-row .form-control {
  flex: 1;
}

.send-otp-btn {
  white-space: nowrap;
  width: auto;
  padding: 0 16px;
  flex: 0 0 auto;
}

/* Inline validation messages */
.error-message {
  font-size: 12px;
  margin-top: 4px;
  min-height: 1em;
}

/* "or" divider */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #999;
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e5e5e5;
}

.auth-divider span {
  padding: 0 12px;
}

/* Continue with Google button */
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s ease, box-shadow .2s ease;
}

.google-btn:hover {
  background: #f7f7f7;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
  color: #111;
}

/* Continue with Facebook button - sits directly below the Google button */
.facebook-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
  padding: 11px 16px;
  border: 1px solid #1877f2;
  border-radius: 6px;
  background: #1877f2;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s ease, box-shadow .2s ease;
}

.facebook-btn:hover {
  background: #166fe0;
  border-color: #166fe0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
  color: #fff;
}

/* The icon inside the Facebook button keeps its own colour */
.facebook-btn svg {
  flex-shrink: 0;
}

#sortProducts {
  padding: 7px;
  font-size: 14px;
}

select option:checked {
  background-color: #000;
  color: #fff;
}

select option:hover {
  background-color: #000;
  color: #fff;
}

.top-announcement-bar {
  --announcement-bg: #1b1b18;
  /* bar background colour            */
  --announcement-color: #ffffff;
  --announcement-gap: 48px;
  /* space between repeated messages */
  --announcement-font-size: 14px;

  background: var(--announcement-bg);
  color: var(--announcement-color);
  width: 100%;
  overflow: hidden;
  /* clip anything outside the bar   */
}

.top-announcement-bar .announcement-viewport {
  width: 100%;
  overflow: hidden;
}

.top-announcement-bar .announcement-track {
  display: inline-flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  will-change: transform;
  /* animation is applied by JS once the group width is known */
}

/* Defensive: make sure only the track moves, never the group itself. */
.top-announcement-bar .announcement-group {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  animation: none;
}

.top-announcement-bar .announcement-item {
  display: inline-block;
  white-space: nowrap;
  padding-block: 8px;
  padding-inline: calc(var(--announcement-gap) / 2);
  font-size: var(--announcement-font-size);
  line-height: 1.4;
}

.top-announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

@keyframes announcement-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--announcement-shift, -100%));
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-announcement-bar .announcement-track {
    animation: none !important;
    transform: none !important;
  }
}

.header {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 9999;
    background: transparent;
    transition: all 0.3s ease;
}

.header.sticky-active {
    background: #fff;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}