.products-slider-wrap {
  position: relative;
}

.products-slider-wrap .products-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.products-slider-wrap .products-slider-btn.prev {
  left: -6px;
}

.products-slider-wrap .products-slider-btn.next {
  right: -6px;
}

@media (max-width: 576px) {
  .products-slider-wrap .products-slider-btn.prev {
    left: -2px;
  }

  .products-slider-wrap .products-slider-btn.next {
    right: -2px;
  }
}

/* Navbar logo */
.navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;


}

.navbar .navbar-brand .site-logo {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;

}

@media (max-width: 576px) {
  .navbar .navbar-brand .site-logo {
    height: 48px !important;
  }
}

/* Navbar links: bolder + hover (No Wrapping) */
.navbar .navbar-nav {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 2px !important;
}

.navbar .nav-link {
  font-weight: 700 !important;
  font-size: 1.12rem !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  position: relative;
  transition: color .2s ease, background-color .2s ease;
  border-radius: 8px;
  padding: 6px 8px !important;
  color: #3E2D24 !important;
  background: transparent !important;
}

.navbar .nav-link::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -2px;
  height: 2px;
  background: #C8A96A !important;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  border-radius: 2px;
}

.navbar .nav-link.dropdown-toggle::before {
  height: 1px;
}

.navbar.navbar-expand-lg>.container,
.navbar.navbar-expand-lg>.container-fluid {
  align-items: center;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active,
.navbar .nav-link.active-page {
  color: #C8A96A !important;
  background: transparent !important;
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before,
.navbar .nav-link.active-page::before {
  transform: scaleX(1);
}

/* Navbar search (shared across pages) — flexible so right-side icons never get pushed off-screen */
.navbar .search-container {
  flex: 1 1 260px;
  min-width: 0;
  max-width: 340px;
}

/* Right-side icon row (currency + account + wishlist + cart) stays fully visible */
.navbar #navbarNav>.d-flex {
  flex: 0 0 auto;
  min-width: 0;
}

.navbar .search-wrapper {
  position: relative;
}

.navbar .search-input {
  border: 2px solid #e9ecef;
  border-radius: 25px;
  padding: 10px 40px 10px 16px;
  background: #f8f9fa;
}

.navbar .search-input:focus {
  border-color: #C8A96A;
  box-shadow: 0 0 0 3px rgba(200, 169, 106, .1);
  background: #fff;
}

.navbar .search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  cursor: pointer;
  z-index: 10;
}

/* Mobile navbar: keep logo + icons on one row */
@media (max-width: 991.98px) {

  .navbar.navbar-expand-lg>.container,
  .navbar.navbar-expand-lg>.container-fluid {
    flex-wrap: nowrap;
  }

  .navbar .navbar-brand {
    margin-right: 10px !important;
  }

  .navbar .navbar-brand .site-logo {
    height: 34px;
    max-width: 150px;
  }

  .mobile-nav-icons {
    flex-shrink: 0;
    gap: 12px;
  }

  .mobile-nav-icons a {
    font-size: 18px;
  }
}

/* ============================================================
   MEGA MENU DROPDOWN (Global Unified Styling)
   ============================================================ */
.mega-menu-dropdown {
  position: fixed !important;
  top: calc(var(--header-h, var(--navbar-h, 72px)));
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: #ffffff !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18) !important;
  z-index: 1990 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  border-top: 1px solid #e9ecef;
  pointer-events: none;
}

@media (min-width: 992px) {
  .mega-menu-dropdown {
    bottom: 0 !important;
    max-height: none !important;
  }
}

.mega-menu-dropdown::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.mega-menu-dropdown::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.mega-menu-dropdown.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.mega-menu-content {
  padding: 24px 0 40px !important;
  display: block;
  column-count: 5;
  column-gap: 24px;
}

@supports (grid-template-rows: masonry) {
  .mega-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-template-rows: masonry;
    gap: 24px;
    column-count: initial;
    column-gap: initial;
  }
}

@media (max-width: 1199.98px) {
  .mega-menu-content {
    column-count: 4;
  }
}

@media (max-width: 991.98px) {
  .mega-menu-content {
    column-count: 3;
  }
}

@media (max-width: 767.98px) {
  .mega-menu-content {
    column-count: 2;
  }
}

.mega-menu-column {
  display: flex;
  flex-direction: column;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  width: 100%;
  margin: 0 0 24px;
}

.mega-menu-title {
  font-weight: 700;
  font-size: 14px;
  color: #333333;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #b63000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu-item {
  margin-bottom: 0px;
}

.mega-menu-link {
  color: #666666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  display: block;
  padding: 3px 0;
}

.mega-menu-link:hover {
  color: #b63000;
  padding-left: 4px;
}

/* Clothing Store CSS - Modern E-commerce Design */
* {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
select,
textarea,
label {
  font-family: 'Outfit', sans-serif !important;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-suggestion-item {
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid #f8f9fa;
  transition: background 0.2s ease;
}

.search-suggestion-item:hover {
  background: #f8f9fa;
}

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

/* Search suggestion thumbnail */
.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-suggestion-thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  background: #f0f0f0;
}

/* Mobile navbar icons (match product.html layout) */
.mobile-nav-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav-icons a {
  color: #333 !important;
  font-size: 20px;
  text-decoration: none;
  position: relative;
}

.mobile-nav-icons .navbar-toggler {
  border: 0;
  box-shadow: none;
  padding: 6px 8px !important;
  border-radius: 10px;
}

.mobile-nav-icons .navbar-toggler:active {
  transform: scale(0.98);
}

.mobile-nav-icons .navbar-toggler:hover {
  background: rgba(17, 24, 39, 0.06);
}

.mobile-nav-icons .navbar-toggler-icon {
  background-image: none !important;
  width: 20px !important;
  height: 14px !important;
  position: relative;
}

.mobile-nav-icons .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 2px;
  top: 1px;
  background: #111827;
  border-radius: 999px;
  box-shadow: 0 6px 0 #111827, 0 12px 0 #111827;
}

.mobile-nav-icons a:hover {
  transform: scale(1.05);
}

.mobile-nav-icons .badge {
  font-size: 9px !important;
  min-width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Sidebar Menu Styles */
.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 10, 5, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s ease;
}

.mobile-sidebar-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.mobile-sidebar {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  width: 100% !important;
  max-width: 100vw !important;
  bottom: 0 !important;
  height: 100vh !important;
  height: 100dvh !important;
  height: calc(var(--app-vh, 1vh) * 100) !important;
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 35%, #fdf9f4 100%);
  z-index: 1051;
  box-shadow: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate3d(-110%, 0, 0) !important;
  transition: transform 0.48s cubic-bezier(0.65, 0.05, 0.2, 1), visibility 0.48s ease, box-shadow 0.3s ease !important;
  will-change: transform;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

@media (min-width: 576px) {
  .mobile-sidebar {
    width: 384px !important;
    max-width: 88vw !important;
  }
}

.mobile-sidebar.active {
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate3d(0, 0, 0) !important;
  box-shadow: 24px 0 60px rgba(35, 19, 11, 0.28) !important;
}

/* -------------------------------------------------------------
 * PREMIUM STAGGERED ENTRANCE ANIMATIONS
 * ------------------------------------------------------------- */
@keyframes premiumSlideIn {
  from {
    opacity: 0;
    transform: translate3d(-16px, 8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes premiumHeadingFade {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes iconSubtlePop {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* 1. Header/Logo Area */
.mobile-sidebar.active .sidebar-brand-lockup,
.mobile-sidebar.active .mobile-sidebar-promo {
  animation: premiumSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

/* 2. Top Header Action Icons */
.mobile-sidebar.active .mobile-sidebar-actions .icon-btn:nth-child(1) {
  animation: iconSubtlePop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.mobile-sidebar.active .mobile-sidebar-actions .icon-btn:nth-child(2) {
  animation: iconSubtlePop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.mobile-sidebar.active .mobile-sidebar-actions .icon-btn:nth-child(3) {
  animation: iconSubtlePop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}

/* 3. Search Bar */
.mobile-sidebar.active .sidebar-search {
  animation: premiumSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.10s both;
}

/* 4. EXPLORE Heading */
.mobile-sidebar.active .sidebar-nav>.sidebar-section-label:nth-of-type(1) {
  animation: premiumHeadingFade 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

/* 5. EXPLORE Menu Items */
.mobile-sidebar.active .sidebar-nav-list:not(.sidebar-nav-list-secondary) .sidebar-nav-item:nth-child(1) {
  animation: premiumSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.mobile-sidebar.active .sidebar-nav-list:not(.sidebar-nav-list-secondary) .sidebar-nav-item:nth-child(2) {
  animation: premiumSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.mobile-sidebar.active .sidebar-nav-list:not(.sidebar-nav-list-secondary) .sidebar-nav-item:nth-child(3) {
  animation: premiumSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.30s both;
}

.mobile-sidebar.active .sidebar-nav-list:not(.sidebar-nav-list-secondary) .sidebar-nav-item:nth-child(4) {
  animation: premiumSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

.mobile-sidebar.active .sidebar-nav-list:not(.sidebar-nav-list-secondary) .sidebar-nav-item:nth-child(5) {
  animation: premiumSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

/* 6. YOUR SPACE Heading */
.mobile-sidebar.active .sidebar-nav>.sidebar-section-label:nth-of-type(2) {
  animation: premiumHeadingFade 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both;
}

/* 7. YOUR SPACE Menu Items */
.mobile-sidebar.active .sidebar-nav-list-secondary .sidebar-nav-item:nth-child(1) {
  animation: premiumSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.50s both;
}

.mobile-sidebar.active .sidebar-nav-list-secondary .sidebar-nav-item:nth-child(2) {
  animation: premiumSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.56s both;
}

.mobile-sidebar.active .sidebar-nav-list-secondary .sidebar-nav-item:nth-child(3) {
  animation: premiumSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

/* 8. Fallback / Account block (if dynamic) */
.mobile-sidebar.active .sidebar-account,
.mobile-sidebar.active .sidebar-category-card,
.mobile-sidebar.active .sidebar-nav-list:not(.sidebar-nav-list-secondary) .sidebar-nav-item:nth-child(n+6),
.mobile-sidebar.active .sidebar-nav-list-secondary .sidebar-nav-item:nth-child(n+4) {
  animation: premiumSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.66s both;
}

/* Micro-interaction on the child icons inside the navigation links */
.mobile-sidebar.active .sidebar-nav-list:not(.sidebar-nav-list-secondary) .sidebar-nav-item:nth-child(1) i {
  animation: iconSubtlePop 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.mobile-sidebar.active .sidebar-nav-list:not(.sidebar-nav-list-secondary) .sidebar-nav-item:nth-child(2) i {
  animation: iconSubtlePop 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}

.mobile-sidebar.active .sidebar-nav-list:not(.sidebar-nav-list-secondary) .sidebar-nav-item:nth-child(3) i {
  animation: iconSubtlePop 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.40s both;
}

.mobile-sidebar.active .sidebar-nav-list:not(.sidebar-nav-list-secondary) .sidebar-nav-item:nth-child(4) i {
  animation: iconSubtlePop 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both;
}

.mobile-sidebar.active .sidebar-nav-list:not(.sidebar-nav-list-secondary) .sidebar-nav-item:nth-child(5) i {
  animation: iconSubtlePop 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}

.mobile-sidebar.active .sidebar-nav-list-secondary .sidebar-nav-item:nth-child(1) i {
  animation: iconSubtlePop 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.60s both;
}

.mobile-sidebar.active .sidebar-nav-list-secondary .sidebar-nav-item:nth-child(2) i {
  animation: iconSubtlePop 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.66s both;
}

.mobile-sidebar.active .sidebar-nav-list-secondary .sidebar-nav-item:nth-child(3) i {
  animation: iconSubtlePop 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {

  .mobile-sidebar,
  .mobile-sidebar-overlay {
    transition: opacity 0.3s ease !important;
  }

  .mobile-sidebar {
    transform: translate3d(0, 0, 0) !important;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-sidebar.active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-sidebar.active * {
    animation: none !important;
  }
}

/* Enforce scrollable drawer content even if a page overrides sidebar CSS inline */
#mobileSidebar.mobile-sidebar {
  display: flex !important;
  flex-direction: column !important;
  bottom: 0 !important;
  height: auto !important;
  height: 100vh !important;
  height: 100dvh !important;
  height: calc(var(--app-vh, 1vh) * 100) !important;
  overflow: hidden !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

#mobileSidebar.mobile-sidebar .mobile-sidebar-content {
  flex: 1 !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px !important;
  background: #fff;
  color: #111;
  border-bottom: 1px solid #eef2f7 !important;
  position: sticky;
  top: 0;
  z-index: 2;
}

.sidebar-logo {
  text-align: left;
}

.sidebar-logo .sidebar-brand {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: #ff6d29;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.mobile-sidebar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-sidebar-actions .icon-btn {
  background: transparent;
  border: none;
  color: #111;
  padding: 8px;
  border-radius: 8px;
  position: relative;
}

.mobile-sidebar-actions .icon-btn i {
  font-size: 18px;
}

.mobile-sidebar-actions .icon-btn:hover {
  background: #f5f5f5;
}

.mobile-sidebar-actions .count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  display: none;
  text-align: center;
}

.mobile-sidebar-promo {
  position: relative;
  background: #ff6030;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.sidebar-close-btn {
  background: transparent;
  border: none;
  color: #111;
  padding: 8px;
  border-radius: 8px;
}

.sidebar-close-btn i {
  font-size: 22px !important;
}

.sidebar-close-btn:hover {
  background: #f5f5f5;
}

.mobile-sidebar-content {
  padding: 0;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.sidebar-search {
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-search-input {
  width: 100%;
  padding: 12px 16px 12px 45px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: #f8f9fa;
}

.sidebar-search-input:focus {
  border-color: #667eea;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.sidebar-search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
}

.sidebar-nav {
  padding: 8px 0;
}

.sidebar-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav-item {
  border-bottom: 1px solid #eef2f7 !important;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  padding: 14px 16px !important;
  color: #111;
  text-decoration: none;
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease;
  gap: 10px;
  text-transform: none !important;
  letter-spacing: 0.2px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
}

.sidebar-nav-link:hover {
  background: #f6f6f6;
  color: #111;
}

.sidebar-nav-link>i {
  width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.sidebar-nav-link span {
  flex: 1;
}

.sidebar-nav-link::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #888;
  margin-left: auto;
  font-size: 14px;
  border: 0 !important;
  transition: transform 0.2s ease, color 0.2s ease;
}

.sidebar-nav-link.dropdown-toggle::after {
  content: none !important;
  display: none !important;
  font-size: 13px;
  color: #ff6030;
  transition: transform 0.3s ease, color 0.3s ease;
}

.sidebar-nav-link[aria-expanded="true"]::after,
.sidebar-nav-link.dropdown-toggle[aria-expanded="true"]::after {
  content: none !important;
  display: none !important;
  color: #ff6030;
  transform: none;
}

.sidebar-nav-link .dropdown-arrow {
  display: none !important;
}

.sidebar-nav-link:hover::after {
  color: #111;
}

.sidebar-badge {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  border-radius: 50px;
  border: 1px solid black;
  padding: 3px 8px;
}

.sidebar-submenu {
  list-style: none;
  padding: 0 0 10px 46px;
}


.sidebar-account {
  padding: 14px;
  border-top: 1px solid #eef2f7;
  background: #fff;
}

.sidebar-account-title {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
  color: #111827;
  margin: 6px 2px 10px;
}

.sidebar-account-body {
  display: grid;
  gap: 10px;
}

.sidebar-account-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #f8fafc;
}

.sidebar-account-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.sidebar-account-user-meta {
  min-width: 0;
}

.sidebar-account-name {
  font-weight: 800;
  color: #111827;
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.sidebar-account-sub {
  color: #2e3136;
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}

.sidebar-account-actions {
  display: grid;
  gap: 10px;
}

.sidebar-account-btn {
  width: 100%;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  border: 1px solid #111827;
  background: #fff;
  color: #111827;
}

.sidebar-account-btn-primary {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.sidebar-account-btn-danger {
  background: #fff;
  color: #111827;
  border-color: #111827;
}

.sidebar-account-btn-outline {
  background: #000000;
  color: #ffffff;
  border-color: #cbd5e1;
}

.sidebar-account-btn:active {
  transform: scale(0.99);
}

.sidebar-nav-link.active,
.sidebar-nav-item.active .sidebar-nav-link {
  background: #f6f6f6;
  color: #111;
}

.sidebar-submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 0;
  color: #4b5563;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid #f3f3f3;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.sidebar-submenu-link:hover {
  color: #111;
}

.sidebar-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sidebar-cat-parent-link {
  flex: 1;
}

.sidebar-cat-toggle {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.sidebar-submenu-children {
  list-style: none;
  margin: 0;
  padding: 6px 0 6px 14px;
}

.sidebar-submenu-child-item {
  margin: 0;
}

.sidebar-submenu-child-link {
  display: block;
  padding: 9px 0;
  color: #6b7280;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #f3f3f3;
}

.sidebar-submenu-child-link:hover,
.sidebar-submenu-child-link.active {
  color: #111;
}

.sidebar-submenu-link .sidebar-cat-arrow {
  font-size: 10px;
  color: #ccc;
  margin-left: auto;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.sidebar-submenu-link:hover .sidebar-cat-arrow {
  color: #ff6030;
  transform: translateX(2px);
}

body:is(.home-page, .premium-mobile-sidebar) {
  --home-sidebar-accent: #4d2600;
  --home-sidebar-accent-glow: #C8A96A;
  --home-sidebar-ink: #24120b;
  --home-sidebar-soft: #fffaf5;
  --home-sidebar-soft-2: #f8efe4;
  --home-sidebar-line: rgba(91, 54, 26, 0.14);
  --home-sidebar-shadow: 0 24px 55px rgba(60, 31, 11, 0.18);
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-overlay {
  background: rgba(36, 18, 11, 0.42);
  backdrop-filter: blur(6px);
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar {
  width: 100% !important;
  max-width: 100vw !important;
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 30%, #fbf6ef 100%);
  box-shadow: none !important;
  visibility: hidden;
  pointer-events: none;
  border-right: 1px solid rgba(139, 69, 19, 0.1);
  isolation: isolate;
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar.active {
  box-shadow: 24px 0 60px rgba(35, 19, 11, 0.24) !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

@media (min-width: 576px) {
  body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar {
    width: 384px !important;
    max-width: 88vw !important;
  }
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 240px;
  background:
    radial-gradient(circle at top left, rgba(200, 169, 106, 0.16), transparent 52%),
    radial-gradient(circle at top right, rgba(139, 69, 19, 0.18), transparent 48%);
  pointer-events: none;
  z-index: 0;
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-promo {
  padding: 11px 18px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #1d110d 0%, #4b2a1a 44%, #8c5a2d 72%, #cfad7d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-header,
body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-content {
  position: relative;
  z-index: 1;
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-header {
  padding: 14px 18px !important;
  background: rgba(255, 250, 245, 0.94);
  border-bottom: 1px solid rgba(139, 69, 19, 0.1) !important;
  backdrop-filter: blur(12px);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  flex: 1 1 auto;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-brand-mark,
.sidebar-brand-mark {
  width: auto !important;
  height: auto !important;
  min-width: unset !important;
  min-height: unset !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-brand-mark img,
.sidebar-brand-mark img {
  height: 54px !important;
  max-height: 58px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 4px 10px rgba(36, 18, 11, 0.10)) !important;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-brand-lockup-solo {
  max-width: max-content;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-brand-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(36, 18, 11, 0.62);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-brand-name {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--home-sidebar-ink);
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-actions {
  gap: 10px;
  flex: 0 0 auto;
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-actions .icon-btn,
body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-slide,
body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav-link,
body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-btn {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease;
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-actions .icon-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--home-sidebar-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 236, 223, 0.9));
  box-shadow: 0 6px 16px rgba(105, 59, 26, 0.08);
  color: var(--home-sidebar-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-actions .sidebar-close-btn {
  background: #f3e9de !important;
  color: #4d2600 !important;
  border-color: rgba(77, 38, 0, 0.16) !important;
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-actions .icon-btn:hover {
  background: linear-gradient(180deg, #fff, #f7ecdf);
  transform: translateY(-1px);
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-actions .sidebar-close-btn:hover {
  background: #4d2600 !important;
  color: #ffffff !important;
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-actions .icon-btn i {
  font-size: 17px;
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-actions .count {
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  background: #4d2600;
  box-shadow: 0 6px 12px rgba(36, 18, 11, 0.28);
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-content {
  padding: 18px 16px 22px;
  display: grid;
  gap: 16px;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-slider {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  border-radius: 24px;
  border: 1px solid rgba(139, 69, 19, 0.1);
  background: linear-gradient(135deg, rgba(245, 233, 218, 0.95), rgba(255, 255, 255, 0.96));
  box-shadow: 0 20px 40px rgba(57, 28, 10, 0.12);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-track {
  display: flex;
  height: 168px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-slide {
  position: relative;
  flex: 0 0 100%;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 10, 7, 0.06) 0%, rgba(17, 10, 7, 0.14) 35%, rgba(17, 10, 7, 0.62) 100%),
    linear-gradient(90deg, rgba(17, 10, 7, 0.38) 0%, transparent 62%);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: grid;
  gap: 5px;
  z-index: 1;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-tag {
  display: inline-flex;
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-copy strong {
  max-width: 220px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-dots {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: none;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-dot.active {
  width: 20px;
  background: #fff;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-search {
  padding: 0;
  border-bottom: 0;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-search-label,
body:is(.home-page, .premium-mobile-sidebar) .sidebar-section-label,
body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(36, 18, 11, 0.58);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-search-label {
  display: block;
  margin: 0 0 10px 4px;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-search-input {
  padding: 15px 16px 15px 48px;
  border: 1px solid var(--home-sidebar-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(106, 60, 23, 0.08);
  color: var(--home-sidebar-ink);
  font-size: 15px;
  font-weight: 500;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-search-input::placeholder {
  color: rgba(36, 18, 11, 0.45);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-search-input:focus {
  border-color: rgba(139, 69, 19, 0.34);
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.08), 0 16px 28px rgba(98, 55, 22, 0.12);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-search-icon {
  left: 18px;
  color: var(--home-sidebar-accent);
  font-size: 15px;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav {
  padding: 0;
  display: grid;
  gap: 14px;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-section-label {
  padding: 0 4px;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav-item {
  border-bottom: 0 !important;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav-link {
  padding: 14px 14px 14px 16px !important;
  gap: 12px;
  border: 1px solid var(--home-sidebar-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 24px rgba(106, 60, 23, 0.08);
  color: var(--home-sidebar-ink);
  font-size: 15.5px !important;
  font-weight: 700 !important;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav-link:hover,
body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav-link:focus-visible {
  background: #fff;
  color: var(--home-sidebar-ink);
  transform: translateX(2px);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav-link>i {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--theme-primary-bg, #3E2D24) 12%, transparent);
  color: var(--theme-primary-bg, #3E2D24);
  font-size: 16px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav-link span {
  min-width: 0;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav-link::after {
  width: 34px;
  height: 34px;
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--theme-primary-bg, #3E2D24) 8%, transparent);
  color: var(--theme-primary-bg, #3E2D24);
  font-size: 11px;
  flex: 0 0 auto;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav-link.dropdown-toggle::after {
  background: color-mix(in srgb, var(--theme-primary-bg, #3E2D24) 10%, transparent);
  color: var(--theme-primary-bg, #3E2D24);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav-link:hover::after {
  background: color-mix(in srgb, var(--theme-primary-bg, #3E2D24) 15%, transparent);
  color: var(--theme-primary-bg, #3E2D24);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav-link.sidebar-nav-link-accent {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.11), rgba(255, 255, 255, 0.95));
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-badge {
  position: static;
  right: auto;
  top: auto;
  transform: none;
  margin-left: 8px;
  padding: 5px 9px;
  min-width: 28px;
  background: #fff7ed;
  color: var(--home-sidebar-accent);
  border: 1px solid rgba(139, 69, 19, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-submenu {
  margin: 8px 4px 0;
  padding: 10px 0 0;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-submenu li {
  list-style: none;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-submenu-link {
  margin-top: 8px;
  padding: 11px 14px 11px 54px;
  border-bottom: 0;
  border-radius: 16px;
  background: rgba(255, 251, 246, 0.88);
  border: 1px solid rgba(139, 69, 19, 0.08);
  color: rgba(36, 18, 11, 0.76);
  font-size: 14px;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-submenu-link:hover {
  color: var(--home-sidebar-ink);
  background: #fff;
}

.sidebar-service-strip,
body:is(.home-page, .premium-mobile-sidebar) .sidebar-service-strip {
  display: none !important;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-service-pill {
  min-height: 60px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--home-sidebar-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 239, 230, 0.86));
  box-shadow: 0 12px 22px rgba(104, 58, 23, 0.07);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--home-sidebar-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-service-pill i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.12), rgba(200, 169, 106, 0.22));
  color: var(--home-sidebar-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 14px;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account {
  margin-top: 4px;
  padding: 18px;
  border-top: 0;
  border-radius: 24px;
  border: 1px solid var(--home-sidebar-line);
  background: linear-gradient(180deg, rgba(139, 69, 19, 0.08), rgba(255, 255, 255, 0.96));
  box-shadow: var(--home-sidebar-shadow);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-title {
  margin: 0 0 12px;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-note,
body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(139, 69, 19, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(36, 18, 11, 0.74);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-note i,
body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-status i {
  color: var(--home-sidebar-accent);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-user {
  padding: 12px;
  border: 1px solid rgba(139, 69, 19, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #4d2600;
  box-shadow: 0 12px 24px rgba(36, 18, 11, 0.18);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-name {
  max-width: 210px;
  font-size: 16px;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-sub {
  color: rgba(36, 18, 11, 0.62);
  font-size: 12px;
  font-weight: 600;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-actions {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-btn {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(139, 69, 19, 0.18);
  background: #fff;
  color: var(--home-sidebar-ink);
  box-shadow: 0 10px 20px rgba(106, 60, 23, 0.08);
  font-size: 14px;
  font-weight: 700;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-btn-primary,
body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-btn-outline {
  border-color: rgba(139, 69, 19, 0.18);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-btn-primary {
  background: #4d2600;
  color: #fff;
  border-color: transparent;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-btn-danger {
  background: rgba(255, 255, 255, 0.9);
  color: var(--home-sidebar-ink);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-account-btn:hover {
  transform: translateY(-1px);
}

body:is(.home-page, .premium-mobile-sidebar) #comboSiteBanner {
  border: 0 !important;
  border-radius: 22px;
  background: #4d2600 !important;
  color: #fff;
  box-shadow: 0 18px 30px rgba(36, 18, 11, 0.2);
  overflow: hidden;
}

body:is(.home-page, .premium-mobile-sidebar) #comboSiteBanner .container {
  width: auto;
  max-width: none;
  padding: 14px 16px !important;
}

body:is(.home-page, .premium-mobile-sidebar) #comboSiteBanner .fw-semibold {
  color: #fff;
}

body:is(.home-page, .premium-mobile-sidebar) #comboSiteBanner .badge {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
}

body:is(.home-page, .premium-mobile-sidebar) #comboSiteBanner .btn {
  border: none;
  border-radius: 12px;
  background: #fff;
  color: var(--home-sidebar-ink);
  font-weight: 700;
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-content::-webkit-scrollbar {
  width: 6px;
}

body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-content::-webkit-scrollbar-thumb {
  background: rgba(139, 69, 19, 0.18);
  border-radius: 999px;
}

@media (max-width: 380px) {
  body:is(.home-page, .premium-mobile-sidebar) .mobile-sidebar-content {
    padding: 16px 14px 20px;
  }

  body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-slider,
  body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-track {
    min-height: 156px;
    height: 156px;
  }

  body:is(.home-page, .premium-mobile-sidebar) .sidebar-nav-link {
    padding: 13px 12px 13px 14px !important;
    font-size: 14.5px !important;
  }

  body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-copy strong {
    font-size: 16px;
    max-width: 190px;
  }

  body:is(.home-page, .premium-mobile-sidebar) .sidebar-service-pill {
    padding: 11px 12px;
  }
}

@media (min-width: 992px) {

  .mobile-sidebar,
  .mobile-sidebar-overlay {
    display: none !important;
  }
}

/* Mobile Search Overlay (match product.html) */
/* Mobile Search Overlay */
.mobile-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 106000;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-search-overlay.active {
  display: block;
}

.mobile-search-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.mobile-search-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  background: #ffffff;
  z-index: 10;
}

.mobile-search-back {
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  padding: 6px;
  margin-right: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-back:active {
  transform: scale(0.92);
}

.mobile-search-input-wrapper {
  flex: 1;
  position: relative;
}

.mobile-search-input {
  width: 100%;
  padding: 10px 70px 10px 18px;
  border: 1.5px solid #C8A96A;
  border-radius: 25px;
  font-size: 15px;
  background: #fff;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.mobile-search-input:focus {
  outline: none;
  border-color: #C8A96A;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.15);
}

.mobile-search-clear {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 16px;
  color: #999;
  padding: 4px;
  cursor: pointer;
  display: none;
}

.mobile-search-clear.show {
  display: block;
}

.mobile-search-submit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 16px;
  color: #C8A96A;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-results {
  flex: 1;
  background: #ffffff;
  padding: 0;
  width: 100%;
}

.mobile-search-overlay .search-suggestions,
.mobile-search-overlay .mobile-search-suggestions,
#mobileSearchSuggestions {
  display: block;
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  background: #ffffff !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  max-height: none !important;
  overflow: visible !important;
  padding: 16px 18px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.search-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #e0e0e0;
  border-top-color: #C8A96A;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  overflow-x: clip;
  background-color: #f8f9fa;
}

/* Destry Navbar Styles - Exact Match */
.destry-navbar {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

.destry-navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.destry-navbar .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 40px;
}

.destry-navbar .logo {
  flex-shrink: 0;
}

.destry-navbar .logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  font-family: 'Outfit', sans-serif;
}

.destry-navbar .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
  flex: 1;
  justify-content: flex-start;
  margin-left: 60px;
}

.destry-navbar .nav-item {
  position: relative;
}

.destry-navbar .nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  padding: 5px 0;
}

.destry-navbar .nav-link:hover {
  color: #666;
}

.destry-navbar .nav-link.active {
  color: #C8A96A;
  font-weight: 500;
}

.destry-navbar .nav-link i {
  font-size: 10px;
  margin-left: 2px;
}

/* Navbar Search Container */
.navbar-search-container {
  position: relative;
  flex: 0 0 300px;
  margin: 0 20px;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.navbar-search-input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  font-size: 14px;
  background: #f8f9fa;
  outline: none;
  transition: all 0.3s ease;
}

.navbar-search-input:focus {
  border-color: #C8A96A;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.1);
  z-index: 10;
  position: relative;
}

.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 16px;
  padding: 5px;
}

.search-btn:hover {
  color: #333;
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  display: none;
  margin-top: 5px;
}

.search-dropdown.show {
  display: block;
}

.search-results-container {
  padding: 10px 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.search-result-item:hover {
  background: #f8f9fa;
}

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

.search-result-image {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 12px;
  background: #f0f0f0;
}

.search-result-info {
  flex: 1;
}

.search-result-title {
  font-weight: 500;
  color: #333;
  margin-bottom: 2px;
  font-size: 14px;
}

.search-result-category {
  color: #666;
  font-size: 12px;
  margin-bottom: 2px;
}

.search-result-price {
  color: #C8A96A;
  font-weight: 600;
  font-size: 13px;
}

/* Navbar search skeleton loader */
.skeleton {
  background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.4s ease-in-out infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.search-skeleton-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
}

.search-skel-image {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  margin-right: 12px;
}

.search-skel-text {
  flex: 1;
}

.search-skel-line {
  height: 12px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.search-skel-line.short {
  width: 40%;
  height: 10px;
}

.search-skel-line.mid {
  width: 60%;
}

.search-skel-line.long {
  width: 80%;
}

.destry-navbar .nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-left: auto;
}

.destry-navbar .nav-icon-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  padding: 8px;
}

.destry-navbar .nav-icon-btn:hover {
  color: #C8A96A;
}

.destry-navbar .cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.destry-navbar .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.destry-navbar .hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

/* Search Overlay Styles */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container-full {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-bottom: 30px;
}

.search-input-full {
  width: 100%;
  padding: 20px 60px 20px 20px;
  font-size: 24px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  outline: none;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.search-input-full:focus {
  border-color: #C8A96A;
  background: #fff;
  box-shadow: 0 0 20px rgba(200, 169, 106, 0.1);
}

.search-close-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-close-btn:hover {
  color: #333;
}

.search-results {
  width: 100%;
  max-width: 800px;
  max-height: 60vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 10px;
  margin-bottom: 10px;
}

.search-result-item:hover {
  background: #f8f9fa;
}

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

.search-result-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
  background: #f0f0f0;
}

.search-result-info {
  flex: 1;
}

.search-result-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  font-size: 16px;
}

.search-result-category {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.search-result-price {
  color: #C8A96A;
  font-weight: 600;
  font-size: 16px;
}

.no-results {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 18px;
}

.search-suggestions {
  margin-top: 20px;
  text-align: center;
}

.search-suggestion {
  display: inline-block;
  background: #f0f0f0;
  padding: 8px 16px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 14px;
}

.search-suggestion:hover {
  background: #e0e0e0;
}

.brandlogo2 {
  height: 64px;
  width: 170px;
}

.sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
  background: #ffffff !important;
  will-change: transform, opacity;
}

@keyframes stickyNavbarIn {
  from {
    transform: translate3d(0, -110%, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes stickyNavbarOut {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    transform: translate3d(0, -110%, 0);
    opacity: 0;
  }
}

.sticky-navbar.sticky-navbar--enter {
  animation: stickyNavbarIn 180ms ease both;
}

.sticky-navbar.sticky-navbar--exit {
  animation: stickyNavbarOut 180ms ease both;
}

/* Main Container */
.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
}

.content-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Filters Sidebar */
.filters-sidebar {
  width: 270px !important;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 98px !important;
  height: fit-content;
}

.filter-section {
  margin-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 20px;
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-option {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  cursor: pointer;
  padding: 4px 0;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.filter-option:hover {
  background-color: #f8f9fa;
}

.filter-option input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #e74c3c;
  width: 16px;
  height: 16px;
}

.filter-option label {
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.category-filter-group {
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(139, 69, 19, 0.08);
}

.category-filter-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 6px;
  border-radius: 10px;
}

.category-filter-parent:hover {
  background: rgba(139, 69, 19, 0.04);
}

.category-filter-parent-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
  flex: 1;
}

.category-filter-parent-label span {
  font-weight: 600;
  color: #2c1810;
}

.category-filter-toggle {
  border: none;
  background: transparent;
  color: #4d2600;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-filter-toggle:hover {
  background: rgba(139, 69, 19, 0.06);
}

.category-filter-group .category-filter-toggle i {
  transition: transform 0.2s ease;
}

.category-filter-group.open .category-filter-toggle i {
  transform: rotate(180deg);
}

.category-filter-children {
  padding: 6px 0 0 18px;
}

.category-filter-children .filter-option {
  padding: 4px 6px;
  border-radius: 10px;
}

.category-filter-children .filter-option label {
  font-size: 13px;
}

/* Color Filter */
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.color-option:hover {
  transform: scale(1.1);
  border-color: #e74c3c;
}

.color-option.selected {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.3);
}

.color-option.selected::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

/* Size Filter */
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.size-option {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: white;
}

.size-option:hover {
  border-color: #e74c3c;
  background-color: #fff5f5;
}

.size-option.selected {
  background-color: #e74c3c;
  color: white;
  border-color: #e74c3c;
}

/* Price Range */
.price-range {
  margin-top: 10px;
}

.price-inputs {
  display: flex;
  gap: 10px;
  margin-top: 8px;

}

.price-input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}

/* Products Container */
.products-container {
  flex: 1;
  min-width: 0;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.results-count {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.sort-dropdown {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  background: white;
  min-width: 150px;
  cursor: pointer;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));


  gap: 20px;
  margin-bottom: 32px;
}

/* Modern Product Cards for Clothing */
.product-card {

  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #4d2600;
}

.sh-deal-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 6;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D7C1A1, #C8A96A);
  color: #3E2D24;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
  box-shadow: 0 8px 20px rgba(200, 169, 106, 0.25);
  pointer-events: none;
}

.sh-deal-countdown {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(62, 45, 36, 0.85);
  color: #D7C1A1;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

.sh-deal-countdown.is-expired {
  background: rgba(100, 116, 139, .8);
}

.sh-deal-countdown-label {
  opacity: .9;
  font-weight: 600;
}

.sh-deal-timer {
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  font-weight: 800;
}

.sh-pdp-deal-countdown {
  margin-top: 5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 14px;
  background: rgba(62, 45, 36, 0.85);
  /* #3E2D24 with opacity */
  color: #D7C1A1;
  width: fit-content;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .24);
  border: 1px solid rgba(215, 193, 161, 0.2);
}

.sh-pdp-deal-countdown .sh-deal-countdown-label {
  opacity: .92;
}

.sh-pdp-deal-countdown .sh-deal-timer {
  background: rgba(255, 255, 255, .12);
  padding: 4px 10px;
  border-radius: 10px;
}

.sh-cart-deal-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.sh-cart-deal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D7C1A1, #C8A96A);
  color: #3E2D24;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
  box-shadow: 0 10px 24px rgba(200, 169, 106, 0.22);
}

.sh-cart-deal-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, .08);
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
}

.sh-cart-deal-countdown .sh-deal-countdown-label {
  opacity: .85;
}

.sh-cart-deal-countdown .sh-deal-timer {
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(15, 23, 42, .08);
}

.sh-cart-price-now {
  font-weight: 900;
  color: #0f172a;
}

.sh-cart-price-old {
  margin-left: 10px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 700;
  font-size: 14px;
}

.product-image-container {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 4;
}

.product-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

img.is-lazy-media:not(.img-hover):not(.product-img-hover):not(.tw-hover) {
  background: linear-gradient(135deg, #f5ede5 0%, #eee1d3 100%);
  opacity: 0.28;
  transition: opacity 0.24s ease, transform 0.3s ease;
}

img.is-lazy-media.is-lazy-pending:not(.img-hover):not(.product-img-hover):not(.tw-hover) {
  opacity: 0.42;
}

img.is-lazy-media.is-lazy-loaded:not(.img-hover):not(.product-img-hover):not(.tw-hover),
img.is-lazy-media.is-lazy-fallback:not(.img-hover):not(.product-img-hover):not(.tw-hover) {
  opacity: 1;
}

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

/* ===== Home page specific (match product.html) ===== */
.home-page .products-grid:not(.slider):not(.trending-grid):not(.trending-slider) {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

@media (max-width: 991.98px) {
  .home-page .products-grid:not(.slider):not(.trending-grid):not(.trending-slider) {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 576px) {
  .home-page .products-grid:not(.slider):not(.trending-grid):not(.trending-slider) {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

.home-page .quick-actions {
  display: none !important;
}

.home-page .product-card .product-actions {
  display: flex !important;
  position: static !important;
  top: auto !important;
  right: auto !important;
  opacity: 1 !important;
  transform: none !important;
  flex-direction: row !important;
  gap: 8px !important;
  justify-content: center !important;
}

.home-page .product-image-container {
  aspect-ratio: 3 / 4;
}

.home-page .product-img {
  height: 100% !important;
  object-fit: cover !important;
  background: #ffffff;
}

.home-page .product-image-container .visit-btn {
  display: none !important;
}

.product-image-container {
  position: relative !important;
  overflow: hidden !important;
  aspect-ratio: 3 / 4 !important;
  background: #ffffff !important;
}

.product-image-container .product-img,
.product-image-container img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: opacity .3s ease, transform .3s ease !important;
  display: block !important;
}

.product-image-container .img-primary,
.product-img-wrapper .product-img-primary,
.top-wear-img .tw-primary {
  opacity: 1 !important;
  z-index: 1 !important;
  transition: opacity .3s ease, transform .3s ease !important;
}

.product-image-container .img-hover,
.product-img-wrapper .product-img-hover,
.top-wear-img .tw-hover,
img.img-hover,
img.product-img-hover,
img.tw-hover {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: 2 !important;
  transition: opacity .3s ease, transform .3s ease !important;
}

.product-card.has-hover-image:hover .product-image-container .img-hover,
.product-card.has-hover-image:hover .product-img-wrapper .product-img-hover,
.product-card.has-hover-image:hover .top-wear-img .tw-hover,
.top-wear-card.has-hover-image:hover .top-wear-img .tw-hover,
.home-recent-card.has-hover-image:hover .top-wear-img .tw-hover {
  opacity: 1 !important;
}

.product-card.has-hover-image:hover .product-image-container .img-primary,
.product-card.has-hover-image:hover .product-img-wrapper .product-img-primary,
.product-card.has-hover-image:hover .top-wear-img .tw-primary,
.top-wear-card.has-hover-image:hover .top-wear-img .tw-primary,
.home-recent-card.has-hover-image:hover .top-wear-img .tw-primary {
  opacity: 0 !important;
}

.product-card.no-hover-image:hover .product-image-container .img-primary,
.product-card:not(.has-hover-image):hover .product-image-container .img-primary,
.top-wear-card.no-hover-image:hover .top-wear-img .tw-primary,
.top-wear-card:not(.has-hover-image):hover .top-wear-img .tw-primary,
.home-recent-card:not(.has-hover-image):hover .top-wear-img .tw-primary {
  opacity: 1 !important;
}

.product-page .product-image-container {
  position: relative;
  height: auto;
  width: 100%;
  aspect-ratio: 3 / 4;
}

.product-page .product-image-container .product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  background: #ffffff;
  transition: opacity .3s ease;
}

@media (max-width: 991.98px) {
  .product-page .product-image-container {
    height: auto;
  }
}

@media (max-width: 576px) {
  .product-page .product-image-container {
    height: auto;
  }
}

.home-page .product-card.see-all-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 360px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f7fb 100%);
  border: 2px dashed #d1d5db;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.home-page .product-card.see-all-card:hover {
  border-color: #4d2600;
  background: linear-gradient(135deg, #fff5f0 0%, #fff8f3 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
}

.home-page .see-all-card .sa-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
}

.home-page .see-all-card .sa-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #4d2600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
}

.home-page .see-all-card:hover .sa-icon {
  transform: scale(1.1) rotate(90deg);
}

.home-page .see-all-card .sa-icon i {
  font-size: 24px;
}

.home-page .see-all-card .sa-title {
  font-weight: 700;
  font-size: 20px;
  color: #1a1a1a;
  letter-spacing: .3px;
  margin: 0;
}

.home-page .see-all-card .sa-sub {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}

.btn-see-all {
  border-radius: 999px;
  padding: 10px 18px;
  letter-spacing: .2px;
}

/* Home page: Wishlist heart on image (top-right), outline by default */
.home-page .product-card .quick-actions {
  display: flex !important;
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  transform: none !important;
  gap: 0;
  opacity: 1 !important;
}

.home-page .product-card .quick-actions .quick-btn:first-child {
  display: none !important;
}

/* hide quick view */
.home-page .product-card .quick-actions .quick-btn {
  width: 34px;
  height: 34px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 50% !important;
  color: #222;
}

.home-page .product-card .quick-actions .quick-btn:hover {
  background: transparent !important;
  transform: none !important;
}

.home-page .product-card .quick-actions .quick-btn i {
  font-size: 20px;
  color: #222222;
}

.home-page .product-card .quick-actions .quick-btn i.text-danger {
  color: #e3342f !important;
}

.home-page .product-card .btn-wishlist {
  display: none !important;
}

/* Home page: hide non-essential details on product cards */
.home-page .product-card .product-badge,
.home-page .product-card .discount-badge,
.home-page .product-card .product-rating,
.home-page .product-card .product-sizes,
.home-page .product-card .product-colors {
  display: none !important;
}

.home-page .top-wear .top-wear-img .quick-actions,
.home-page .bottom-wear .top-wear-img .quick-actions,
.home-page .foot-wear .top-wear-img .quick-actions {
  display: flex !important;
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  transform: none !important;
  gap: 0;
  opacity: 1 !important;
  z-index: 4;
}

.home-page .top-wear .top-wear-img .quick-actions .quick-btn:first-child,
.home-page .bottom-wear .top-wear-img .quick-actions .quick-btn:first-child,
.home-page .foot-wear .top-wear-img .quick-actions .quick-btn:first-child {
  display: none !important;
}

.home-page .top-wear .top-wear-img .quick-actions .quick-btn,
.home-page .bottom-wear .top-wear-img .quick-actions .quick-btn,
.home-page .foot-wear .top-wear-img .quick-actions .quick-btn {
  width: 34px;
  height: 34px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 50% !important;
  color: #222;
}

.home-page .top-wear .top-wear-img .quick-actions .quick-btn:hover,
.home-page .bottom-wear .top-wear-img .quick-actions .quick-btn:hover,
.home-page .foot-wear .top-wear-img .quick-actions .quick-btn:hover {
  background: transparent !important;
  transform: none !important;
}

.home-page .top-wear .top-wear-img .quick-actions .quick-btn i,
.home-page .bottom-wear .top-wear-img .quick-actions .quick-btn i,
.home-page .foot-wear .top-wear-img .quick-actions .quick-btn i {
  font-size: 20px;
  color: #222222;
}

.home-page .top-wear .top-wear-img .quick-actions .quick-btn i.text-danger,
.home-page .bottom-wear .top-wear-img .quick-actions .quick-btn i.text-danger,
.home-page .foot-wear .top-wear-img .quick-actions .quick-btn i.text-danger {
  color: #e3342f !important;
}

/* Home page: show stock and reviews (right side) in one row */
.home-page .product-stock,
.home-page .product-meta {
  display: inline-flex !important;
  align-items: center;
}

.home-page .product-stock {
  margin-bottom: 0 !important;
  gap: 6px;
}

.home-page .product-meta {
  margin-left: 12px;
  gap: 6px;
  white-space: nowrap;
}

.home-page .product-meta .delivery-info {
  display: none !important;
}

/* Home page products slider */
.home-page .products-grid.slider {
  display: grid !important;
  grid-auto-flow: column;
  /* Show ~4 cards plus a peek of 5th */
  grid-auto-columns: calc((100% - 90px) / 4.2);
  grid-template-columns: none !important;
  overflow-x: auto;
  /* Keep wheel scrolling on the page instead of creating a tiny vertical scroll area inside the slider. */
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  scroll-behavior: smooth;
  gap: 20px !important;
  padding-top: 16px;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
}

.home-page .products-grid.slider .product-card {
  scroll-snap-align: start;
  min-width: 0;
}

.home-page .products-grid.slider {
  scrollbar-width: none;
}

.home-page .products-grid.slider::-webkit-scrollbar {
  height: 0;
  display: none;
}

.home-page .products-grid.slider::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 4px;
}

@media (max-width: 991.98px) {

  /* Show ~3 plus peek of 4th */
  .home-page .products-grid.slider {
    grid-auto-columns: calc((100% - 40px) / 3.2);
  }
}

@media (max-width: 576px) {

  /* Show ~2 plus peek of 3rd */
  .home-page .products-grid.slider {
    gap: 12px !important;
    grid-auto-columns: calc((100% - 12px) / 2.05);
  }

  .home-page .product-image-container {
    height: 190px !important;
    min-height: 190px !important;
  }

  .home-page .product-img {
    height: 190px !important;
    object-fit: cover !important;
  }
}

/* Slider nav buttons */
.products-slider-nav {
  display: flex;
  gap: 8px;
}

.products-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a2540;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.products-slider-btn i {
  font-size: 16px;
}

.products-slider-btn:hover {
  background: #0a2540;
  color: #fff;
  border-color: #0a2540;
}

.products-slider-btn:active {
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}

/* Keep vertical centering transform even on active for overlay buttons */
.products-slider-wrap .products-slider-btn:active {
  transform: translateY(-50%) scale(.96);
}

/* Slider dots */
.products-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.products-slider-dots .dot {
  width: 8px;
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  transition: all .2s ease;
  cursor: pointer;
}

.products-slider-dots .dot.active {
  width: 22px;
  background: #0a2540;
}

/* Prevent text selection while dragging slider */
.home-page .products-grid.slider.dragging,
.home-page .products-grid.slider.dragging * {
  user-select: none !important;
}

/* Top Wear section */
.top-wear,
.bottom-wear,
.foot-wear {
  padding: 20px 0;
  background: #ffffff;
  padding-bottom: 30px;
}

.top-wear .top-wear-header,
.bottom-wear .top-wear-header,
.foot-wear .top-wear-header {
  text-align: center;
  margin-bottom: 18px;
}

.top-wear .top-wear-header h2,
.bottom-wear .top-wear-header h2,
.foot-wear .top-wear-header h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  color: 4d2600;

}

.top-wear .top-wear-tabs,
.bottom-wear .top-wear-tabs,
.foot-wear .top-wear-tabs {
  display: flex;
  justify-content: center;
  gap: 22px;
  overflow-x: hidden;
  padding: 6px 0 14px;
  margin-bottom: 18px;
  scrollbar-width: none;
  white-space: nowrap;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
}

.top-wear .top-wear-tabs::-webkit-scrollbar,
.bottom-wear .top-wear-tabs::-webkit-scrollbar,
.foot-wear .top-wear-tabs::-webkit-scrollbar {
  display: none;
}

.top-wear .wear-tabs-wrap,
.bottom-wear .wear-tabs-wrap,
.foot-wear .wear-tabs-wrap {
  position: relative;
  margin-bottom: 18px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.top-wear .wear-tabs-wrap .top-wear-tabs,
.bottom-wear .wear-tabs-wrap .top-wear-tabs,
.foot-wear .wear-tabs-wrap .top-wear-tabs {
  margin-bottom: 0;
}

.top-wear .wear-tabs-wrap.is-overflowing .top-wear-tabs,
.bottom-wear .wear-tabs-wrap.is-overflowing .top-wear-tabs,
.foot-wear .wear-tabs-wrap.is-overflowing .top-wear-tabs {
  justify-content: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-left: 6px;
  padding-right: 6px;
  overscroll-behavior-x: contain;
}

.top-wear .wear-tabs-wrap.is-overflowing::after,
.bottom-wear .wear-tabs-wrap.is-overflowing::after,
.foot-wear .wear-tabs-wrap.is-overflowing::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 34px;
  pointer-events: none;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.top-wear .topwear-tab,
.bottom-wear .topwear-tab,
.foot-wear .topwear-tab,
.topwear-tab {
  border: 1.5px solid #E8DFD5;
  background: #FAF7F2;
  color: #5C3617;
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 18px;
  border-radius: 999px;
  position: relative;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(107, 63, 29, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-wear .topwear-tab:hover,
.bottom-wear .topwear-tab:hover,
.foot-wear .topwear-tab:hover,
.topwear-tab:hover {
  background: #F4ECE1;
  border-color: #C8A96A;
  color: #3E2D24;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(107, 63, 29, 0.12);
}

.top-wear .topwear-tab.active,
.bottom-wear .topwear-tab.active,
.foot-wear .topwear-tab.active,
.topwear-tab.active {
  background: #6B3F1D;
  border-color: #6B3F1D;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(107, 63, 29, 0.28);
  transform: translateY(-1px);
}

.top-wear .topwear-tab.active:hover,
.bottom-wear .topwear-tab.active:hover,
.foot-wear .topwear-tab.active:hover,
.topwear-tab.active:hover {
  background: #522E14;
  border-color: #522E14;
  color: #FFFFFF;
}

.top-wear .topwear-tab.active::after,
.bottom-wear .topwear-tab.active::after,
.foot-wear .topwear-tab.active::after,
.topwear-tab.active::after {
  display: none;
}

.top-wear .top-wear-grid,
.bottom-wear .top-wear-grid,
.foot-wear .top-wear-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.top-wear .top-wear-card,
.bottom-wear .top-wear-card,
.foot-wear .top-wear-card {
  cursor: pointer;
}

.top-wear .top-wear-img,
.bottom-wear .top-wear-img,
.foot-wear .top-wear-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f3f4f6;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.top-wear-img,
.top-wear .top-wear-img,
.bottom-wear .top-wear-img,
.foot-wear .top-wear-img,
.dynamic-category-section .top-wear-img,
.home-recent-card .top-wear-img {
  position: relative !important;
  overflow: hidden !important;
}

.top-wear-img .tw-img,
.top-wear-img img,
.top-wear .top-wear-img .tw-img,
.bottom-wear .top-wear-img .tw-img,
.foot-wear .top-wear-img .tw-img,
.dynamic-category-section .top-wear-img .tw-img,
.home-recent-card .top-wear-img .tw-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}

.top-wear-img .tw-primary,
.top-wear .top-wear-img .tw-primary,
.bottom-wear .top-wear-img .tw-primary,
.foot-wear .top-wear-img .tw-primary,
.dynamic-category-section .top-wear-img .tw-primary,
.home-recent-card .top-wear-img .tw-primary {
  opacity: 1;
  transition: opacity .3s ease;
  z-index: 1;
}

.top-wear-img .tw-hover,
.top-wear .top-wear-img .tw-hover,
.bottom-wear .top-wear-img .tw-hover,
.foot-wear .top-wear-img .tw-hover,
.dynamic-category-section .top-wear-img .tw-hover,
.home-recent-card .top-wear-img .tw-hover {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 2;
}

.top-wear-card.has-hover-image:hover .top-wear-img .tw-hover,
.product-card.has-hover-image:hover .top-wear-img .tw-hover,
.top-wear .top-wear-card.has-hover-image:hover .top-wear-img .tw-hover,
.bottom-wear .top-wear-card.has-hover-image:hover .top-wear-img .tw-hover,
.foot-wear .top-wear-card.has-hover-image:hover .top-wear-img .tw-hover,
.dynamic-category-section .top-wear-card.has-hover-image:hover .top-wear-img .tw-hover,
.home-recent-card.has-hover-image:hover .top-wear-img .tw-hover,
.home-recent-card.has-hover-image .top-wear-card:hover .top-wear-img .tw-hover {
  opacity: 1 !important;
}

.top-wear-card.has-hover-image:hover .top-wear-img .tw-primary,
.product-card.has-hover-image:hover .top-wear-img .tw-primary,
.top-wear .top-wear-card.has-hover-image:hover .top-wear-img .tw-primary,
.bottom-wear .top-wear-card.has-hover-image:hover .top-wear-img .tw-primary,
.foot-wear .top-wear-card.has-hover-image:hover .top-wear-img .tw-primary,
.dynamic-category-section .top-wear-card.has-hover-image:hover .top-wear-img .tw-primary,
.home-recent-card.has-hover-image:hover .top-wear-img .tw-primary,
.home-recent-card.has-hover-image .top-wear-card:hover .top-wear-img .tw-primary {
  opacity: 0 !important;
}

.top-wear-card.no-hover-image:hover .top-wear-img .tw-primary,
.top-wear-card:not(.has-hover-image):hover .top-wear-img .tw-primary,
.product-card.no-hover-image:hover .top-wear-img .tw-primary,
.product-card:not(.has-hover-image):hover .top-wear-img .tw-primary,
.top-wear .top-wear-card:not(.has-hover-image):hover .top-wear-img .tw-primary,
.bottom-wear .top-wear-card:not(.has-hover-image):hover .top-wear-img .tw-primary,
.foot-wear .top-wear-card:not(.has-hover-image):hover .top-wear-img .tw-primary,
.dynamic-category-section .top-wear-card:not(.has-hover-image):hover .top-wear-img .tw-primary,
.home-recent-card:not(.has-hover-image):hover .top-wear-img .tw-primary {
  opacity: 1 !important;
}

/* New Arrival skeleton cards (match top-wear layout) */
.top-wear .top-wear-card.tw-skeleton,
.bottom-wear .top-wear-card.tw-skeleton,
.foot-wear .top-wear-card.tw-skeleton {
  cursor: default;
}

.top-wear .top-wear-card.tw-skeleton .top-wear-img,
.bottom-wear .top-wear-card.tw-skeleton .top-wear-img,
.foot-wear .top-wear-card.tw-skeleton .top-wear-img {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
}

.top-wear .tw-skel-shimmer,
.bottom-wear .tw-skel-shimmer,
.foot-wear .tw-skel-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 244, 246, 1) 0%, rgba(229, 231, 235, 1) 45%, rgba(243, 244, 246, 1) 100%);
  background-size: 200% 100%;
  animation: twShimmer 1.15s ease-in-out infinite;
}

.top-wear .tw-skel-line,
.bottom-wear .tw-skel-line,
.foot-wear .tw-skel-line {
  height: 12px;
  border-radius: 8px;
  background: #eef2f7;
  position: relative;
  overflow: hidden;
}

.top-wear .tw-skel-line::after,
.bottom-wear .tw-skel-line::after,
.foot-wear .tw-skel-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(238, 242, 247, 1) 0%, rgba(229, 231, 235, 1) 45%, rgba(238, 242, 247, 1) 100%);
  background-size: 200% 100%;
  animation: twShimmer 1.15s ease-in-out infinite;
}

.top-wear .tw-skel-title,
.bottom-wear .tw-skel-title,
.foot-wear .tw-skel-title {
  margin-top: 6px;
  width: 92%;
}

.top-wear .tw-skel-title.short,
.bottom-wear .tw-skel-title.short,
.foot-wear .tw-skel-title.short {
  width: 68%;
}

.top-wear .tw-skel-price,
.bottom-wear .tw-skel-price,
.foot-wear .tw-skel-price {
  margin-top: 10px;
  width: 55%;
  height: 14px;
}

.top-wear .tw-skel-price.small,
.bottom-wear .tw-skel-price.small,
.foot-wear .tw-skel-price.small {
  width: 28%;
  height: 12px;
}

.top-wear .tw-skel-row,
.bottom-wear .tw-skel-row,
.foot-wear .tw-skel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.top-wear .tw-skel-badge,
.bottom-wear .tw-skel-badge,
.foot-wear .tw-skel-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 76px;
  height: 22px;
  border-radius: 999px;
  background: rgba(238, 242, 247, 1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
  overflow: hidden;
}

.top-wear .tw-skel-badge::after,
.bottom-wear .tw-skel-badge::after,
.foot-wear .tw-skel-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(238, 242, 247, 1) 0%, rgba(229, 231, 235, 1) 45%, rgba(238, 242, 247, 1) 100%);
  background-size: 200% 100%;
  animation: twShimmer 1.15s ease-in-out infinite;
}

.top-wear .top-wear-card.tw-skeleton:hover .top-wear-img .tw-hover,
.bottom-wear .top-wear-card.tw-skeleton:hover .top-wear-img .tw-hover,
.foot-wear .top-wear-card.tw-skeleton:hover .top-wear-img .tw-hover,
.top-wear .top-wear-card.tw-skeleton:hover .top-wear-img .tw-primary,
.bottom-wear .top-wear-card.tw-skeleton:hover .top-wear-img .tw-primary,
.foot-wear .top-wear-card.tw-skeleton:hover .top-wear-img .tw-primary {
  opacity: 1;
}

@keyframes twShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.top-wear .tw-discount-badge,
.bottom-wear .tw-discount-badge,
.foot-wear .tw-discount-badge,
.trending-products .tw-discount-badge,
.top-wear-card .tw-discount-badge,
.tw-discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #D7C1A1, #C8A96A);
  color: #3E2D24;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 8px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(200, 169, 106, 0.25);
  z-index: 4;
}

.top-wear .top-wear-meta,
.bottom-wear .top-wear-meta,
.foot-wear .top-wear-meta,
.trending-products .top-wear-meta,
.top-wear-card .top-wear-meta {
  padding-top: 10px;
}

.top-wear .top-wear-title,
.bottom-wear .top-wear-title,
.foot-wear .top-wear-title,
.trending-products .top-wear-title,
.top-wear-card .top-wear-title {
  font-size: 16px;
  line-height: 1.35;
  color: #111827;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 18px;
}

.top-wear .top-wear-price,
.bottom-wear .top-wear-price,
.foot-wear .top-wear-price,
.trending-products .top-wear-price,
.top-wear-card .top-wear-price {
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.top-wear .top-wear-price .tw-current,
.bottom-wear .top-wear-price .tw-current,
.foot-wear .top-wear-price .tw-current,
.trending-products .top-wear-price .tw-current,
.top-wear-card .top-wear-price .tw-current {
  font-weight: 800;
  color: #111827;
  font-size: 20px;
}

.top-wear .top-wear-price .tw-original,
.bottom-wear .top-wear-price .tw-original,
.foot-wear .top-wear-price .tw-original,
.trending-products .top-wear-price .tw-original,
.top-wear-card .top-wear-price .tw-original {
  font-size: 13px;
  color: #ef4444;
  text-decoration: line-through;
  font-weight: 600;
}

.top-wear .top-wear-price .tw-disc,
.bottom-wear .top-wear-price .tw-disc,
.foot-wear .top-wear-price .tw-disc,
.trending-products .top-wear-price .tw-disc,
.top-wear-card .top-wear-price .tw-disc,
.top-wear-price .tw-disc,
.tw-disc {
  font-size: 15px;
  color: #258b00;
  font-weight: 800;
}

.top-wear .wear-view-all,
.bottom-wear .wear-view-all,
.foot-wear .wear-view-all,
.wear-view-all {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 12px;
}

.top-wear .wear-view-all-btn,
.bottom-wear .wear-view-all-btn,
.foot-wear .wear-view-all-btn,
.wear-view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 26px;
  border-radius: 999px;
  border: 1.5px solid #111827;
  color: #111827;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.2px;
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.top-wear .wear-view-all-btn:hover,
.bottom-wear .wear-view-all-btn:hover,
.foot-wear .wear-view-all-btn:hover,
.wear-view-all-btn:hover {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.22);
}

.wear-view-all-btn i,
.wear-view-all-btn .view-all-arrow {
  display: inline-block;
  font-size: 13.5px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.wear-view-all-btn:hover i,
.wear-view-all-btn:hover .view-all-arrow {
  transform: translateX(6px);
  animation: viewAllArrowNudge 0.8s ease-in-out infinite alternate;
}

/* Fallback if no <i> icon is present in plain text View All button */
.wear-view-all-btn:not(:has(i))::after {
  content: '→';
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  margin-left: 4px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wear-view-all-btn:not(:has(i)):hover::after {
  transform: translateX(6px);
  animation: viewAllArrowNudge 0.8s ease-in-out infinite alternate;
}

@keyframes viewAllArrowNudge {
  0% {
    transform: translateX(3px);
  }

  100% {
    transform: translateX(8px);
  }
}

@media (max-width: 768px) {

  .top-wear,
  .bottom-wear,
  .foot-wear {
    padding: 16px 0;
  }

  .top-wear .top-wear-header h2,
  .bottom-wear .top-wear-header h2,
  .foot-wear .top-wear-header h2 {
    font-size: 28px;
  }

  .top-wear .top-wear-tabs,
  .bottom-wear .top-wear-tabs,
  .foot-wear .top-wear-tabs {
    justify-content: flex-start;
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .top-wear .wear-tabs-wrap,
  .bottom-wear .wear-tabs-wrap,
  .foot-wear .wear-tabs-wrap {
    margin-bottom: 18px;
  }

  .top-wear .wear-tabs-wrap::before,
  .bottom-wear .wear-tabs-wrap::before,
  .foot-wear .wear-tabs-wrap::before,
  .top-wear .wear-tabs-wrap::after,
  .bottom-wear .wear-tabs-wrap::after,
  .foot-wear .wear-tabs-wrap::after {
    display: none;
  }

  .top-wear .top-wear-grid,
  .bottom-wear .top-wear-grid,
  .foot-wear .top-wear-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .top-wear .top-wear-price .tw-current,
  .bottom-wear .top-wear-price .tw-current,
  .foot-wear .top-wear-price .tw-current {
    font-size: 17px;
  }

  .top-wear .top-wear-price .tw-original,
  .bottom-wear .top-wear-price .tw-original,
  .foot-wear .top-wear-price .tw-original {
    font-size: 12px;
  }

  .top-wear .top-wear-price .tw-disc,
  .bottom-wear .top-wear-price .tw-disc,
  .foot-wear .top-wear-price .tw-disc {
    font-size: 11px;
  }

  .top-wear .wear-view-all,
  .bottom-wear .wear-view-all,
  .foot-wear .wear-view-all {
    justify-content: center;
  }

  /* Deal Badge & Timer on Mobile Screen */
  .sh-deal-ribbon {
    top: 8px !important;
    left: 8px !important;
    padding: 3px 8px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.4px !important;
    border-radius: 4px !important;
    line-height: 1.2 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
  }

  .sh-deal-countdown {
    bottom: 8px !important;
    left: 8px !important;
    padding: 3.5px 8px !important;
    gap: 5px !important;
    border-radius: 6px !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
    max-width: calc(100% - 16px) !important;
  }

  .sh-deal-countdown-label {
    font-size: 9px !important;
    letter-spacing: 0.2px !important;
    opacity: 0.9 !important;
    font-weight: 600 !important;
  }

  .sh-deal-timer {
    font-size: 10px !important;
    letter-spacing: 0.3px !important;
    font-weight: 800 !important;
    color: #DFCA9B !important;
  }

  .home-page .section-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    flex-wrap: nowrap;
  }

  .home-page .section-header h2 {
    padding-left: 0;
    min-width: 0;
  }

  .home-page .section-header h2::before {
    display: none;
  }

  .home-page .section-header .view-all {
    align-self: auto;
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* Mobile-friendly filter tabs (All/Women/Men/Accessories) */
.home-page .filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.home-page .filter-tabs::-webkit-scrollbar {
  display: none;
}

.home-page .filter-tabs .tab-btn {
  flex: 0 0 auto;
  padding: 8px 14px;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tabs .tab-btn {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 14px;
    white-space: nowrap;
  }
}

/* Banner polish */
.banner-promo .banner-content {
  border: 1px solid #f1f3f5;
}

/* ===== Home page navbar search ===== */
.home-page .nav-wrapper {
  gap: 16px;
}

.home-page .search-container {
  flex: 0 0 340px;
}

.home-page .search-wrapper {
  position: relative;
}

.home-page .search-input {
  border: 2px solid #e9ecef;
  border-radius: 25px;
  padding: 10px 40px 10px 16px;
  background: #f8f9fa;
}

.home-page .search-input:focus {
  border-color: #C8A96A;
  box-shadow: 0 0 0 3px rgba(200, 169, 106, .1);
  background: #fff;
}

.home-page .search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;
}

.home-page .search-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 8px 0;
  max-height: 320px;
  overflow-y: auto;
}

.home-page .search-suggestion-item {
  padding: 10px 14px;
  cursor: pointer;
}

.home-page .search-suggestion-item:hover {
  background: #f8f9fa;
}

@media (max-width: 1200px) {
  .home-page .search-container {
    flex: 0 0 300px;
  }
}

@media (max-width: 992px) {
  .home-page .search-container {
    flex: 0 0 260px;
  }
}

/* ===== Skeleton (shared with product.html) ===== */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
  display: block;
}

.skeleton-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.skeleton-image-container {
  position: relative;
  background: #f8f9fa;
  height: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.skeleton-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.skeleton-info {
  padding: 16px;
}

.skeleton-category {
  width: 60px;
  height: 12px;
  margin-bottom: 6px;
  border-radius: 4px;
}

.skeleton-title {
  width: 85%;
  height: 16px;
  margin-bottom: 4px;
  border-radius: 4px;
}

.skeleton-title-2 {
  width: 65%;
  height: 16px;
  margin-bottom: 8px;
  border-radius: 4px;
}

.skeleton-price-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.skeleton-current-price {
  width: 60px;
  height: 18px;
  border-radius: 4px;
}

.skeleton-original-price {
  width: 45px;
  height: 14px;
  border-radius: 4px;
}

.skeleton-actions {
  display: flex;
  gap: 8px;
}

.skeleton-btn-visit {
  flex: 1;
  height: 40px;
  border-radius: 8px;
}

.skeleton-btn-favorite {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.home-page #skeleton-loader .skeleton-card.home-recent-skeleton {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.home-page #skeleton-loader .skeleton-recent-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
}

.home-page #skeleton-loader .skeleton-recent-meta {
  padding-top: 10px;
}

.home-page #skeleton-loader .skeleton-recent-title {
  width: 86%;
  height: 16px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.home-page #skeleton-loader .skeleton-recent-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.home-page #skeleton-loader .skeleton-recent-price {
  width: 70px;
  height: 18px;
  border-radius: 4px;
}

.home-page #skeleton-loader .skeleton-recent-oprice {
  width: 52px;
  height: 14px;
  border-radius: 4px;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #4d2600;
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.wishlist-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0;
}

.wishlist-badge i {
  font-size: 18px;
  color: #111827;
}

.wishlist-badge.favorited i,
.wishlist-badge.in-wishlist i {
  color: #e3342f !important;
}

.discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #D7C1A1, #C8A96A);
  color: #3E2D24;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(200, 169, 106, 0.3);
}

.product-rating {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 4px 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.rating-star {
  color: #ffa500;
  font-size: 10px;
}

.quick-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.product-card:hover .quick-actions {
  opacity: 1;
}

.quick-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.quick-btn:hover {
  background: #e74c3c;
  color: white;
  transform: scale(1.1);
}

/* Favorited quick heart state */
.quick-btn.favorited {
  background: #e74c3c;
  color: #fff;
}

.product-info {
  padding: 16px;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
}

.product-category {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.product-stock {
  margin-bottom: 8px;
}

.stock-status {
  font-size: 12px;
  font-weight: 600;
}

.stock-status.in-stock {
  color: #27ae60;
  /* green */
}

.stock-status.low-stock {
  color: #e74c3c;
  /* red */
}

.stock-status.out-stock {
  color: #999;
  /* gray */
}

.floating-checkout-banner {
  --floating-checkout-offset: 6px;
  position: fixed;
  left: 50%;
  bottom: calc(var(--floating-checkout-offset) + env(safe-area-inset-bottom));
  width: min(520px, calc(100vw - 24px));
  z-index: 12000;
  transform: translate(-50%, calc(100% + 14px));
  opacity: 0;
  pointer-events: none;
  transition: transform 360ms cubic-bezier(.22, .78, .22, 1), opacity 240ms ease;
  will-change: transform, width, opacity;
}

.floating-checkout-banner.show {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.floating-checkout-banner__shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 10px 14px 8px;
  color: #16120F;
  background: linear-gradient(180deg, rgba(253, 248, 242, 0.98), rgba(245, 235, 224, 0.98));
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 16px 36px rgba(40, 27, 20, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  will-change: transform, border-radius, box-shadow, opacity;
}

.floating-checkout-banner__shell::before {
  content: "";
  position: absolute;
  inset: auto -12% -46% 48%;
  height: 88px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, rgba(212, 175, 55, 0.08) 40%, transparent 74%);
  filter: blur(16px);
  pointer-events: none;
}

.floating-checkout-banner__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.55), transparent 34%, transparent 68%, rgba(255, 255, 255, 0.22));
  pointer-events: none;
}

.floating-checkout-banner__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  will-change: transform, opacity;
}

.floating-checkout-banner__main {
  min-width: 0;
}

.floating-checkout-banner__status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.floating-checkout-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #4d2600;
  color: #f0d5a0;
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.floating-checkout-banner__eyebrow i {
  font-size: 11px;
}

.floating-checkout-banner__target {
  color: #6B3F1D;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.floating-checkout-banner__headline {
  margin-top: 5px;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.019em;
  color: #4f2b14;
  text-wrap: balance;
}

.floating-checkout-banner__headline strong {
  color: #10b981;
  font-weight: 800;
}

.floating-checkout-banner__meta {
  margin-top: 4px;
  color: rgba(79, 43, 20, 0.68);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-checkout-banner__progress-track {
  position: relative;
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(77, 38, 0, 0.15);
  box-shadow: inset 0 1px 3px rgba(40, 27, 20, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  will-change: transform, opacity;
}

.floating-checkout-banner__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #4d2600 0%, #d4af37 50%, #10b981 100%);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.65), 0 0 18px rgba(16, 185, 129, 0.45);
  transition: width 420ms cubic-bezier(.2, .8, .2, 1), filter 220ms ease;
  animation: progressBarGlowPulse 2s ease-in-out infinite alternate;
}

@keyframes progressBarGlowPulse {
  0% {
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5), 0 0 14px rgba(16, 185, 129, 0.3);
  }

  100% {
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.85), 0 0 22px rgba(16, 185, 129, 0.65);
  }
}

.floating-checkout-banner__progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  width: 28px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0));
  filter: blur(1px);
  animation: floatingCheckoutSweep 1.8s linear infinite;
}

.floating-checkout-banner__side {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.floating-checkout-banner__cart-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.floating-checkout-banner__cart-copy {
  display: grid;
  gap: 2px;
  text-align: right;
}

.floating-checkout-banner__cart-label {
  color: rgba(79, 43, 20, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-checkout-banner__cart-meta {
  font-size: 10px;
  font-weight: 700;
  color: #4f2b14;
  white-space: nowrap;
}

.floating-checkout-banner__thumbs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.floating-checkout-banner__thumb {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(139, 69, 19, 0.16);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 14px rgba(55, 28, 12, 0.12);
}

.floating-checkout-banner__thumb+.floating-checkout-banner__thumb {
  margin-left: -10px;
}

.floating-checkout-banner__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-checkout-banner__thumb--more {
  font-size: 11px;
  font-weight: 800;
  color: #4f2b14;
}

.floating-checkout-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 14px;
  background: #4d2600;
  border: 1px solid #d4af37;
  color: #f0d5a0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(77, 38, 0, 0.3);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease, opacity 180ms ease, visibility 180ms ease;
}

.floating-checkout-banner__button:hover {
  background: #6b3000;
  color: #ffffff;
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 12px 26px rgba(77, 38, 0, 0.45);
}

.floating-checkout-banner__button i {
  font-size: 11px;
}

.floating-checkout-banner.is-unlocked .floating-checkout-banner__shell {
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(247, 240, 226, 0.98));
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 16px 38px rgba(40, 27, 20, 0.28), 0 0 20px rgba(212, 175, 55, 0.2);
}

.floating-checkout-banner.is-unlocked .floating-checkout-banner__progress-fill {
  background: linear-gradient(90deg, #4d2600 0%, #d4af37 50%, #10b981 100%);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8), 0 0 20px rgba(16, 185, 129, 0.6);
}

.floating-checkout-banner.is-unlocked .floating-checkout-banner__headline strong {
  color: #10b981;
}


.floating-checkout-banner.pulse .floating-checkout-banner__shell {
  animation: floatingCheckoutPulse 620ms ease;
}

@keyframes floatingCheckoutPulse {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.015);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes floatingCheckoutSweep {
  0% {
    transform: translateX(-4px);
    opacity: 0;
  }

  35% {
    opacity: 0.95;
  }

  100% {
    transform: translateX(18px);
    opacity: 0;
  }
}

@keyframes floatingCheckoutOrb {
  0% {
    box-shadow:
      0 0 0 0 rgba(212, 165, 116, 0.4),
      0 24px 42px rgba(36, 18, 11, 0.28),
      0 10px 22px rgba(200, 169, 106, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow:
      0 0 0 15px rgba(212, 165, 116, 0),
      0 28px 46px rgba(36, 18, 11, 0.32),
      0 14px 28px rgba(200, 169, 106, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translate(-50%, calc(-50% - 6px)) scale(1.02);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(212, 165, 116, 0),
      0 24px 42px rgba(36, 18, 11, 0.28),
      0 10px 22px rgba(200, 169, 106, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 767.98px) {
  .floating-checkout-banner {
    width: calc(100vw - 20px);
  }

  .floating-checkout-banner__shell {
    border-radius: 18px;
    padding: 8px 10px 7px;
  }

  .floating-checkout-banner__content {
    gap: 8px;
  }

  .floating-checkout-banner__headline {
    font-size: 14px;
    margin-top: 4px;
  }

  .floating-checkout-banner__target {
    font-size: 9px;
  }

  .floating-checkout-banner__meta {
    font-size: 10px;
    margin-top: 2px;
  }

  .floating-checkout-banner__thumb {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .floating-checkout-banner__button {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }

  .floating-checkout-banner__cart-meta {
    font-size: 11px;
  }

  .floating-checkout-banner__progress-track {
    height: 4px;
    margin-top: 8px;
  }
}

@media (max-width: 479.98px) {
  .floating-checkout-banner {
    width: calc(100vw - 18px);
  }

  .floating-checkout-banner__shell {
    border-radius: 16px;
    padding: 7px 9px 6px;
  }

  .floating-checkout-banner__content {
    gap: 6px;
  }

  .floating-checkout-banner__status-row {
    gap: 5px;
    margin-bottom: 0;
  }

  .floating-checkout-banner__target {
    display: none;
  }

  .floating-checkout-banner__eyebrow {
    min-height: 20px;
    padding: 0 7px;
    font-size: 8px;
  }

  .floating-checkout-banner__headline {
    font-size: 12px;
    line-height: 1.04;
  }

  .floating-checkout-banner__meta {
    font-size: 9px;
    margin-top: 1px;
  }

  .floating-checkout-banner__cart-copy {
    display: none;
  }

  .floating-checkout-banner__thumb {
    width: 26px;
    height: 26px;
    border-radius: 9px;
  }

  .floating-checkout-banner__button {
    min-width: 58px;
    min-height: 28px;
    padding: 0 8px;
    border-radius: 11px;
    font-size: 9px;
  }

  .floating-checkout-banner__thumb+.floating-checkout-banner__thumb {
    margin-left: -7px;
  }

  .floating-checkout-banner__progress-track {
    height: 3px;
    margin-top: 6px;
  }
}

.floating-checkout-banner__mini {
  position: absolute;
  top: calc(50% - 2px);
  left: 28%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: var(--floating-checkout-mini-width, 50px);
  height: 50px;
  padding: 0;
  border-radius: 50%;
  text-decoration: none;
  color: #fffaf6;
  background:
    radial-gradient(circle at 18% 24%, transparent 38%),
    #4d2600;
  border: 1px solid rgba(255, 246, 236, 0.22);
  box-shadow:
    0 20px 40px rgba(47, 21, 7, 0.32),
    0 12px 24px rgba(92, 45, 10, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  opacity: 0;
  pointer-events: none;
  overflow: visible;
  white-space: nowrap;
  transform: translate3d(-50%, calc(-50% + 16px), 0) scale(0.78);
  transition:
    opacity 240ms ease,
    top 360ms cubic-bezier(.2, .9, .2, 1),
    left 420ms cubic-bezier(.2, .9, .2, 1),
    width 420ms cubic-bezier(.2, .9, .2, 1),
    transform 420ms cubic-bezier(.2, .9, .2, 1),
    height 280ms ease,
    box-shadow 280ms ease,
    filter 280ms ease,
    border-radius 320ms ease,
    padding 320ms ease,
    gap 280ms ease,
    background 280ms ease;
  z-index: 2;
  will-change: transform, left, top, width, opacity;
}

.floating-checkout-banner__mini:hover {
  color: #fffaf6;
  text-decoration: none;
}

/* Luxury Icon Morph Stage */
.floating-checkout-banner__mini-icon-stage {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.floating-checkout-banner__mini-icon-stage .mini-icon-bag,
.floating-checkout-banner__mini-icon-stage .mini-icon-arrow {
  position: absolute;
  font-size: 19px;
  color: #ffffff;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.floating-checkout-banner__mini-icon-stage .mini-icon-bag {
  animation: luxuryBagMorph 10s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-checkout-banner__mini-icon-stage .mini-icon-arrow {
  animation: luxuryArrowMorph 10s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes luxuryBagMorph {

  0%,
  75% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0px);
  }

  78% {
    opacity: 0;
    transform: scale(0.35) rotate(-18deg);
    filter: blur(2px);
  }

  96% {
    opacity: 0;
    transform: scale(0.35) rotate(18deg);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0px);
  }
}

@keyframes luxuryArrowMorph {

  0%,
  75% {
    opacity: 0;
    transform: scale(0.35) translateX(-14px);
    filter: blur(2px);
  }

  79% {
    opacity: 1;
    transform: scale(1.1) translateX(0px);
    filter: blur(0px);
  }

  83% {
    transform: scale(1) translateX(0px);
  }

  88% {
    transform: scale(1.05) translateX(3px);
  }

  94% {
    opacity: 1;
    transform: scale(1) translateX(0px);
    filter: blur(0px);
  }

  98%,
  100% {
    opacity: 0;
    transform: scale(0.35) translateX(14px);
    filter: blur(2px);
  }
}

.floating-checkout-banner__mini-label {
  max-width: 120px;
  overflow: visible;
  opacity: 1;
  transform: translateX(0);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  transition: transform 260ms ease, letter-spacing 220ms ease, filter 220ms ease;
}

.floating-checkout-banner__mini-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-8px);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: opacity 280ms ease, transform 340ms cubic-bezier(0.34, 1.56, 0.64, 1), width 340ms ease;
}

.floating-checkout-banner__mini-arrow::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 11px;
  color: rgba(255, 250, 246, 0.9);
}

.floating-checkout-banner__mini-count {
  display: none;
}

@media (min-width: 1100px) {

  /* Desktop: Slimmer professional progress bar */
  .floating-checkout-banner {
    width: min(640px, calc(100vw - 40px));
  }

  .floating-checkout-banner__shell {
    padding: 8px 14px 6px;
    border-radius: 18px;
  }

  .floating-checkout-banner__content {
    gap: 16px;
  }

  .floating-checkout-banner__headline {
    font-size: clamp(14px, 1.4vw, 18px);
    margin-top: 4px;
  }

  .floating-checkout-banner__meta {
    font-size: 11px;
    margin-top: 2px;
  }

  .floating-checkout-banner__progress-track {
    height: 8px;
    margin-top: 6px;
  }

  .floating-checkout-banner__button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  .floating-checkout-banner__thumb {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .chatbase-message-bubbles,
  [class*="chatbase-message-bubbles"] {
    transition:
      opacity 220ms ease,
      transform 280ms cubic-bezier(.22, .85, .22, 1),
      visibility 0s linear 0s;
  }

  body.floating-checkout-chatbase-hidden .chatbase-message-bubbles,
  body.floating-checkout-chatbase-hidden [class*="chatbase-message-bubbles"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px) scale(0.94);
    transition:
      opacity 220ms ease,
      transform 280ms cubic-bezier(.22, .85, .22, 1),
      visibility 0s linear 220ms;
  }

  .floating-checkout-banner {
    --floating-checkout-mini-width: 50px;
    --floating-checkout-expanded-width: 520px;
    --floating-checkout-dock-x: 0px;
    --floating-checkout-expanded-shift: 0px;
    bottom: calc(var(--floating-checkout-offset) + env(safe-area-inset-bottom) + 14px);
    transition: width 420ms cubic-bezier(.2, .9, .2, 1), transform 420ms cubic-bezier(.2, .9, .2, 1), opacity 220ms ease;
  }

  .floating-checkout-banner__shell {
    transition: border-radius 380ms cubic-bezier(.2, .9, .2, 1), padding 380ms cubic-bezier(.2, .9, .2, 1), box-shadow 280ms ease, background 280ms ease, min-height 380ms ease, border-color 280ms ease;
  }

  .floating-checkout-banner__content,
  .floating-checkout-banner__progress-track {
    transition: opacity 80ms ease, transform 120ms cubic-bezier(.2, .9, .2, 1), max-height 120ms ease, margin-top 120ms ease;
  }

  .floating-checkout-banner[data-floating-state="floating-button"]:is(:hover, :focus-within) .floating-checkout-banner__content,
  .floating-checkout-banner[data-floating-state="floating-button"]:is(:hover, :focus-within) .floating-checkout-banner__progress-track {
    transition: opacity 280ms ease 120ms, transform 380ms cubic-bezier(.2, .9, .2, 1) 40ms, max-height 380ms ease, margin-top 380ms ease;
  }

  .floating-checkout-banner__content {
    max-height: 180px;
    overflow: hidden;
  }

  .floating-checkout-banner__progress-track {
    max-height: 12px;
    overflow: hidden;
  }

  .floating-checkout-banner[data-floating-state="hidden"] {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(100% + 28px));
  }

  .floating-checkout-banner[data-floating-state="hidden-right"] {
    width: var(--floating-checkout-mini-width);
    opacity: 0;
    pointer-events: none;
    transform: translate(calc(50vw + 50%), 0);
  }

  .floating-checkout-banner[data-floating-state="progress-active"] {
    width: min(520px, calc(100vw - 24px));
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .floating-checkout-banner[data-floating-state="transforming"],
  .floating-checkout-banner[data-floating-state="floating-button"] {
    width: var(--floating-checkout-mini-width);
    opacity: 1;
    pointer-events: auto;
    transform: translate(calc(-50% + var(--floating-checkout-dock-x)), 0);
  }

  .floating-checkout-banner[data-floating-state="hidden-right"] .floating-checkout-banner__shell,
  .floating-checkout-banner[data-floating-state="transforming"] .floating-checkout-banner__shell,
  .floating-checkout-banner[data-floating-state="floating-button"] .floating-checkout-banner__shell {
    border-radius: 30px;
    padding: 0;
    min-height: 50px;
    overflow: visible;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .floating-checkout-banner.is-unlocked[data-floating-state="hidden-right"] .floating-checkout-banner__shell,
  .floating-checkout-banner.is-unlocked[data-floating-state="transforming"] .floating-checkout-banner__shell,
  .floating-checkout-banner.is-unlocked[data-floating-state="floating-button"] .floating-checkout-banner__shell {
    background: transparent;
  }

  .floating-checkout-banner[data-floating-state="hidden-right"] .floating-checkout-banner__shell::before,
  .floating-checkout-banner[data-floating-state="transforming"] .floating-checkout-banner__shell::before,
  .floating-checkout-banner[data-floating-state="floating-button"] .floating-checkout-banner__shell::before,
  .floating-checkout-banner[data-floating-state="hidden-right"] .floating-checkout-banner__shell::after,
  .floating-checkout-banner[data-floating-state="transforming"] .floating-checkout-banner__shell::after,
  .floating-checkout-banner[data-floating-state="floating-button"] .floating-checkout-banner__shell::after {
    opacity: 0;
  }

  .floating-checkout-banner[data-floating-state="hidden-right"] .floating-checkout-banner__content,
  .floating-checkout-banner[data-floating-state="transforming"] .floating-checkout-banner__content,
  .floating-checkout-banner[data-floating-state="floating-button"] .floating-checkout-banner__content {
    opacity: 0;
    pointer-events: none;
    transform: translateX(14px) scale(0.985);
    max-height: 0;
    width: max-content;
  }

  .floating-checkout-banner[data-floating-state="hidden-right"] .floating-checkout-banner__progress-track,
  .floating-checkout-banner[data-floating-state="transforming"] .floating-checkout-banner__progress-track,
  .floating-checkout-banner[data-floating-state="floating-button"] .floating-checkout-banner__progress-track {
    opacity: 0;
    transform: translateX(14px) scaleX(0.82);
    transform-origin: right center;
    max-height: 0;
    margin-top: 0;
  }

  .floating-checkout-banner[data-floating-state="hidden-right"] .floating-checkout-banner__mini,
  .floating-checkout-banner[data-floating-state="transforming"] .floating-checkout-banner__mini,
  .floating-checkout-banner[data-floating-state="floating-button"] .floating-checkout-banner__mini {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }

  .floating-checkout-banner[data-floating-state="hidden-right"] .floating-checkout-banner__mini,
  .floating-checkout-banner[data-floating-state="transforming"] .floating-checkout-banner__mini {
    transform: translate(-50%, -50%) scale(0.88);
    filter: saturate(1.08) brightness(1.04);
  }

  .floating-checkout-banner[data-floating-state="floating-button"] .floating-checkout-banner__mini {
    box-shadow:
      0 24px 42px rgba(36, 18, 11, 0.32),
      0 14px 28px rgba(92, 45, 10, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
    animation: floatingCheckoutOrb 2.8s ease-in-out infinite;
  }

  .floating-checkout-banner[data-floating-state="floating-button"]:is(:hover, :focus-within) {
    width: var(--floating-checkout-expanded-width);
    transform: translate(calc(-50% + var(--floating-checkout-expanded-shift)), -4px);
  }

  .floating-checkout-banner[data-floating-state="floating-button"]:is(:hover, :focus-within) .floating-checkout-banner__shell {
    border-radius: 20px;
    padding: 9px 14px 8px;
    min-height: 76px;
    overflow: hidden;
    background:
      radial-gradient(circle at 14% 18%, rgba(255, 223, 176, 0.26), transparent 34%),
      radial-gradient(circle at 92% 80%, rgba(255, 244, 220, 0.48), transparent 22%),
      linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(246, 235, 222, 0.98));
    border-color: rgba(139, 69, 19, 0.14);
    box-shadow: 0 18px 36px rgba(55, 28, 12, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .floating-checkout-banner.is-unlocked[data-floating-state="floating-button"]:is(:hover, :focus-within) .floating-checkout-banner__shell {
    background:
      radial-gradient(circle at 14% 18%, rgba(233, 255, 220, 0.22), transparent 34%),
      radial-gradient(circle at 92% 80%, rgba(255, 244, 220, 0.38), transparent 22%),
      linear-gradient(180deg, rgba(249, 255, 245, 0.98), rgba(234, 245, 229, 0.98));
  }

  .floating-checkout-banner[data-floating-state="floating-button"]:is(:hover, :focus-within) .floating-checkout-banner__shell::before,
  .floating-checkout-banner[data-floating-state="floating-button"]:is(:hover, :focus-within) .floating-checkout-banner__shell::after {
    opacity: 1;
  }

  .floating-checkout-banner[data-floating-state="floating-button"]:is(:hover, :focus-within) .floating-checkout-banner__content {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    max-height: 180px;
    width: 100%;
  }

  .floating-checkout-banner[data-floating-state="floating-button"]:is(:hover, :focus-within) .floating-checkout-banner__progress-track {
    opacity: 1;
    transform: translateX(0) scaleX(1);
    max-height: 12px;
    margin-top: 7px;
  }

  /* Elegantly fade and scale down the orb out of view, revealing the true flexbox UI beneath */
  .floating-checkout-banner[data-floating-state="floating-button"]:is(:hover, :focus-within) .floating-checkout-banner__mini {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.6);
    transition: opacity 160ms ease, transform 240ms cubic-bezier(.2, .9, .2, 1), visibility 0s linear 160ms;
  }
}

/* Out of Stock visual treatment — Professional Minimal Design */
.product-card.out-of-stock .product-img {
  filter: grayscale(40%) brightness(0.92);
  transition: filter 0.3s ease;
}

.product-card.out-of-stock:hover .product-img {
  filter: grayscale(20%) brightness(0.95);
}

/* Professional OOS badge — clean pill style (replaces loud ribbon) */
.product-card .oos-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  right: auto;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 5;
  pointer-events: none;
}

/* Dot indicator inside badge */
.product-card .oos-ribbon::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
}

.product-card.out-of-stock .btn-add-cart,
.product-card.out-of-stock .btn-quantity-increase {
  opacity: .5;
  pointer-events: none;
  filter: grayscale(0.5);
}

/* Generic OOS ribbon for any container (e.g., product detail) — same professional style */
.oos-ribbon {
  position: absolute;
  top: 12px !important;
  left: 12px;
  right: auto;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  z-index: 5;
  pointer-events: none;
}

.oos-ribbon::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: oosPulse 2s ease-in-out infinite;
}

@keyframes oosPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* Product detail OOS grayscale — gentle effect */
.pd-out-of-stock .main-product-image {
  filter: grayscale(30%) brightness(0.9);
  transition: filter 0.3s ease;
}

.current-price {
  font-size: 20px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.original-price {
  font-size: 14px;
  color: #ff0000;
  text-decoration: line-through;
}

.discount {
  font-size: 14px !important;
  color: #258b00 !important;
  font-family: 'Outfit', sans-serif;
}

.product-sizes {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.size-tag {
  padding: 2px 6px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 11px;
  color: #666;
}

.product-colors {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.product-meta {
  display: flex;

  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.delivery-info {
  color: #27ae60;
  font-weight: 500;
}


.product-actions {
  display: flex;
  gap: 8px;
}

.btn-add-cart {
  flex: 1;
  background: linear-gradient(135deg, #D7C1A1, #C8A96A) !important;
  color: #4A342A !important;
  border: 1px solid rgba(74, 52, 42, 0.4) !important;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-add-cart:hover {
  background: #3E2D24 !important;
  transform: translateY(-1px);
  color: #ffffff !important;
}

.btn-wishlist {
  width: 40px;
  height: 40px;
  border: 1px solid #C8A96A !important;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-wishlist:hover {
  background: #e74c3c;
  color: white;
  border-color: #e74c3c;
}

.btn-wishlist.favorited {
  background: #e74c3c;
  color: white;
  border-color: #e74c3c;
}

.btn-wishlist.favorited i,
.quick-btn.favorited i {
  color: #fff !important;
}

.home-contact-map {
  margin-top: 42px;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.home-contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(20%) contrast(1.02) saturate(1.02);
}

.home-contact-after-map {
  padding: 28px 0 54px;
  background:
    radial-gradient(1100px 360px at 10% 0%, rgba(255, 132, 0, 0.08), transparent 60%),
    radial-gradient(1100px 360px at 90% 10%, rgba(255, 55, 0, 0.08), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.home-contact-wrap {
  padding: 42px 0 14px;
  background: #faf7f4;
}

[data-theme="dark"] .home-contact-wrap,
body.dark-mode .home-contact-wrap {
  background:
    radial-gradient(1200px 500px at 15% 10%, rgba(215, 193, 161, 0.08), transparent 60%),
    radial-gradient(1200px 520px at 85% 20%, rgba(77, 38, 0, 0.5), transparent 62%),
    linear-gradient(180deg, var(--bg, #0f0805) 0%, #150a05 100%);
}

.home-contact-wrap.home-contact-quote {
  padding: 58px 0 18px;
}

.home-contact-quote .contact-quote-head {
  margin-bottom: 26px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-contact-quote .contact-kicker {
  margin-bottom: 6px;
  text-align: center;
}

.home-contact-quote .contact-quote-title {
  font-size: 50px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-align: center;
}

.home-contact-quote .contact-card {
  margin-top: 4px;
}

.home-contact-header {
  margin-bottom: 16px;
}

.home-contact-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
  margin: 0 0 8px;
}

.home-contact-sub {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  font-weight: 600;
  max-width: 720px;
}

.home-contact-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(10px);
  transform: translateZ(0);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.home-contact-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 6px;
}

.home-contact-card-sub {
  margin: 0 0 18px;
  color: #6b7280;
  font-size: 13px;
}

.home-contact-form .form-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(17, 24, 39, 0.85);
}

.home-contact-form .form-control {
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  padding: 12px 14px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.92);
}

.home-contact-form .form-control:focus {
  border-color: var(--home-contact-accent);
  box-shadow: 0 0 0 4px rgba(110, 26, 0, 0.12);
}

.home-contact-form .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}

.contact-form .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}

.contact-field-error {
  min-height: 0;
  margin-top: 0;
  font-size: 12px;
  font-weight: 700;
  color: #dc3545;
  transition: all 0.2s ease;
}

.contact-field-error:not(:empty) {
  min-height: 16px;
  margin-top: 4px;
}

.home-contact-submit {
  background: linear-gradient(135deg, #912d05, #532200);
  border: none;
  color: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: 0.2px;
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 14px 28px rgba(223, 33, 0, 0.18);
}

.home-contact-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.home-contact-submit .spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  animation: contactSpin 0.8s linear infinite;
}

.home-contact-form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: stretch;
}

.home-contact-wa-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: 1px solid #25D366 !important;
  color: #ffffff !important;
  background: #25D366 !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.22);
  transition: all 0.25s ease;
}

.home-contact-wa-btn i {
  font-size: 20px;
  color: #ffffff !important;
}

.home-contact-wa-btn:hover {
  background: #1da851 !important;
  border-color: #1da851 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.home-contact-wa-btn:active {
  transform: translateY(0);
}

.home-contact-form.is-submitting {
  position: relative;
  pointer-events: none;
  opacity: 0.92;
  filter: saturate(0.92);
}

.home-contact-form.is-submitting::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
}

.contact-submit-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.contact-submit-bubble {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.18);
}

.contact-submit-text {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: rgba(17, 24, 39, 0.82);
}

.contact-loader {
  width: 34px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.contact-loader span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4d2600;
  animation: contactDotPulse 850ms ease-in-out infinite;
}

.contact-loader span:nth-child(2) {
  animation-delay: 120ms;
}

.contact-loader span:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes contactDotPulse {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }

  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.home-contact-alert-premium {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.10);
}

.home-contact-alert-premium .ca-ico {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  color: #fff;
}

.home-contact-alert-premium.ca-success .ca-ico {
  background: linear-gradient(135deg, #16a34a, #0f766e);
}

.home-contact-alert-premium.ca-error .ca-ico {
  background: linear-gradient(135deg, #dc2626, #7f1d1d);
}

.home-contact-alert-premium.ca-warning .ca-ico {
  background: linear-gradient(135deg, #f59e0b, #b45309);
}

.home-contact-alert-premium .ca-title {
  font-weight: 900;
  color: rgba(17, 24, 39, 0.92);
  margin: 0 0 2px;
  font-size: 14px;
}

.contact-toast-container {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 99999;
  pointer-events: none;
}

.contact-toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 380px;
  margin-bottom: 12px;
  position: relative;
  animation: toastIn 220ms ease-out both;
}

.contact-toast-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: rgba(255, 255, 255, 0.65);
  color: rgba(17, 24, 39, 0.75);
  font-size: 18px;
  line-height: 26px;
  padding: 0;
  cursor: pointer;
}

@keyframes toastIn {
  0% {
    transform: translateY(-8px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.home-contact-alert-premium .ca-msg {
  margin: 0;
  color: rgba(17, 24, 39, 0.74);
  font-weight: 600;
  font-size: 13px;
}

.home-contact-alert-premium .ca-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  position: relative;
  transform: scale(0.85);
  animation: caPop 260ms ease-out both;
}

.home-contact-alert-premium.ca-success .ca-check {
  background: rgba(255, 255, 255, 0.22);
}

.home-contact-alert-premium .ca-check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

@keyframes caPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.home-contact-side-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  backdrop-filter: blur(10px);
}

@media (min-width: 992px) {
  .home-contact-side {
    position: relative;
  }

  .home-contact-side-card {
    position: static;
  }
}

.home-contact-side-block {
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(255, 255, 255, 0.62);
  margin-bottom: 12px;
}

.home-contact-side-block:last-child {
  margin-bottom: 0;
}

.home-contact-side-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.home-contact-side-ico {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #912d05, #532200);
  box-shadow: 0 12px 30px rgba(109, 40, 217, 0.22);
  flex: 0 0 40px;
}

.home-contact-side-title {
  font-size: 14px;
  font-weight: 900;
  color: #111827;
  margin: 0 0 8px;
}

.home-contact-side-text {
  margin: 0;
  color: rgba(17, 24, 39, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.home-contact-side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.home-contact-action-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  color: rgba(17, 24, 39, 0.86);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.10);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.home-contact-action-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.14);
}

.home-contact-action-chip i {
  color: #912d05;
}

.home-contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-contact-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #0f172a;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.home-contact-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.12);
}

@media (max-width: 991.98px) {
  .home-contact-title {
    font-size: 30px;
  }

  .home-contact-card {
    padding: 24px 18px;
  }

  .home-contact-side-card {
    padding: 24px 18px;
  }

  .home-contact-wrap.home-contact-quote {
    padding: 36px 0 16px;
  }

  .home-contact-quote .contact-quote-head {
    margin-bottom: 16px;
    text-align: center;
  }

  .home-contact-quote .contact-quote-title {
    font-size: 32px;
    line-height: 1.2;
    margin-top: 6px;
    letter-spacing: normal;
    text-align: center;
  }
}

@media (max-width: 767.98px) {

  .home-contact-wrap.home-contact-quote .container,
  .home-contact-wrap .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-contact-card {
    padding: 24px 20px;
    border-radius: 10px;
  }

  .home-contact-side-card {
    padding: 24px 20px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {

  .home-contact-wrap.home-contact-quote .container,
  .home-contact-wrap .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .home-contact-card {
    padding: 22px 18px;
  }
}

.home-contact-features {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.home-contact-feature-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f7e4c9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #a86b2d;
  position: relative;
}

.home-contact-icon i {
  font-size: 22px;
  line-height: 1;
}

.home-contact-feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0 0 4px;
}

.home-contact-feature-text p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.home-contact-marquee {
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.08);
}

.home-contact-marquee-track {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  width: max-content;
  animation: homeContactMarquee 18s linear infinite;
}

.home-contact-marquee:hover .home-contact-marquee-track {
  animation-play-state: paused;
}

.home-contact-marquee-item {
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(17, 24, 39, 0.78);
}

.home-contact-marquee-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #912d05, #532200);
  box-shadow: 0 10px 20px rgba(223, 33, 0, 0.14);
  flex: 0 0 7px;
}

@keyframes homeContactMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 991.98px) {
  .home-contact-map iframe {
    height: 360px;
  }

  .home-contact-features {
    flex-direction: column;
    gap: 18px;
  }
}

/* Cart quantity controls (shared with product.html) */
.cart-quantity-controls {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 5px 8px;
  flex: 1;
  justify-content: center;
}

.btn-quantity-decrease,
.btn-quantity-increase {
  width: 28px;
  height: 28px;
  border: none;
  background: #4d2600;
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.btn-quantity-decrease:hover,
.btn-quantity-increase:hover {
  background: #e55a2b;
  transform: scale(1.1);
}

.btn-quantity-decrease:active,
.btn-quantity-increase:active {
  transform: scale(0.95);
}

/* Ensure the numeric value is centered nicely */
.cart-quantity {
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
}

.cart-quantity {
  font-weight: 600;
  color: #333;
  min-width: 20px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 767px) {
  .cart-quantity-controls {
    padding: 3px 6px;
    gap: 6px;
  }

  .btn-quantity-decrease,
  .btn-quantity-increase {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .cart-quantity {
    font-size: 12px;
    min-width: 16px;
  }
}

/* Cart Icon */
.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 1px !important;
  right: -4px !important;
  background: #e74c3c !important;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: max(var(--floating-checkout-companion-bottom, 82px), 82px);
  right: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25d36500;
  color: white;
  text-decoration: none;
  font-size: 25px;
  transition: all 0.3s ease;
}

.floating-buttons a.call-button {
  background-color: #e74c3c;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

/* Mobile Search */
#mySearchToggle {
  font-size: 22px;
  margin-right: -480px;
}

.my-search-overlay {
  display: none;
  height: 70px;
  display: flex !important;
}

.my-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

#mySearchInput {
  font-size: 18px;
  padding: 10px 40px 10px 16px;
  width: 100%;
}

.my-search-close {
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 22px;
  color: #333;
  cursor: pointer;
  margin: 0px;
  padding: 0;
}

/* Skeleton Loader */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.2s ease-in-out infinite;
  border-radius: 4px;
  display: block;
}

.skeleton-img {
  width: 100%;
  height: 300px;
  border-radius: 12px 12px 0 0;
  margin-bottom: 0.5rem;
}

.skeleton-tag {
  width: 60px;
  height: 18px;
  margin-bottom: 8px;
  border-radius: 4px;
}

.skeleton-title {
  width: 80%;
  height: 20px;
  margin-bottom: 5px;
  border-radius: 4px;
}

.skeleton-price {
  width: 50%;
  height: 18px;
  margin-bottom: 12px;
  border-radius: 4px;
}

.skeleton-btn {
  width: 100%;
  height: 40px;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-container {
    padding: 15px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
  }

  .filters-sidebar {
    display: none !important;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .my-search-overlay {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .main-container {
    padding: 3px 10px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }

  .products-header {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .sort-dropdown {
    width: 100%;
  }

  .product-image-container {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .product-title {
    font-size: 15px;
  }

  .current-price {
    font-size: 16px;
  }

  #mySearchToggle {
    margin-right: -220px;
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
  }

  .product-image-container {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .product-info {
    padding: 12px;
  }

  .product-title {
    font-size: 14px;
  }

  .current-price {
    font-size: 15px;
  }

  .btn-add-cart {
    padding: 8px 9px;
    font-size: 13px;
  }

  .btn-wishlist {
    width: 35px;
    height: 35px;
  }

  #mySearchToggle {
    margin-right: -140px;
  }
}

@media (max-width: 400px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-image-container {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .product-title {
    font-size: 13px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .current-price {
    font-size: 12px;
  }

  .original-price {
    font-size: 12px;
  }

  .discount {
    font-size: 10px;
  }

  .btn-add-cart {
    font-size: 11px;
  }

  .sh-deal-ribbon {
    top: 6px !important;
    left: 6px !important;
    padding: 2.5px 7px !important;
    font-size: 9.5px !important;
    letter-spacing: 0.3px !important;
    border-radius: 4px !important;
  }

  .sh-deal-countdown {
    bottom: 6px !important;
    left: 6px !important;
    padding: 3px 7px !important;
    gap: 4px !important;
    border-radius: 5px !important;
    font-size: 9.5px !important;
    max-width: calc(100% - 12px) !important;
  }

  .sh-deal-countdown-label {
    font-size: 8.5px !important;
  }

  .sh-deal-timer {
    font-size: 9.5px !important;
    letter-spacing: 0.2px !important;
  }
}

/* Responsive Destry Navbar Styles */
@media (max-width: 992px) {
  .destry-navbar .nav-menu {
    display: none;
  }

  .destry-navbar .hamburger {
    display: flex;
  }

  .navbar-search-container {
    flex: 0 0 250px;
    margin: 0 15px;
  }
}

@media (max-width: 768px) {
  .destry-navbar .nav-wrapper {
    height: 70px;
    gap: 20px;
  }

  .destry-navbar .logo-text {
    font-size: 24px;
  }

  .destry-navbar .nav-icons {
    gap: 15px;
  }

  .destry-navbar .nav-icon-btn {
    font-size: 16px;
  }

  .navbar-search-container {
    flex: 0 0 200px;
    margin: 0 10px;
  }

  .navbar-search-input {
    padding: 10px 40px 10px 12px;
    font-size: 13px;
  }

  .search-dropdown {
    right: -50px;
  }
}

@media (max-width: 480px) {
  .destry-navbar .container {
    padding: 0 15px;
  }

  .destry-navbar .nav-wrapper {
    gap: 15px;
  }

  .destry-navbar .logo-text {
    font-size: 22px;
  }

  .destry-navbar .nav-icons {
    gap: 12px;
  }

  .navbar-search-container {
    flex: 0 0 150px;
    margin: 0 5px;
  }

  .navbar-search-input {
    padding: 8px 35px 8px 10px;
    font-size: 12px;
  }

  .search-dropdown {
    right: -80px;
    left: -80px;
  }

  .search-result-title {
    font-size: 13px;
  }

  .search-result-category {
    font-size: 11px;
  }

  .search-result-price {
    font-size: 12px;
  }
}

/* Hero full-width Swiper slider */
.hero-slider {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff2e6;
}

.hero-slider .swiper {
  width: 100%;
  height: auto;
  min-height: 360px;
  position: relative;
  background: transparent;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}

.hero-slider .swiper-slide {
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider .swiper-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
}

.hero-slider .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(10, 37, 64, 0.8) 0%, rgba(10, 37, 64, 0.45) 45%, rgba(10, 37, 64, 0.2) 70%, rgba(10, 37, 64, 0.08) 100%);
}

.hero-slider .hero-overlay-content {
  color: #fff;
  max-width: 720px;
  padding: 24px 0;
}

.hero-slider .hero-overlay-content .badge {
  background: var(--orange);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 14px;
}

.hero-slider .hero-overlay-content h1 {
  color: #fff;
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-slider .hero-overlay-content p {
  color: #e9ecef;
  font-size: 16px;
  margin-bottom: 22px;
}

.hero-slider .hero-overlay {
  display: none !important;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  z-index: 5;
  color: #fff;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.32);
}

.hero-slider .heroSwiper .swiper-pagination {
  z-index: 5;
  bottom: 14px !important;
  left: 0;
  right: 0;
}

.hero-pagination {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.hero-slider .heroSwiper .swiper-pagination {
  position: static !important;
  bottom: auto !important;
  left: 0 !important;
  right: 0 !important;
  margin: 28px auto 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
}

.hero-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.35);
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
  background: #3E2D24;
  width: 22px;
  border-radius: 999px;
}

@media (max-width: 992px) {
  .hero-slider .swiper {
    height: auto;
    min-height: 0;
  }

  .hero-slider .swiper-wrapper,
  .hero-slider .swiper-slide {
    height: 100%;
  }

  .hero-slider .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .hero-slider .hero-overlay-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 599px) {
  .hero-slider {
    padding: 0;
  }

  .hero-slider .swiper {
    height: auto;
    min-height: 0;
    border-radius: 0;
    overflow: hidden;
  }

  .hero-slider .swiper-wrapper,
  .hero-slider .swiper-slide {
    height: auto;
  }

  .hero-slider .swiper-slide picture {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-slider .hero-overlay {
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.25) 20%, rgba(10, 37, 64, 0.55) 70%, rgba(10, 37, 64, 0.8) 100%);
  }

  .hero-slider .hero-overlay-content {
    padding-bottom: 28px;
  }

  .hero-slider .hero-overlay-content h1 {
    font-size: 28px;
  }

  .hero-slider .hero-overlay-content p {
    font-size: 14px;
  }

  .hero-slider .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    display: none;
  }
}

/* Collections slider under hero */
.collections-slider {
  padding: 12px 0 24px;
  background: #fff2e6;
}

.collections-slider .collections-title {
  text-align: center;
  margin: 0 0 8px;
  color: #000000;
  font-family: 'Outfit', sans-serif;
  letter-spacing: .2px;
  font-weight: 400;
  line-height: 1.25;
  font-size: 48px;
}

.secdivid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.imgsecdiv {
  width: 500px;
  max-width: 90%;
  height: auto;
  display: block;
}

/* Swiper Wrapper - Positioned container for zero layout shift */
.collections-swiper-wrapper {
  position: relative;
  padding: 0 12px;
  min-height: 320px;
}

@media (min-width: 992px) {
  .collections-slider .container {
    max-width: 95% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .collections-swiper-wrapper {
    padding: 0 8px !important;
  }

  .collections-nav-btn.prev {
    left: -8px !important;
  }

  .collections-nav-btn.next {
    right: -8px !important;
  }
}

@media (min-width: 1400px) {
  .collections-slider .container {
    max-width: 94% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.collectionsSwiper {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.collectionsSwiper.is-loading {
  opacity: 0;
  pointer-events: none;
}

.collectionsSwiper.is-ready {
  opacity: 1;
  pointer-events: auto;
}

.collectionsSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.collectionsSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Premium Category Card Styles — Pointed Islamic Arch Design */
.collection-chip {
  width: 100% !important;
  height: 320px !important;
  position: relative !important;
  text-decoration: none !important;
  user-select: none !important;
  display: block !important;
  /* Rich Metallic Gold Arch Frame */
  background: linear-gradient(135deg, #d8b257 0%, #b8943e 35%, #f4dc94 65%, #9b7729 100%) !important;
  clip-path: url(#islamicArchClip) !important;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), filter 0.35s ease !important;
  margin: 0 auto;
  padding: 0 !important;
  filter: drop-shadow(0 6px 14px rgba(62, 45, 36, 0.18)) !important;
}

/* Inner Content Card (inset 4px inside the gold frame) */
.collection-chip .thumb {
  position: absolute !important;
  inset: 4px !important;
  width: auto !important;
  height: auto !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  background: #1a1612 !important;
  border-radius: 0 !important;
  clip-path: url(#islamicArchClip) !important;
  z-index: 1 !important;
}

/* Delicate inner gold accent line */
.collection-chip .thumb::before {
  content: "" !important;
  position: absolute !important;
  inset: 3px !important;
  z-index: 4 !important;
  pointer-events: none !important;
  border: 1px solid rgba(245, 220, 155, 0.5) !important;
  clip-path: url(#islamicArchClip) !important;
}

/* Image inside card */
.collection-chip .thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  border-radius: 0 !important;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Dark gradient overlay for typography readability */
.collection-chip .thumb::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(12, 8, 4, 0.9) 0%, rgba(12, 8, 4, 0.45) 45%, rgba(0, 0, 0, 0) 100%) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* Category Title Label */
.collection-chip .label {
  position: absolute !important;
  bottom: 12px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 5 !important;
  color: #ffe8b9 !important;
  font-family: 'Outfit', 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  line-height: 1.25 !important;
  margin: 0 !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85) !important;
  word-break: break-word !important;
}

.collection-chip:active,
.collection-chip:hover {
  transform: translateY(-5px) !important;
  filter: drop-shadow(0 12px 24px rgba(184, 148, 62, 0.35)) !important;
}

.collection-chip:active .thumb img,
.collection-chip:hover .thumb img {
  transform: scale(1.08) !important;
}

.collection-chip:hover .label {
  color: #ffffff !important;
}

/* Navigation Buttons */
.collections-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(200, 169, 106, 0.3);
  color: #3E2D24;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.collections-nav-btn:hover {
  background: #3E2D24;
  color: #FAF7F5;
  border-color: #C8A96A;
}

.collections-nav-btn.prev {
  left: 0;
}

.collections-nav-btn.next {
  right: 0;
}

.collections-nav-btn i {
  font-size: 16px;
  color: #3E2D24;
}

.collections-nav-btn:hover i {
  color: #fff;
}

/* Pagination Dots */
.collections-pagination {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.collections-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e0;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.collections-pagination .swiper-pagination-bullet-active {
  background: #3E2D24;
  width: 24px;
  border-radius: 5px;
}

/* =======================================================
   SHOP BY CATEGORIES - LUXURY THEME SKELETON PRE-LOADER
   ======================================================= */
.categories-skeleton-loader {
  display: flex;
  gap: 18px;
  width: calc(100% - 24px);
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 320px;
  overflow: hidden;
  margin: 0;
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.35s;
}

.categories-skeleton-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.cat-skeleton-card {
  flex: 1 1 0;
  min-width: 0;
  height: 320px;
  border-radius: 0 !important;
  clip-path: url(#islamicArchClip) !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #EFE4D6 0%, #E6D7C3 50%, #FAF3EA 100%);
  border: 1.5px solid rgba(200, 169, 106, 0.4);
}

.cat-skeleton-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  animation: catShimmerGlow 1.6s infinite ease-in-out;
  z-index: 2;
}

@keyframes catShimmerGlow {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.cat-skeleton-icon {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.25) 0%, rgba(200, 169, 106, 0.08) 100%);
  border: 1px solid rgba(200, 169, 106, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(158, 125, 59, 0.65);
  font-size: 1.25rem;
  z-index: 1;
}

.cat-skeleton-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  height: 18px;
  border-radius: 6px;
  background: rgba(62, 45, 36, 0.12);
  border: 1px solid rgba(200, 169, 106, 0.2);
  z-index: 1;
}

.collectionsSwiper.is-loading {
  display: none !important;
  opacity: 0;
}

.collectionsSwiper.is-ready {
  display: block !important;
  animation: catFadeIn 0.45s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes catFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .categories-skeleton-loader {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .collections-swiper-wrapper {
    min-height: 265px;
    padding: 0 10px !important;
  }

  .categories-skeleton-loader {
    gap: 10px;
    width: calc(100% - 20px);
    left: 10px;
    right: 10px;
    height: 265px;
  }

  .cat-skeleton-card {
    height: 265px !important;
  }

  .collections-slider .collections-title {
    font-size: 35px;
    margin-bottom: 18px;
  }

  .imgsecdiv {
    width: 320px;
  }

  .collections-slider .container {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .collection-chip {
    height: 265px !important;
  }
}

@media (max-width: 599px) {
  .collections-slider {
    padding: 6px 0 14px;
    background: #F5ECE0;
  }

  .collections-swiper-wrapper {
    min-height: 160px;
    padding: 0 2px !important;
  }

  .categories-skeleton-loader {
    gap: 8px;
    width: calc(100% - 4px);
    left: 2px;
    right: 2px;
    height: 160px;
  }

  .cat-skeleton-card {
    height: 160px !important;
  }

  .cat-skeleton-icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.85rem !important;
  }

  .cat-skeleton-label {
    bottom: 10px !important;
    left: 10px !important;
    right: 8px !important;
    height: 12px !important;
    border-radius: 4px !important;
    margin-bottom: 4px !important;
  }

  .imgsecdiv {
    width: 220px;
    height: auto;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .collections-slider .collections-title {
    font-size: 35px;
    margin-bottom: 18px;
  }

  .imgsecdiv {
    width: 320px;
  }

  .collections-slider .container {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .collections-swiper-wrapper {
    padding: 0 10px !important;
  }

  .collections-nav-btn {
    width: 35px;
    height: 35px;
  }

  .collections-nav-btn i {
    font-size: 14px;
  }

  .collection-chip {
    height: 265px !important;
  }
}

@media (max-width: 599px) {
  .collections-slider {
    padding: 6px 0 14px;
    background: #F5ECE0;
  }

  .collections-slider .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .collections-swiper-wrapper {
    padding: 0 2px !important;
  }

  .collections-nav-btn {
    display: none;
  }

  .collections-pagination {
    display: none;
  }

  .collection-chip {
    width: 100% !important;
    height: 160px !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  .collection-chip .label {
    font-size: 9.5px !important;
    font-weight: 800 !important;
    bottom: 12px !important;
    left: 0 !important;
    right: 0 !important;
    padding: 0 4px !important;
    letter-spacing: 0.3px !important;
    line-height: 1.15 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    word-break: break-word !important;
  }

  .collection-chip::after {
    border-width: 2px !important;
  }
}

/* Fix for Mobile Sidebar Z-Index (ensuring it's above bottom fixed bars) */
.mobile-sidebar {
  z-index: 2000 !important;
}

.mobile-sidebar-overlay {
  z-index: 1999 !important;
}

.mobile-fixed-bottom-bar {
  z-index: 999 !important;
  /* Ensure it's below sidebar */
}

/* ============================================
   PROFESSIONAL FULL-PAGE MEGA MENU
   ============================================ */

/* Mega Dropdown - Full Width Fixed Position */
.mega-dropdown {
  position: static !important;
}

.mega-dropdown .dropdown-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  padding: 0;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
  border: none;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(139, 69, 19, 0.08);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.mega-dropdown.show .dropdown-menu,
.mega-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mega Menu Container */
.mega-menu-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 60px 50px;
}

/* Mega Menu Header */
.mega-menu-header {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.mega-menu-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #2c1810;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.mega-menu-header p {
  font-size: 15px;
  color: #6b4d3f;
  font-weight: 400;
}

/* Categories Grid - Auto Expanding Columns */
.mega-menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 25px;
  margin-bottom: 35px;
}

/* Max 6 columns on large screens */
@media (min-width: 1400px) {
  .mega-menu-categories {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .mega-menu-categories {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .mega-menu-categories {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Category Group Card */
.mega-category-group {
  display: flex;
  flex-direction: column;
  padding: 20px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(139, 69, 19, 0.08);
  transition: all 0.3s ease;
  min-height: 180px;
}

.mega-category-group:hover {
  border-color: rgba(200, 169, 106, 0.25);
  box-shadow: 0 12px 40px rgba(200, 169, 106, 0.12);
  transform: translateY(-3px);
}

/* Parent Title - Bold Professional */
.mega-parent-title {
  font-size: 15px;
  font-weight: 700;
  color: #2c1810;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 2px solid #C8A96A;
  display: block;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.mega-parent-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 35px;
  height: 2px;
  background: #4d2600;
  transition: width 0.3s ease;
}

.mega-category-group:hover .mega-parent-title::after {
  width: 100%;
}

.mega-parent-title:hover {
  color: #C8A96A;
}

/* Children List */
.mega-children-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Child Links - Elegant */
.mega-child-link {
  font-size: 13px;
  font-weight: 400;
  color: #6b4d3f;
  padding: 7px 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.mega-child-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #4d2600;
  transform: scaleY(0);
  transition: transform 0.25s ease;
  border-radius: 0 3px 3px 0;
}

.mega-child-link:hover {
  color: #C8A96A;
  background: rgba(200, 169, 106, 0.08);
  padding-left: 18px;
}

.mega-child-link:hover::before {
  transform: scaleY(1);
}

/* Footer Section */
.mega-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(139, 69, 19, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

/* Featured Links */
.mega-featured {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.featured-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #faf0e8 0%, #fff 100%);
  border: 1px solid rgba(139, 69, 19, 0.1);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-link:hover {
  background: #4d2600;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 169, 106, 0.25);
}

.featured-icon {
  width: 36px;
  height: 36px;
  background: #4d2600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.featured-link:hover .featured-icon {
  background: #fff;
  color: #C8A96A;
}

.featured-text {
  font-size: 14px;
  font-weight: 600;
  color: #2c1810;
  transition: all 0.3s ease;
}

.featured-link:hover .featured-text {
  color: #fff;
}

/* View All Button */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  background: #4d2600;
  box-shadow: 0 4px 15px rgba(200, 169, 106, 0.3);
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 169, 106, 0.4);
  color: #fff;
}

.view-all-btn i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

/* Responsive - Tablet */
@media (max-width: 991px) {
  .mega-menu-container {
    padding: 30px 40px;
  }

  .mega-menu-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .mega-menu-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .mega-featured {
    justify-content: center;
  }

  .view-all-btn {
    text-align: center;
    justify-content: center;
  }
}

/* Mobile - Compact */
@media (max-width: 767px) {
  .mega-dropdown .dropdown-menu {
    position: static;
    width: 100%;
    min-width: auto;
    max-width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    max-height: none;
  }

  .mega-dropdown.show .dropdown-menu {
    display: block;
  }

  .mega-menu-container {
    padding: 20px;
  }

  .mega-menu-header h3 {
    font-size: 22px;
  }

  .mega-menu-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .mega-category-group {
    padding: 15px;
    min-height: auto;
  }

  .mega-featured {
    flex-direction: column;
    gap: 12px;
  }

  .featured-link {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .mega-menu-categories {
    grid-template-columns: 1fr;
  }
}

.dynamic-banner-slot[hidden] {
  display: none !important;
}

.dynamic-banner-slot-home,
.dynamic-banner-slot-kids {
  padding: 22px 0 10px;
}

#shopDynamicBannerMount {
  margin: 12px 0 12px;
}

.products-grid #shopDynamicBannerMount {
  grid-column: 1 / -1;
  width: 100%;
}

.stylehub-banner-block {
  position: relative;
}

.stylehub-banner-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  isolation: isolate;
  touch-action: pan-y;
}

.stylehub-banner-slider-plain {
  background: #fff;
}

.stylehub-banner-slider.banner-slider-ready {
  opacity: 1;
  transform: translateY(0);
}

.stylehub-banner-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.stylehub-banner-slide {
  display: block;
  flex: 0 0 100%;
  min-width: 0;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.stylehub-banner-media {
  position: relative;
  min-height: clamp(250px, 28vw, 500px);
}

.stylehub-banner-block-shop .stylehub-banner-media {
  min-height: clamp(200px, 22vw, 400px);
}

.stylehub-banner-slider-plain .stylehub-banner-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(220px, 25vw, 450px);
  min-height: 0;
  background: linear-gradient(135deg, #2b1810 0%, #5f3519 58%, #8c5a32 100%);
}

.stylehub-banner-slider {
  border-radius: 14px;

}

.stylehub-banner-block-shop .stylehub-banner-slider-plain .stylehub-banner-media {
  height: clamp(190px, 20vw, 350px);
  min-height: 0;

}

.stylehub-banner-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.stylehub-banner-slider-plain .stylehub-banner-slide:hover .stylehub-banner-image {
  transform: none;
}

.stylehub-banner-slide:active {
  transform: scale(0.994);
}

.stylehub-banner-slider.is-dragging,
body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-slider.is-dragging {
  cursor: grabbing;
}

.stylehub-banner-scrim,
.stylehub-banner-glow {
  position: absolute;
  inset: 0;
}

.stylehub-banner-scrim {
  background:
    linear-gradient(90deg, rgba(18, 10, 6, 0.82) 0%, rgba(18, 10, 6, 0.44) 38%, rgba(18, 10, 6, 0.12) 76%),
    linear-gradient(180deg, rgba(18, 10, 6, 0.1) 0%, rgba(18, 10, 6, 0.5) 100%);
}

.stylehub-banner-glow {
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 227, 197, 0.34), transparent 22%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08), transparent 26%);
}

.stylehub-banner-content {
  position: absolute;
  left: clamp(20px, 3vw, 42px);
  right: clamp(20px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 34px);
  display: grid;
  gap: 10px;
  max-width: min(420px, 72%);
  z-index: 1;
}

.stylehub-banner-eyebrow {
  display: inline-flex;
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  color: rgba(255, 246, 238, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stylehub-banner-content strong {
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 3.6vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.stylehub-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2f170d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(24, 12, 8, 0.22);
}

.stylehub-banner-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 248, 241, 0.88);
  color: #2f170d;
  box-shadow: 0 16px 32px rgba(25, 11, 7, 0.14);
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.stylehub-banner-nav.prev {
  left: 18px;
}

.stylehub-banner-nav.next {
  right: 18px;
}

.stylehub-banner-nav:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.04);
  background: #fff;
}

.stylehub-banner-nav:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.stylehub-banner-dots {
  position: absolute;
  right: clamp(20px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 32px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stylehub-banner-dot {
  appearance: none;
  display: inline-block;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.stylehub-banner-dot.active {
  width: 9px;
  background: #fff;
}

.dynamic-banner-slot {
  position: relative;
  width: 100%;
  margin: 0;
  background: transparent;
}

body.home-page #homepageDynamicBannerMount,
#homepageDynamicBannerMount,
.dynamic-banner-slot-home {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  margin: 0 !important;
  padding: 0 0 40px 0 !important;
  width: 100%;
}

.dynamic-banner-slot-shop {
  margin: 14px 0 24px;
  background: transparent !important;
  border: none !important;
}

.stylehub-banner-block {
  width: 100%;
  position: relative;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.stylehub-banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  user-select: none;
  touch-action: pan-y;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.stylehub-banner-slider.banner-slider-ready {
  opacity: 1;
  transform: translateY(0);
}

.stylehub-banner-slider.banner-slider-empty {
  display: none !important;
}

.stylehub-banner-track {
  display: flex;
  width: 100%;
  height: 100%;
  background: transparent !important;
  border: none !important;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.stylehub-banner-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: transparent !important;
  border: none !important;
}

/* 1. SINGLE BANNER LAYOUT (Tata CLiQ Style) */
.stylehub-banner-layout-single .stylehub-banner-slide-single {
  display: block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: none !important;
  background: transparent !important;
}

.stylehub-banner-layout-single .stylehub-banner-media {
  position: relative;
  width: 100%;
  background: transparent !important;
  border-radius: 18px;
  border: none !important;
  overflow: hidden;
}

.stylehub-banner-layout-single .stylehub-banner-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  border: none !important;
  transition: transform 0.4s ease;
}

.stylehub-banner-layout-single .stylehub-banner-slide:hover .stylehub-banner-image {
  transform: scale(1.015);
}

/* 2. DUAL BANNER LAYOUT (Technowez Style - 2 in 1 Row with 1-by-1 Infinite Slider) */
.stylehub-banner-layout-grid2 .stylehub-banner-slider {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: hidden;
}

.stylehub-banner-layout-grid2 .stylehub-banner-track {
  display: flex;
  gap: 16px;
  width: 100%;
  background: transparent !important;
  border: none !important;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.stylehub-banner-layout-grid2 .stylehub-banner-slide-grid2 {
  flex: 0 0 calc((100% - 16px) / 2);
  min-width: calc((100% - 16px) / 2);
  max-width: calc((100% - 16px) / 2);
  box-sizing: border-box;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

@media (max-width: 640px) {
  .stylehub-banner-layout-grid2 .stylehub-banner-slide-grid2 {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

.stylehub-grid2-card {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.stylehub-grid2-card:hover {
  transform: translateY(-3px);
}

.stylehub-grid2-card .stylehub-banner-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7.5;
  object-fit: cover;
  border-radius: 16px;
  border: none !important;
  outline: none !important;
  transition: transform 0.4s ease;
}

.stylehub-grid2-card:hover .stylehub-banner-image {
  transform: scale(1.02);
}

/* Luxury Circular Navigation Arrows (Tata CLiQ & Technowez Style) */
.stylehub-banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #3e2d24;
  border: 1px solid rgba(200, 169, 106, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  z-index: 10;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.stylehub-banner-nav:hover {
  background: #ffffff;
  color: #c8a96a;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(200, 169, 106, 0.35);
}

.stylehub-banner-nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.stylehub-banner-nav-prev {
  left: 14px;
}

.stylehub-banner-nav-next {
  right: 14px;
}

/* Pagination Dots */
.stylehub-banner-pagination {
  position: absolute;
  left: auto;
  right: 20px;
  bottom: 14px;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.45);
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stylehub-banner-dot {
  appearance: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s ease;
}

.stylehub-banner-dot.active {
  width: 22px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Mobile Sidebar Drawer Banner */
body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-slider {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  touch-action: pan-y;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-slider.banner-slider-ready {
  opacity: 1;
  transform: translateY(0);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-slider.banner-slider-empty {
  display: none !important;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-slide {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2b1810 0%, #5f3519 58%, #8c5a32 100%);
  border-radius: 12px;
  overflow: hidden;
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-pagination {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(55, 30, 14, 0.72);
  border: 1px solid rgba(255, 245, 235, 0.16);
  backdrop-filter: blur(8px);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-dot {
  appearance: none;
  display: inline-block;
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(232, 204, 179, 0.45);
}

body:is(.home-page, .premium-mobile-sidebar) .sidebar-banner-dot.active {
  width: 14px;
  background: #f3d7bb;
}

/* Tablet & Mobile Breakpoints */
@media (max-width: 991px) {
  .dynamic-banner-slot-home {
    margin: 18px 0 24px;
  }

  .stylehub-banner-slider {
    border: none !important;
    box-shadow: none !important;
  }

  .stylehub-grid2-row {
    gap: 10px;
  }

  .stylehub-banner-nav {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

@media (max-width: 767px) {
  .dynamic-banner-slot {
    margin: 12px 0 20px;
  }

  .stylehub-banner-slider {
    border: none !important;
    box-shadow: none !important;
  }

  .stylehub-grid2-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stylehub-grid2-card {
    border-radius: 10px;
    border: none !important;
    box-shadow: none !important;
  }

  .stylehub-banner-nav {
    display: none !important;
  }

  .stylehub-banner-pagination {
    bottom: 8px;
    right: 12px;
    padding: 3px 8px;
  }

  .stylehub-banner-dot {
    width: 6px;
    height: 6px;
  }

  .stylehub-banner-dot.active {
    width: 14px;
  }
}

/* ==========================================================================
   AAN LUXE BRAND THEME - SEARCH FOCUS & NAVBAR ICON HOVER OVERRIDES
   ========================================================================== */
.search-input:focus,
.search-input-full:focus,
.navbar-search-input:focus,
.mobile-search-input:focus,
.sidebar-search-input:focus,
#navSearchInput:focus,
#mobileSearchInput:focus,
#mySearchInput:focus,
.form-control:focus,
.form-select:focus {
  border-color: #C8A96A !important;
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.2) !important;
  outline: none !important;
  background-color: #FFFDF9 !important;
}

.nav-icon a:hover,
.navbar-right a:hover,
.navbar-icons a:hover,
.navbar .btn-icon:hover,
.navbar .fa-user:hover,
.navbar .fa-heart:hover,
.navbar .fa-bag-shopping:hover,
.navbar .fa-cart-shopping:hover,
#userMenuDropdown:hover,
#userMenuDropdown:hover i,
.user-menu-btn:hover {
  color: #C8A96A !important;
}

/* Logged-in Navbar User Icon Custom Styling */
.nav-icon i.text-primary,
.nav-icon a i.text-primary,
.mobile-nav-icons i.text-primary,
.mobile-nav-icons a i.text-primary,
#mobileSidebar i.text-primary,
a[onclick*="toggleUserMenu"] i.text-primary,
button[onclick*="toggleUserMenu"] i.text-primary {
  color: #BF9949 !important;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-icon a:hover i.text-primary,
.mobile-nav-icons a:hover i.text-primary,
#mobileSidebar a:hover i.text-primary,
#mobileSidebar button:hover i.text-primary,
a[onclick*="toggleUserMenu"]:hover i.text-primary,
button[onclick*="toggleUserMenu"]:hover i.text-primary {
  color: #421201 !important;
  transform: scale(1.25);
}

/* Custom Sort Dropdown Styles */
.custom-sort-dropdown {
  position: relative;
  display: inline-block;
  min-width: 180px;
  font-family: 'Poppins', sans-serif;
  user-select: none;
  z-index: 100;
  margin-left: 15px;
}

.custom-sort-selected {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-sort-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 5px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  overflow: hidden;
  z-index: 101;
}

.custom-sort-dropdown.open .custom-sort-options {
  display: block;
}

.custom-sort-option {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  color: #333;
  transition: background 0.2s, color 0.2s;
}

.custom-sort-option:hover {
  background: rgba(200, 169, 106, 0.1);
  color: var(--primary);
}

.custom-sort-option.selected {
  background: var(--primary);
  color: white;
}

.custom-sort-dropdown.open .custom-sort-selected i {
  transform: rotate(180deg);
}

.custom-sort-selected i {
  transition: transform 0.2s;
  font-size: 12px;
  color: #666;
  margin-left: 8px;
}

/* Global Primary Background Dark Mode Override */
[data-theme="dark"] .bg-primary-theme,
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .badge-primary,
[data-theme="dark"] .modal-header,
[data-theme="dark"] .profile-banner,
[data-theme="dark"] .checkout-btn,
[data-theme="dark"] .btn-buy-now,
[data-theme="dark"] .hero-banner,
[data-theme="dark"] .custom-sort-option.selected,
body.dark-mode .btn-primary,
body.dark-mode .modal-header,
body.dark-mode .profile-banner,
body.dark-mode .checkout-btn,
body.dark-mode .custom-sort-option.selected {
  background: #D7C1A1 !important;
  color: #4d2600 !important;
  border-color: #D7C1A1 !important;
}

/* ==========================================================================
   AAN LUXE — KIDS COMING SOON LUXURY PREVIEW STYLES
   ========================================================================== */

/* Image Ribbons & Badges */
.kids-cs-ribbon,
.tw-coming-soon-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, rgba(45, 30, 22, 0.92) 0%, rgba(74, 52, 42, 0.92) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #E2CA9D;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(200, 169, 106, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 6;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.1;
}

.kids-cs-ribbon i,
.tw-coming-soon-badge i {
  font-size: 7.5px;
}

@media (max-width: 768px) {

  .kids-cs-ribbon,
  .tw-coming-soon-badge {
    top: 6px;
    left: 6px;
    font-size: 7.5px;
    letter-spacing: 0.4px;
    padding: 2.5px 6px;
    border-radius: 3px;
    gap: 3px;
  }

  .kids-cs-ribbon i,
  .tw-coming-soon-badge i {
    font-size: 6.5px;
  }
}

.kids-coming-soon-card {
  position: relative;
}

/* Coming Soon Stock Status Pill */
.stock-status.cs-stock,
.cs-stock {
  color: #8B6A4A !important;
  background: rgba(200, 169, 106, 0.15) !important;
  border: 1px solid rgba(200, 169, 106, 0.3) !important;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Disabled Coming Soon Action Buttons */
.btn-add-cart.btn-coming-soon,
.btn-add.btn-coming-soon,
.btn-coming-soon {
  background: #f5ebe0 !important;
  color: #8B6A4A !important;
  border: 1px solid rgba(200, 169, 106, 0.4) !important;
  cursor: not-allowed !important;
  opacity: 0.95 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
  transform: none !important;
}

.btn-add-cart.btn-coming-soon:hover,
.btn-add.btn-coming-soon:hover {
  background: #f5ebe0 !important;
  color: #8B6A4A !important;
  border-color: rgba(200, 169, 106, 0.4) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Cart Item Coming Soon Pill */
.oos-pill.cs-pill {
  background: #8B6A4A !important;
  color: #ffffff !important;
}

/* Autocomplete Coming Soon Tag */
.ac-cs-tag {
  background: rgba(200, 169, 106, 0.15) !important;
  color: #8B6A4A !important;
  border: 1px solid rgba(200, 169, 106, 0.3) !important;
  font-weight: 700 !important;
  font-size: 10px !important;
  padding: 3px 8px !important;
  border-radius: 10px !important;
}

/* Product Detail Page (PDP) Coming Soon Banner */
.pdp-kids-cs-banner {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5EBE0 100%);
  border: 1px solid #E4D5C3;
  border-left: 4px solid #C8A96A;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(200, 169, 106, 0.08);
}

.pdp-cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  background: linear-gradient(135deg, #2D1E16 0%, #4A342A 100%);
  color: #E2CA9D;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(200, 169, 106, 0.35);
}

.pdp-cs-content .pdp-cs-title {
  font-size: 15px;
  font-weight: 800;
  color: #2D1E16;
  margin: 0 0 4px;
}

.pdp-cs-content .pdp-cs-desc {
  font-size: 13px;
  color: #6E5D4F;
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}

/* Dark Mode Overrides for Coming Soon Tokens */
[data-theme="dark"] .pdp-kids-cs-banner,
body.dark-mode .pdp-kids-cs-banner {
  background: linear-gradient(135deg, #231B15 0%, #1A1410 100%) !important;
  border-color: rgba(200, 169, 106, 0.25) !important;
  border-left-color: #C8A96A !important;
}

[data-theme="dark"] .pdp-cs-content .pdp-cs-title,
body.dark-mode .pdp-cs-content .pdp-cs-title {
  color: #E2CA9D !important;
}

[data-theme="dark"] .pdp-cs-content .pdp-cs-desc,
body.dark-mode .pdp-cs-content .pdp-cs-desc {
  color: #BBA999 !important;
}

[data-theme="dark"] .btn-add-cart.btn-coming-soon,
[data-theme="dark"] .btn-add.btn-coming-soon,
body.dark-mode .btn-add-cart.btn-coming-soon,
body.dark-mode .btn-add.btn-coming-soon {
  background: #2D1E16 !important;
  color: #E2CA9D !important;
  border-color: rgba(200, 169, 106, 0.35) !important;
}
