/** Shopify CDN: Minification failed

Line 4664:0 Unexpected "}"

**/
/*
  custom_mb.css - Mobile-First Responsive Stylesheet
  Design System and Styles for Shopy theme
*/

/* ----------------------------------------------------
   1. Design System Tokens & Custom Properties
   ---------------------------------------------------- */
:root {
  /* Brand Colors */
  --primary-accent: #111111;
  --secondary-accent: #f43f5e;
  --neutral-light: #f5f5f7;
  --neutral-border: #e4e4e7;
  --text-dark: #09090b;
  --text-gray: #71717a;
  --bg-white: #ffffff;

  /* Fonts */
  --font-custom: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Animations */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.3s var(--ease-smooth);
}

/* ----------------------------------------------------
   2. Main Header Base Styles
   ---------------------------------------------------- */


   .custom-header__desktop-search-input:focus-visible {
    outline: none;
    outline-offset: 0px;
    box-shadow: none;
}
   
.custom-header-wrapper {
  background: var(--bg-white);
  border-bottom: 1px solid var(--neutral-border);
  padding: 12px 0 8px 0;
  width: 100%;
  font-family: var(--font-custom);
  position: relative;
  z-index: 100;
}

/* Page Width helper specifically for custom header */
.custom-header-wrapper .page-width {
  padding: 0 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Row 1: Logo & Actions */
.custom-header__top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  margin-bottom: 12px;
  padding: 0 10px;
}

.custom-header__logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.custom-header__logo-img {
  display: block;
  max-height: 32px;
  width: auto;
  object-fit: contain;
}

.custom-header__shop-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.custom-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.custom-header__action-btn {
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.custom-header__icon-wrapper {
  position: relative;
}

.icon-cart-custom {
  width: 26px;
  height: 26px;
  stroke: var(--text-dark);
}

.icon-wishlist-custom {
  width: 25px;
  height: 25px;
  stroke: var(--text-dark);
  transition: transform 0.2s ease;
}

#custom-wishlist-icon:hover .icon-wishlist-custom {
  transform: scale(1.08);
}

.custom-header__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--text-dark);
  color: var(--bg-white);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--bg-white);
}

/* Row 2: Search Trigger Input Bar */
.custom-header__search-row {
  margin-bottom: 12px;
}

.custom-header__search-trigger {
  background: var(--neutral-light);
  border-radius: 8px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-normal);
}

.custom-header__search-trigger:active {
  background: #eef2f6;
  border-color: #cbd5e1;
}

.icon-search-custom {
  width: 18px;
  height: 18px;
  stroke: var(--text-gray);
}

.custom-header__search-placeholder {
  font-size: 13px;
  color: var(--text-gray);
  user-select: none;
}

/* Row 3: Horizontal Scroll Navigation */
.custom-header__menu-row {
  margin-top: 4px;
  overflow: hidden;
}

.custom-header__nav-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.custom-header__nav-scroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.custom-header__nav-scroll {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.custom-header__nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 6px;
  position: relative;
  transition: var(--transition-normal);
}

.custom-header__nav-link.is-active,
.custom-header__nav-link:active {
  color: var(--text-dark);
}

.custom-header__nav-link.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}

/* ----------------------------------------------------
   3. Interactive Full Screen Search Overlay
   ---------------------------------------------------- */
.custom-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease-smooth), visibility 0.25s;
  font-family: var(--font-custom);
}

.custom-search-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-search-overlay__header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--neutral-border);
}

.custom-search-overlay__form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* Back Close Button in Search Input */
.custom-search-overlay__back {
  background: none;
  border: none;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  flex-shrink: 0;
}

.custom-search-overlay__back svg {
  width: 24px;
  height: 24px;
}

/* Search Input Field Wrapper */
.custom-search-overlay__input-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  background: var(--neutral-light);
  border-radius: 8px;
  padding: 00px 12px;
  gap: 8px;
  margin-left: 0;
}

.icon-search-custom-overlay {
  width: 18px;
  height: 18px;
  stroke: var(--text-gray);
  flex-shrink: 0;
}

.custom-search-overlay__input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  /* Prevents auto-zoom on iOS */
  color: var(--text-dark);
  outline: none;
  padding: 10px;
  margin: 0;
}

.custom-search-overlay__input::placeholder {
  color: var(--text-gray);
}

.custom-search-overlay__cancel {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px 0;
  white-space: nowrap;
}

/* Body of Search Overlay (Trending terms) */
.custom-search-overlay__body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px 16px;
}

.trending-searches__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 16px;
  letter-spacing: 0.2px;
  margin-top: 0;
}

.trending-searches__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trending-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-white);
  border: 1px solid var(--neutral-border);
  border-radius: 8px;
  padding: 0px 14px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition-normal);
}

.trending-pill:active {
  background: var(--neutral-light);
  transform: scale(0.97);
  border-color: #cbd5e1;
}

.trending-pill__icon {
  font-size: 12px;
}

/* Scroll Lock Helper */
body.custom-search-lock {
  overflow: hidden !important;
  height: 100vh !important;
}

/* Bottom spacing adjustment to prevent toolbar cutoff on mobile */
@media screen and (max-width: 989px) {
  body {
    padding-bottom: 60px !important;
  }

  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    body {
      padding-bottom: calc(60px + env(safe-area-inset-bottom)) !important;
    }
  }
}

/* ----------------------------------------------------
   4. Mobile Sticky Bottom Navigation Toolbar
   ---------------------------------------------------- */
.custom-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--bg-white);
  border-top: 1px solid var(--neutral-border);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
  padding-bottom: env(safe-area-inset-bottom);
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .custom-bottom-nav {
    height: calc(60px + env(safe-area-inset-bottom));
  }
}

.custom-bottom-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-gray);
  flex: 1;
  height: 100%;
  transition: var(--transition-normal);
}

.custom-bottom-nav__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;
}

.custom-bottom-nav__icon {
  width: 22px;
  height: 22px;
}

.custom-bottom-nav__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

/* Active State Colors */
.custom-bottom-nav__link.is-active,
.custom-bottom-nav__link:active {
  color: var(--text-dark);
}

/* ----------------------------------------------------
   5. Desktop Responsive Behavior
   ---------------------------------------------------- */
@media screen and (min-width: 990px) {

  /* Hide mobile header and bottom nav */
  .custom-header-mobile-wrapper {
    display: none !important;
  }

  .custom-bottom-nav {
    display: none !important;
  }

  /* Show desktop header components */
  .custom-header-desktop-wrapper {
    display: block;
  }

  /* Grid/Layout styling for the body */
  body {
    padding-left: 280px;
    /* Leave space for the sidebar */
  }

  /* Sidebar Styling */
  .custom-header__sidebar-desktop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: #ffffff;
    border-right: 1.5px solid #eaeaea;
    display: flex;
    flex-direction: column;
    padding: 00px 24px;
    z-index: 1001;
    overflow-y: auto;
    box-sizing: border-box;
  }

  /* Hide scrollbar for sidebar */
  .custom-header__sidebar-desktop::-webkit-scrollbar {
    display: none;
  }

  .custom-header__sidebar-desktop {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Logo */
  .custom-header__sidebar-logo {
    margin-bottom: 30px;
  }

  .custom-header__sidebar-logo .custom-header__logo-img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
  }

  .custom-header__sidebar-logo .custom-header__shop-name {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #121212;
    text-transform: uppercase;
  }

  /* Nav Menu */
  .custom-header__sidebar-nav {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .custom-header__sidebar-bottom-nav {
    margin-top: auto;
    width: 100%;
  }

  .custom-header__sidebar-menu,
  .custom-header__sidebar-menu-secondary {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* Links */
  .custom-header__sidebar-link,
  .custom-header__sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 6px 0;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
  }

  .custom-header__sidebar-link:hover,
  .custom-header__sidebar-toggle:hover,
  .custom-header__sidebar-link.is-active {
    color: #121212;
  }

  /* Chevron inside toggle */
  .custom-header__sidebar-toggle .icon-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
  }

  .custom-header__sidebar-toggle[aria-expanded="true"] .icon-chevron {
    transform: rotate(180deg);
  }

  /* Submenu */
  .custom-header__sidebar-submenu {
    list-style: none;
    padding: 4px 0 8px 12px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 1.5px solid #eaeaea;
  }

  .custom-header__sidebar-sublink {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .custom-header__sidebar-sublink:hover,
  .custom-header__sidebar-sublink.is-active {
    color: #121212;
  }

  /* Separator */
  .custom-header__sidebar-separator {
    height: 1px;
    background: #eaeaea;
    margin: 20px 0;
    display: block !important;
  }
ul.custom-header__sidebar-menu-secondary li a {
    font-size: 12px;
    color: #434343;
    font-weight: 100;
}

ul.custom-header__sidebar-menu-secondary {
    gap: 0;
    margin-bottom: 20px;
}

ul.custom-header__sidebar-menu-secondary li {line-height: 7px;}
  /* Auth links */
  .custom-header__sidebar-auth {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
  }

  .custom-header__sidebar-auth .auth-link {
    padding: 0;
    font-size: 13px;
    display: inline-block;
    width: auto;
  }

  .custom-header__sidebar-auth .auth-divider {
    color: #d1d1d6;
  }

  /* Top-bar Container */
  .custom-header__top-bar-desktop {
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    height: 70px;
    background: #ffffff;
    border-bottom: 1.5px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    box-sizing: border-box;
    max-width: var(--page-width);
    margin: auto;
  }

  /* Shift Main Content & Footer on desktop */
  #MainContent {
    margin-top: 70px;
    /* Space for top-bar */
    padding-top: 20px;
    box-sizing: border-box;
  }

  /* Search Container in Top bar */
  .custom-header__desktop-search-container {
    width: 100%;
    margin-right: 50px;
  }

  .custom-header__desktop-search-form {
    display: flex;
    align-items: center;
    background: #f4f4f5;
    border-radius: 8px;
    padding: 8px 12px;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Search filter selection */
  .custom-header__desktop-search-filter {
    display: none;
    align-items: center;
    position: relative;
  }

  .custom-header__desktop-search-select {
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: #18181b;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 18px;
    cursor: pointer;
    outline: none;
  }

  .custom-header__desktop-search-filter .icon-chevron {
    width: 10px;
    height: 10px;
    position: absolute;
    right: 0;
    pointer-events: none;
    stroke: #71717a;
  }

  /* Divider */
  .custom-header__desktop-search-divider {
    width: 1px;
    height: 16px;
    background: #e4e4e7;
  }

  /* Search input field */
  .custom-header__desktop-search-input-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .custom-header__desktop-search-icon svg {
    width: 16px;
    height: 16px;
    stroke: #71717a;
  }

  .custom-header__desktop-search-input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 18px;
    outline: none;
    color: #18181b;
  }

  .custom-header__desktop-search-input::placeholder {
    color: #a1a1aa;
  }

  /* Top Actions (Localization & Cart) */
  .custom-header__desktop-actions {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  /* Desktop localization */
  .custom-header__desktop-localization .disclosure {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .custom-header__desktop-localization .disclosure__label {
    font-size: 9px;
    font-weight: 500;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }

  .custom-header__desktop-localization .disclosure__button {
    font-size: 12px;
    font-weight: 700;
    color: #18181b;
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .custom-header__desktop-localization .disclosure__button .icon-caret {
    width: 8px;
    height: 8px;
    margin-left: 2px;
    transition: transform 0.2s ease;
  }

  .custom-header__desktop-localization .disclosure__button[aria-expanded="true"] .icon-caret {
    transform: rotate(180deg);
  }

  /* Dropdown panel for country selector */
  .custom-header__desktop-localization .disclosure__list-wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    width: 220px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 8px;
    padding: 8px;
    box-sizing: border-box;
  }

  .custom-header__desktop-localization .disclosure__list-wrapper[hidden] {
    display: none;
  }

  .custom-header__desktop-localization .disclosure__item {
    list-style: none;
  }

  .custom-header__desktop-localization .disclosure__link {
    display: block;
    padding: 8px 12px;
    font-size: 12px;
    color: #71717a;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .custom-header__desktop-localization .disclosure__link:hover {
    background: #f4f4f5;
    color: #121212;
  }

  /* Wishlist Button */
  .custom-header__desktop-wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18181b;
    padding: 4px;
    text-decoration: none;
  }

  .custom-header__desktop-wishlist .icon-wishlist-custom {
    width: 24px;
    height: 24px;
    stroke: #18181b;
  }

  /* Cart Button */
  .custom-header__desktop-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18181b;
    padding: 4px;
    text-decoration: none;
  }

  .custom-header__desktop-cart .icon-cart-custom {
    width: 24px;
    height: 24px;
    stroke: #18181b;
  }

  .custom-header__desktop-cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #18181b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    width: 17px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ffffff;
  }

  .custom-header__sidebar-sublink.is-active-sidebar-link {
    font-weight: 700 !important;
    color: #121212 !important;
  }

  /* Sidebar Flyouts Container */
  .custom-header__sidebar-flyouts-container {
    position: relative;
  }

  /* Sidebar Flyout Panels */
  .custom-header__sidebar-flyout {
    position: fixed;
    top: 70px;
    /* Aligned with bottom of top-bar */
    left: 280px;
    /* Spaced immediately next to sidebar */
    bottom: 0;
    width: 380px;
    background: #ffffff;
    border-right: 1.5px solid #eaeaea;
    box-shadow: 15px 0 35px rgba(0, 0, 0, 0.05);
    z-index: 1002;
    overflow-y: auto;
    padding: 24px 20px;
    box-sizing: border-box;
    display: none;
    /* Hidden by default */
    transform: translateX(-10px);
    opacity: 0;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .custom-header__sidebar-flyout.is-active {
    display: block;
    transform: translateX(0);
    opacity: 1;
  }

  /* Hide scrollbar for flyout */
  .custom-header__sidebar-flyout::-webkit-scrollbar {
    display: none;
  }

  .custom-header__sidebar-flyout {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Backdrop overlay */
  .custom-sidebar-backdrop {
    display: block !important;
    /* Prevent empty div from being hidden by global rules */
    position: fixed;
    top: 70px;
    left: 280px;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
    z-index: 999;
  }

  .custom-sidebar-backdrop.is-active {
    opacity: 1;
    visibility: visible;
  }

  /* Shared category classes inside desktop flyout */
  .custom-header__sidebar-flyout .custom-categories__content {
    padding-left: 0;
    min-height: auto;
    width: 100%;
    height: auto;
    overflow-y: visible;
  }

  .custom-header__sidebar-flyout .custom-categories__parent-sheet {
    display: none !important;
  }

  .custom-header__sidebar-flyout .custom-categories__parent-sheet.is-active {
    display: block !important;
  }

  .custom-header__sidebar-flyout .custom-categories__accordion-group {
    border-bottom: 1.5px solid #f3f3f3;
  }

  .custom-header__sidebar-flyout .custom-categories__accordion-header {
    padding: 14px 0;
  }

  .custom-header__sidebar-flyout .custom-categories__accordion-title {
    font-size: 14px;
    font-weight: 700;
  }

  .custom-header__sidebar-flyout .custom-categories__accordion-chevron {
    display: inline-flex;
    width: 10px;
    height: 6px;
    color: #71717a;
    transition: transform 0.2s ease;
  }

  .custom-header__sidebar-flyout .custom-categories__accordion-group.is-expanded .custom-categories__accordion-chevron {
    transform: rotate(180deg);
  }

  .custom-header__sidebar-flyout .custom-categories__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    /* 3 columns in sidebar flyout panel */
    gap: 12px !important;
    padding-bottom: 16px;
  }

  .custom-header__sidebar-flyout .custom-categories__tile-image-wrapper {
    border-radius: 6px;
    margin-bottom: 6px;
  }

  .custom-header__sidebar-flyout .custom-categories__tile-label {
    font-size: 14px;
    font-weight: 500;
    color: #555559;
  }

  .custom-header__sidebar-flyout .shop-all-tile {
    background: #fcfcfc;
    border: 1px dashed #cccccc;
  }
}

/* Global Hidden style for categories drawer on desktop */
.custom-categories-drawer {
  display: none !important;
}

@media screen and (max-width: 989px) {

  /* Hide desktop header wrapper on mobile */
  .custom-header-desktop-wrapper {
    display: none !important;
  }

  /* Make sure mobile layout is display block */
  .custom-header-mobile-wrapper {
    display: block;
  }

  /* Mobile Categories Drawer Popup */
  .custom-categories-drawer {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9998;
    /* Cover body but behind active search dialogs if any */
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.3s;
  }

  .custom-categories-drawer.is-active {
    visibility: visible;
    pointer-events: auto;
  }

  .custom-categories-drawer__backdrop {
    display: block !important;
    /* Prevent empty div from being hidden by global rules */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .custom-categories-drawer.is-active .custom-categories-drawer__backdrop {
    opacity: 1;
  }

  .custom-categories-drawer__content {
    position: absolute;
    bottom: 60px;
    /* Aligned immediately above mobile bottom sticky navigation */
    left: 0;
    width: 100%;
    height: 75vh;
    background: #ffffff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    .custom-categories-drawer__content {
      bottom: calc(0px + env(safe-area-inset-bottom));
      height: calc(94vh - env(safe-area-inset-bottom));
    }
  }

  .custom-categories-drawer.is-active .custom-categories-drawer__content {
    transform: translateY(0);
  }

  .custom-categories-drawer__header {
    padding: 4px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    background: #ffffff;
  }

  .custom-categories-drawer__title {
    font-size: 16px;
    font-weight: 700;
    color: #121212;
  }

  .custom-categories-drawer__close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #71717a;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .custom-categories-drawer__body {
    flex: 1 1 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
  }

  /* Reset padding/margins when category explorer is inside drawer */
  .custom-categories-drawer__body > .shopify-section {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
  }

  .custom-categories-drawer__body .custom-categories-container {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    padding-top: 0px !important;
    padding-bottom: 0 !important;
    margin-left: 0 !important;
  }

  .custom-categories-drawer__body .custom-categories-container > .page-width {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    width: 100%;
    padding-left: 8px !important;
    padding-right: 12px !important;
  }

  .custom-categories-drawer__body .custom-categories__main-nav {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
  }
}

/* Mobile Collection Sticky Bar Layout & Styles */
.collection-mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.collection-mobile-sticky-bar__inner {
  display: grid;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 0 20px;
  grid-template-columns: 1fr 1fr 1fr;
}

/* Left: Column layouts toggler buttons */
.collection-mobile-sticky-bar__grid-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.grid-toggle-btn {
  background: none;
  border: none;
  padding: 0px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.grid-toggle-btn.active {
  opacity: 1;
}

.grid-toggle-btn:active {
  transform: scale(0.9);
}

.grid-toggle-icon {
  display: block;
}

.grid-toggle-icon--1 {
  width: 15px;
  height: 15px;
  border: 2px solid #000000;
  background-color: transparent;
}
.grid-toggle-btn.active .grid-toggle-icon--1 {
  background-color: #000000;
}

.grid-toggle-icon--2 {
  display: flex;
  gap: 2px;
  width: 15px;
  height: 15px;
}
.grid-toggle-icon--2 span {
  flex: 1;
  border: 2px solid #000000;
  background-color: transparent;
}
.grid-toggle-btn.active .grid-toggle-icon--2 span {
  background-color: #000000;
}

.grid-toggle-icon--4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  width: 15px;
  height: 15px;
}
.grid-toggle-icon--4 span {
  border: 1.5px solid #000000;
  background-color: transparent;
}
.grid-toggle-btn.active .grid-toggle-icon--4 span {
  background-color: #000000;
}

/* Center: dynamic products count */
.collection-mobile-sticky-bar__count {
  font-size: 13px;
  font-weight: 700;
  color: #121212;
  text-align: center;
  font-family: inherit;
  flex: 1;
  margin: 0 8px;
}

/* Right: Actions Sort and Filter */
.collection-mobile-sticky-bar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.action-btn {
  background: none;
  border: none;
  padding: 8px 4px;
  font-size: 13px;
  font-weight: 500;
  color: #52525b;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  font-family: inherit;
}

.action-btn:active {
  color: #000000;
}

.action-btn__icon {
  font-size: 14px;
  line-height: 1;
}

.action-btn svg {
  display: block;
}

.action-divider {
  width: 1px;
  height: 20px;
  background-color: #e5e7eb;
  margin: 0 2px;
}

/* Grid Layout column switches on mobile */
@media screen and (max-width: 749px) {
  .product-grid.mobile-grid-4 span.product-card-custom__badge-new, .product-grid.mobile-grid-4 .product-card-custom__info , .product-grid.mobile-grid-4 .product-card-custom__meta , .product-grid.mobile-grid-4 .product-card-custom__badges, .product-grid.mobile-grid-4 button.product-card-custom__wishlist-btn  {
    display: none;
}

.product-grid.mobile-grid-4 {
    gap:2px !important;
    justify-content:center;
     display: flex !important;
    flex-wrap: wrap !important;
}
.product-grid.mobile-grid-4 .product-card-custom__image-wrapper {
    border-radius: 0px;
}
  #ProductGridContainer {
    padding-bottom: 80px !important;
  }

  .product-grid.mobile-grid-1 {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  .product-grid.mobile-grid-1 .grid__item {
    width: 100% !important;
    max-width: 100% !important;
  }

  .product-grid.mobile-grid-2 {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: var(--grid-mobile-horizontal-spacing) !important;
  }
  .product-grid.mobile-grid-2 .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2) !important;
    max-width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2) !important;
  }

 
  .product-grid.mobile-grid-4 .grid__item {
    width: calc(25% - 3px) !important;
    max-width: calc(25% - 3px) !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Compact styles for 4 columns dense layout */
  
  .product-grid.mobile-grid-4 .product-card-custom__vendor {
    font-size: 9px !important;
    line-height: 1.1 !important;
  }
  .product-grid.mobile-grid-4 .product-card-custom__title {
    font-size: 10px !important;
    margin: 2px 0 4px 0 !important;
    line-height: 1.2 !important;
    height: 24px !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .product-grid.mobile-grid-4 .product-card-custom__price {
    font-size: 10px !important;
  }
  .product-grid.mobile-grid-4 .product-card-custom__price--compare {
    font-size: 8px !important;
  }
  .product-grid.mobile-grid-4 .product-card-custom__wishlist-btn {
    top: 4px !important;
    right: 4px !important;
    width: 22px !important;
    height: 22px !important;
  }
  .product-grid.mobile-grid-4 .product-card-custom__wishlist-btn svg {
    width: 11px !important;
    height: 11px !important;
  }
  .product-grid.mobile-grid-4 .product-card-custom__cart-btn {
    width: 22px !important;
    height: 22px !important;
  }
  .product-grid.mobile-grid-4 .product-card-custom__cart-btn svg {
    width: 11px !important;
    height: 11px !important;
  }
  .product-grid.mobile-grid-4 .product-card-custom__badge,
  .product-grid.mobile-grid-4 .product-card-custom__badge-new {
    font-size: 8px !important;
    padding: 1px 3px !important;
    top: 4px !important;
  }
  .product-grid.mobile-grid-4 .product-card-custom__express-badge {
    font-size: 8px !important;
    padding: 2px 4px !important;
    margin-top: 4px !important;
  }
  .product-grid.mobile-grid-4 .product-card-custom__express-icon svg {
    width: 8px !important;
    height: 8px !important;
  }

  /* Visually hide the static mobile filter summary trigger on mobile collections page */
  .mobile-facets__open {
    display: none !important;
  }
  .mobile-facets__close {
    z-index: 1001 !important;
  }
  .facets-container .product-count {
    display: none !important;
  }

  /* Hide the active facets container when there are no active filter items */
  .active-facets:not(:has(.active-facets__button)) {
    display: none !important;
  }
}

/* Price range inputs row */
.price-range-inputs {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.price-range-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-range-label {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  text-align: left;
}

.price-range-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px 14px;
  background-color: #fff;
  transition: border-color var(--duration-short) ease;
  box-sizing: border-box;
  height: 48px;
}

.price-range-input-wrapper:focus-within {
  border-color: #000;
}

.price-range-currency {
  font-size: 15px;
  color: #333;
  margin-right: 6px;
  user-select: none;
}

.price-range-input {
  border: none !important;
  outline: none !important;
  background: none !important;
  font-size: 15px;
  color: #333;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  box-shadow: none !important;
}

/* Chrome, Safari, Edge, Opera: remove spinner controls */
.price-range-input::-webkit-outer-spin-button,
.price-range-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox: remove spinner controls */
.price-range-input[type=number] {
  -moz-appearance: textfield;
}

/* Slider styling */
.price-slider-container {
  position: relative;
  height: 24px;
  margin: 16px 0 32px;
  display: flex;
  align-items: center;
}

.price-slider-track {
  position: absolute;
  height: 4px;
  border-radius: 2px;
  width: 100%;
  background: #ccc;
  z-index: 1;
}

.price-slider-range {
  position: absolute;
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  pointer-events: none;
  margin: 0;
  z-index: 2;
}

/* Style range thumbs */
.price-slider-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform var(--duration-short) ease;
}

.price-slider-range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.price-slider-range::-webkit-slider-thumb:active {
  transform: scale(1.1);
  background: #000;
}

.price-slider-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform var(--duration-short) ease;
}

.price-slider-range::-moz-range-thumb:hover {
  transform: scale(1.1);
}

.price-slider-range::-moz-range-thumb:active {
  transform: scale(1.1);
  background: #000;
}

/* Hide default currency labels and helper texts in Dawn price facet */
.facets-container .field-currency,
.mobile-facets__details .field-currency,
.facets__price > .field-currency {
  display: none !important;
}

.facets-container .field,
.mobile-facets__details .field,
.facets__price > .field {
  display: none !important;
}

/* Hide the "The highest price is..." helper texts */
.facets__display-vertical .facets__header,
.facets__display .facets__header,
.mobile-facets__main .mobile-facets__info {
  display: none !important;
}

/* Mobile Filter Footer actions redesign to match reference image */
.mobile-facets__footer {
  display: flex !important;
  gap: 16px !important;
  padding: 16px !important;
  background-color: #fff !important;
  border-top: 1px solid #eee !important;
}

.mobile-facets__footer .mobile-facets__clear-wrapper,
.mobile-facets__footer facet-remove {
  flex: none !important;
  width: calc(50% - 8px) !important;
  display: block !important;
}

.mobile-facets__footer .mobile-facets__clear-wrapper a,
.mobile-facets__footer facet-remove a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #ccc !important;
  border-radius: 8px !important;
  padding: 10px 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #333 !important;
  background-color: #fff !important;
  text-decoration: none !important;
  width: 100% !important;
  height: 100% !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}

.mobile-facets__footer .button--primary {
  flex: none !important;
  width: calc(50% - 8px) !important;
  margin-left: 0px !important;
  border-radius: 8px !important;
  padding: 10px 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  background-color: #222 !important;
  color: #fff !important;
  border: none !important;
  height: auto !important;
  line-height: 1 !important;
}

price-range {
  display: flex !important;
  flex-direction: column !important;
}

.price-slider-track {
  display: block !important;
}

/* Custom PDP Header Styling */
.custom-header-wrapper--pdp {
  padding: 0 !important;
  border-bottom: none !important;
}

.custom-pdp-header {
  padding: 4px 10px;
    border-radius: 20px;
    margin: 4px 2px;
    position: fixed;
    top: 0px;
    backdrop-filter: blur(30px);
  width: 100%;
  box-sizing: border-box;
}

.custom-pdp-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Brand Part */
.custom-pdp-header__brand-part {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-pdp-header__back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.custom-pdp-header__back-btn:hover {
  opacity: 0.7;
}

.custom-pdp-header__back-btn svg {
  display: block;
  width: 15px;
  height: 20px;
}

.custom-pdp-header__brand-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-pdp-header__brand-logo-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  flex-shrink: 0;
}

.custom-pdp-header__brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-pdp-header__brand-logo-fallback {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.custom-pdp-header__brand-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.custom-pdp-header__brand-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.custom-pdp-header__brand-meta {
  font-size: 11px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}

.custom-pdp-header__brand-star {
  color: #777;
  font-size: 10px;
}

/* Icons Part */
.custom-pdp-header__icons-part {
  display: flex;
  align-items: center;
  gap: 0px;
  padding-right: 5px;
}

.custom-pdp-header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0 4px;
  color: #333;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: color var(--duration-short) ease;
}

.custom-pdp-header__icon-btn:hover {
  color: #000;
}

.custom-pdp-header__icon-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Count Bubble overlay inside custom PDP icons */
.custom-pdp-header__cart-btn {
  position: relative;
}

.custom-pdp-header__cart-wrapper {
  position: relative;
  display: inline-block;
}

.pdp-cart-count-bubble {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #000;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  z-index: 2;
}

/* Sticky PDP Header (Optional / Responsive alignment helper) */
@media screen and (min-width: 990px) {
  /* On desktop, align PDP header items */
  .custom-pdp-header {
    padding: 12px 24px;
  }
  .custom-pdp-header__brand-name {
    font-size: 16px;
  }
  .custom-pdp-header__brand-meta {
    font-size: 12px;
  }
}

/* Custom Mobile PDP Media Gallery & Overlay Thumbnails */
@media screen and (max-width: 749px) {
  /* Allow relative container mapping for absolute overlays */
  .product__media-wrapper {
    position: relative !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    margin-top: 0 !important;
    padding: 0 0 35px 0 !important; /* bottom padding = half thumbnail height so strip peeks out */
  }
  
  .product__media-wrapper media-gallery {
    position: relative !important;
    display: block !important;
    overflow: visible !important; /* allow thumbnails to peek below the boundary */
  }

  /* Make sure thumbnails slider straddles the bottom edge of the gallery viewer */
  .product__media-wrapper media-gallery slider-component.thumbnail-slider {
    display: block !important;
    position: absolute !important;
    bottom: -35px !important; /* half of 70px thumbnail height = straddles boundary */
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }

  /* Hide navigation arrow buttons for mobile overlay thumbnails */
  .product__media-wrapper media-gallery slider-component.thumbnail-slider > button.slider-button {
    display: none !important;
  }

  /* Arrange thumbnails horizontally in a clean, scrollable row */
  .product__media-wrapper media-gallery slider-component.thumbnail-slider ul.thumbnail-list {
    display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        padding: 0 0px !important;
        gap: 8px !important;
        justify-content: center;
        box-sizing: border-box !important;
        scroll-snap-type: x mandatory !important;
        backdrop-filter: blur(20px);
        width: 100% !important;
        margin: auto;
        border-radius: 0 6px 0 6px;
  }

  .product__media-wrapper media-gallery slider-component.thumbnail-slider ul.thumbnail-list::-webkit-scrollbar {
    display: none !important;
  }

  /* Styling individual thumbnail items (Aspect Ratio 3:4) */
  .product__media-wrapper media-gallery slider-component.thumbnail-slider ul.thumbnail-list li.thumbnail-list__item {
    flex: 0 0 52px !important;
    width: 52px !important;
    height: 70px !important;
    padding: 0 !important;
    margin: 0 !important;
    scroll-snap-align: start !important;
  }

  .product__media-wrapper media-gallery slider-component.thumbnail-slider ul.thumbnail-list li.thumbnail-list__item button.thumbnail {
    width: 100% !important;
    height: 100% !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 6px !important;
    background: transparent !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Thicker solid white border on active item with subtle shadow */
  .product__media-wrapper media-gallery slider-component.thumbnail-slider ul.thumbnail-list li.thumbnail-list__item button.thumbnail[aria-current="true"] {
    border: 2px solid #ffffff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
  }

  .product__media-wrapper media-gallery slider-component.thumbnail-slider ul.thumbnail-list li.thumbnail-list__item button.thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 4px !important;
  }

  /* Force main viewer slider to span full width and hide default pagination counter */
  .product__media-wrapper slider-component:not(.thumbnail-slider) {
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
  }

  .product__media-wrapper slider-component:not(.thumbnail-slider) .slider-buttons {
    display: none !important;
  }

  .product__media-wrapper ul.product__media-list {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .product__media-wrapper ul.product__media-list::-webkit-scrollbar {
    display: none !important;
  }

  .product__media-wrapper ul.product__media-list li.product__media-item {
    flex: 0 0 100vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
    scroll-snap-align: start !important;
  }
  
  .product__media-wrapper ul.product__media-list li.product__media-item .media {
    border-radius: 0 !important;
    border: none !important;
  }

  /* Reset page padding and gaps so mobile PDP media starts at y = 0 */
  html,
  body.template-product,
  body.template-product #MainContent {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  /* Target main product template section wrapper and any announcement bar container on mobile product pages */
  div[id^="shopify-section-"][id*="announcement"],
  .announcement-bar-section,
  .announcement-bar {
    display: none !important;
  }

  div[id^="shopify-section-"][id$="__main"],
  div[id^="shopify-section-"][id*="main-product"] {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  product-info[id^="MainProduct-"] {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  product-info[id^="MainProduct-"] .page-width {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }

  product-info[id^="MainProduct-"] .product__info-wrapper {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }

  /* gallery container must not clip the peeking thumbnails */
  .product__media-wrapper {
    height: auto !important;
  }
  
  .product__media-wrapper media-gallery {
    height: calc(100vw / var(--first-media-aspect-ratio, 1.0)) !important;
    display: block !important;
    position: relative !important;
    overflow: visible !important;
  }

  .product__media-wrapper slider-component:not(.thumbnail-slider) {
    height: 100% !important;
    display: block !important;
  }

  .product__media-wrapper ul.product__media-list {
    height: 100% !important;
    display: flex !important;
  }

  .product__media-wrapper ul.product__media-list li.product__media-item {
    height: 100% !important;
    display: flex !important;
    align-items: flex-start !important; /* Keep aligned to top */
  }

  .product__media-wrapper ul.product__media-list li.product__media-item .product-media-container {
    height: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .product__media-wrapper modal-opener.product__modal-opener {
    height: 100% !important;
    display: block !important;
  }

  .product__media-wrapper ul.product__media-list li.product__media-item .media {
    height: 100% !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Ensure the image fills the container fully and is contain fit (no cropping on X/Y axis) */
  .product__media-wrapper ul.product__media-list li.product__media-item img {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
  }

  /* Make the floating header layout fit flush to the very top with no margin space gaps */
  .custom-pdp-header {
    /* margin: 0 !important;
    top: 0 !important;
    border-radius: 0 !important; */
  }

  /* --- Mobile PDP Custom Title & Price Bar --- */
  .pdp-mobile-title-price {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 12px 15px !important;
    margin: 0 -15px 0px -15px !important;
    background-color: #ffffff !important;
  }

  .pdp-mobile-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    flex: 1 !important;
  }

  .pdp-mobile-price {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    flex-shrink: 0 !important;
  }

  .pdp-mobile-price-main {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
            line-height: 13px;
  }

  .pdp-mobile-price-compare {
    font-size: 12px !important;
    color: #71717a !important;
    text-decoration: line-through !important;
    line-height: 16px;
  }

  /* --- Mobile PDP Size Options & Size Chart Link Alignment --- */
  .product-form__input--pill {
    display: block !important;
    margin: 15px 0 !important;
    border: none !important;
    padding: 0 !important;
  }

  .product-form__input--pill legend.form__label {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 0 2px 0 !important;
    padding: 0 !important;
    font-size: 13px !important;
    color: #555 !important;
    font-weight: 500 !important;
  }

  .product-form__input--pill legend.form__label span {
    text-transform: capitalize !important;
  }

  .pdp-size-chart-link {
    font-size: 12px !important;
    color: #1a1a1a !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
    cursor: pointer !important;
  }

  /* --- Mobile PDP Square Size Variant Pills --- */
  .product-form__input--pill input[type='radio'] + label {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    border: 1px solid #e4e4e7 !important;
    border-radius: 8px !important;
    min-width: 35px !important;
    height: 35px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 10px !important;
    margin: 0 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    box-sizing: border-box !important;
  }

  .product-form__input--pill input[type='radio'] + label::before {
    display: none !important;
  }

  .product-form__input--pill input[type='radio']:checked + label {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #000000 !important;
  }

  .product-form__input--pill input[type='radio']:disabled + label,
  .product-form__input--pill input[type='radio'].disabled + label {
    border-color: #f4f4f5 !important;
    color: #a1a1aa !important;
    background-color: #fafafa !important;
    text-decoration: line-through !important;
  }

  /* Hide standard blocks marked desktop-only on mobile */
  .desktop-only {
    display: none !important;
  }

  /* --- Mobile Product Tabs Styling --- */
  .tab-container {
    background-color: #ffffff !important;
    border-radius: 20px !important;
    padding: 12px 15px !important;
    margin: 5px 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
            box-shadow: 0 0 3px #bdbdbd;
  }

  .tabs {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  button.tab-btn {
    background: transparent !important;
    border: none !important;
    padding: 6px 0 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #71717a !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    transition: all var(--duration-short) ease !important;
    outline: none !important;
    box-shadow: none !important;
  }

  button.tab-btn.active {
    color: #000000 !important;
    border-bottom: 2px solid #000000 !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
  }

  button.tab-btn span {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #a1a1aa !important;
  }

  .tab-container .content {
    display: none !important;
    padding: 4px 0 !important;
  }

  .tab-container .content.active {
    display: block !important;
  }

  /* Content specifics */
  .tab-container .content .meta_data {
    font-size: 12px !important;
    line-height: 1.6 !important;
    color: #27272a !important;
  }

  .tab-container .content h3 {
    font-size: 13px !important;
    font-weight: 700 !important;
    margin: 12px 0 6px 0 !important;
  }

  .tab-container .content .m_0 {
    font-size: 12px !important;
    line-height: 1.5 !important;
    color: #52525b !important;
  }

  /* Timeline flex styles */
  .tab-container .content .flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 12px !important;
    padding: 4px 0 !important;
    color: #27272a !important;
  }

  .tab-container .content .green {
    color: #16a34a !important;
    font-weight: 600 !important;
  }

  /* Buyers protection flex */
  .tab-container .content .buyersProtection {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 6px 0 !important;
  }

  .tab-container .content .buyersProtection .icon {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 12px !important;
    color: #27272a !important;
  }

  .tab-container .content .buyersProtection img {
    width: 16px !important;
    height: 16px !important;
    object-fit: contain !important;
  }

  /* --- Mobile Product Page Main Buy Buttons Layout --- */
  .product-form__buttons {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 15px 0 !important;
    padding: 0 !important;
  }

  .product-form__buttons > * {
    margin: 0 !important;
  }

  .product-form__submit,
  .shopify-payment-button {
    flex: 1 1 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    margin: 0 !important;
  }

  /* Main Add to Bag button - right side, solid black background */
  .product-form__submit {
    height: 48px !important;
    border-radius: 12px !important;
    background-color: #121212 !important;
    color: #ffffff !important;
    border: none !important;
    order: 2 !important; /* Move Add to Bag to the right */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    min-height: auto !important;
    box-shadow: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
  }

  .product-form__submit::before,
  .product-form__submit::after {
    display: none !important;
    content: none !important;
  }

  .product-form__submit:hover {
    background-color: #000000 !important;
  }

  .product-form__submit span {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
  }

  /* Main Buy Now button - left side, outlined white background */
  .shopify-payment-button {
    order: 1 !important; /* Move Buy Now to the left */
  }

  .shopify-payment-button [role="button"],
  .shopify-payment-button__button,
  .shopify-payment-button__button--unbranded {
    height: 48px !important;
    border-radius: 12px !important;
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    border: 1px solid #e4e4e7 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    min-height: auto !important;
    box-shadow: none !important;
    text-transform: none !important;
    box-sizing: border-box !important;
    width: 100% !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
  }

  .shopify-payment-button [role="button"]::before,
  .shopify-payment-button [role="button"]::after,
  .shopify-payment-button__button::before,
  .shopify-payment-button__button::after {
    display: none !important;
    content: none !important;
  }

  .shopify-payment-button [role="button"]:hover,
  .shopify-payment-button__button:hover,
  .shopify-payment-button__button--unbranded:hover {
    background-color: #fafafa !important;
    border-color: #d4d4d8 !important;
    color: #1a1a1a !important;
    box-shadow: none !important;
  }

  /* --- Mobile PDP Action Icons next to Quantity --- */
  .pdp-quantity-row-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 10px !important;
  }

  .pdp-mobile-action-icons {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-left: auto !important;
  }

  .pdp-mobile-action-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: 1px solid #e4e4e7 !important;
    background-color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #1a1a1a !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
  }

  .pdp-mobile-action-btn:hover {
    background-color: #fafafa !important;
    border-color: #a1a1aa !important;
  }

  .pdp-mobile-action-btn svg {
    width: 18px !important;
    height: 18px !important;
    stroke: currentColor !important;
    stroke-width: 1.5 !important;
    pointer-events: none !important;
  }

  .pdp-mobile-action-btn--wishlist.active,
  .pdp-mobile-action-btn--wishlist.is-active,
  .pdp-action-btn--wishlist.active,
  .pdp-action-btn--wishlist.is-active {
    background-color: #ffffff !important;
    border-color: #e4e4e7 !important;
    color: #e02424 !important;
  }

  .pdp-mobile-action-btn--wishlist.active svg,
  .pdp-mobile-action-btn--wishlist.is-active svg,
  .pdp-action-btn--wishlist.active svg,
  .pdp-action-btn--wishlist.is-active svg {
    fill: #e02424 !important;
    stroke: #e02424 !important;
  }

  /* --- Details Tab Tag Badges Row --- */
  .pdp-tag-badges-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    gap: 8px !important;
    padding: 10px 0 !important;
    margin: 8px 0 !important;
    scrollbar-width: none !important; /* Firefox */
    -webkit-overflow-scrolling: touch !important; /* iOS momentum */
    width: 100% !important;
  }

  .pdp-tag-badges-container::-webkit-scrollbar {
    display: none !important; /* Chrome/Safari */
  }

  .pdp-tag-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 12px !important;
    background-color: #f4f4f5 !important;
    color: #52525b !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
    line-height: 1.2 !important;
    text-transform: capitalize !important;
    border: 1px solid #e4e4e7 !important;
  }

  /* --- 3-Column Mobile Layout Styles --- */
  .grid--3-col-tablet-down .grid__item {
    width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3) !important;
    max-width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3) !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .grid--3-col-tablet-down .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3) !important;
    max-width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3) !important;
  }
}

/* Desktop-only vs Mobile-only Helpers */
@media screen and (min-width: 750px) {
  .mobile-only {
    display: none !important;
  }
   .pdp-tag-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 12px !important;
    background-color: #f4f4f5 !important;
    color: #52525b !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
    line-height: 1.2 !important;
    text-transform: capitalize !important;
    border: 1px solid #e4e4e7 !important;
    margin-right: 8px;
  }
  .pdp-tag-badges-container {
    margin-top: 10px;
}
}

.product__media-wrapper media-gallery slider-component.thumbnail-slider ul.thumbnail-list{
  width: min-content;
}

/* Premium WhatsApp Floating Button */
.custom-whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.custom-whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  color: #ffffff;
}

.custom-whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  display: block;
}

@media screen and (max-width: 989px) {
  .custom-whatsapp-float {
    bottom: 62px; 
    right: 20px;
    width: 52px;
    height: 52px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  }
  .custom-whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ====================================================
   CONSOLIDATED SECTION AND COMPONENT STYLES
   ==================================================== */

/* --- Start of product-card-custom.css --- */
/* product-card-custom.css */

.product-card-custom {
  display: flex;
  flex-direction: column;
  background: transparent;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

/* Image aspect ratio container */
.product-card-custom__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5.2; /* portrait aspect matching mockup */
  border-radius: 6px;
  overflow: hidden;
  background-color: #f5f5f5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.product-card-custom__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card-custom__media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product-card-custom__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card-custom__image--secondary {
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s ease;
  z-index: 2;
}

/* Hover swap image and scale */
.product-card-custom__image-wrapper:hover .product-card-custom__image--primary {
  transform: scale(1.03);
}

.product-card-custom__image-wrapper:hover .product-card-custom__image--secondary {
  opacity: 1;
  transform: scale(1.03);
}

/* Badges (Ad / Discount) overlay */
.product-card-custom__badges {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
}

.product-card-custom__badge {
  font-size: 13px;
    font-weight: 600;
    padding: 0px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    line-height: 16px;
}

.product-card-custom__badge--ad {
  background: rgba(18, 12, 12, 0.7);
  color: #ffffff;
}

.product-card-custom__badge--sale {
  background: #e02424; /* Red badge */
  color: #ffffff;
}

.product-card-custom__badge-new {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: #ffffff;
  color: #121212;
  font-size: 11px;
  font-weight: 600;
  padding: 0px 6px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  z-index: 5;
}

/* Wishlist Button Overlay */
.product-card-custom__wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5;
  padding: 0px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
  transition: transform 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-custom__wishlist-btn svg {
  width: 24px;
  height: 24px;
  stroke: #d6d6d6;
  stroke-width: 2.2;
  fill: transparent;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.product-card-custom__wishlist-btn:hover {
  transform: scale(1.1);
}

/* Active (liked) Heart State */
.product-card-custom__wishlist-btn.is-active svg {
  fill: #e02424; /* Red solid fill */
  stroke: #e02424;
}

/* Info Row */
.product-card-custom__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 2px;
  position: relative;
}

.product-card-custom__price-wrapper {
  display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.product-card-custom__price {
  font-size: 14px;
  font-weight: 700;
  color: #121212;
  line-height: 1.2;
  font-family: inherit;
}

.product-card-custom__price--sale {
  color: #e02424; /* Red sale price */
}

.product-card-custom__price--compare {
  font-size: 11px;
  color: #6b7280;
  text-decoration: line-through;
  font-weight: 500;
  margin-top: 2px;
}

/* Add to Cart circle button */
.product-card-custom__cart-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  position: absolute;
    right: 1px;
    top: -5px;
}

.product-card-custom__cart-btn svg {
  width: 18px;
  height: 18px;
}

.product-card-custom__cart-btn:hover {
  background-color: #f7f7f7;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.product-card-custom__cart-btn.loading svg {
  animation: product-card-cart-btn-spin 1s linear infinite;
  opacity: 0.6;
}

@keyframes product-card-cart-btn-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Metadata Row (Vendor • Title) */
.product-card-custom__meta {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  color: #666666;
  padding: 0 2px;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  white-space: nowrap;
}

.product-card-custom__vendor {
  font-weight: 500;
  color: #121212;
  flex-shrink: 0;
}

.product-card-custom__meta-dot {
  color: #888888;
  flex-shrink: 0;
  margin: 0 4px;
}

.product-card-custom__title {
  color: #666666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex-grow: 1;
}

.product-card-custom__express-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background-color: #0066f6;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  width: fit-content;
  margin-top: 6px;
  margin-left: 2px;
}

.product-card-custom__express-icon svg {
  width: 11px;
  height: 11px;
  display: block;
  fill: currentColor;
}

/* Wishlist page grid and responsive display layout */
.custom-wishlist-container {
  width: 100%;
  margin-top: 1rem;
}

.custom-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .custom-wishlist-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.wishlist-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  width: 100%;
}

.wishlist-empty-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #121212;
}

.wishlist-empty-text {
  font-size: 15px;
  color: #666666;
  margin-bottom: 24px;
}

.wishlist-empty-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #121212;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.25s ease;
}

.wishlist-empty-btn:hover {
  background: #2a2a2a;
}

/* --- End of product-card-custom.css --- */

/* --- Start of section-custom-collection-tabs.css --- */
/* assets/section-custom-collection-tabs.css */

.custom-collection-tabs-container {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Header bar styling */
.custom-collection-tabs__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.custom-collection-tabs__heading {
  margin: 0;
  color: #121212;
  font-family: inherit;
  font-weight: 700;
}

/* Explore All outline button styling */
.custom-collection-tabs__explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #121212;
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.custom-collection-tabs__explore-btn:hover {
  border-color: #121212;
  background-color: #121212;
  color: #ffffff;
}

.custom-collection-tabs__explore-arrow svg {
  width: 7px;
  height: 11px;
  display: block;
  transition: transform 0.25s ease;
}

.custom-collection-tabs__explore-btn:hover .custom-collection-tabs__explore-arrow svg {
  transform: translateX(2px);
}

/* Tabs list styling */
.custom-collection-tabs__tabs-wrapper {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 30px;
  width: 100%;
}

.custom-collection-tabs__tabs-list {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none;  /* Hide scrollbar for IE/Edge */
}

.custom-collection-tabs__tabs-list::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.custom-collection-tabs__tab {
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: #71717a;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.custom-collection-tabs__tab:hover {
  color: #121212;
}

.custom-collection-tabs__tab.is-active {
  color: #121212;
  font-weight: 700;
}

.custom-collection-tabs__tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.25s ease;
}

.custom-collection-tabs__tab.is-active::after {
  background-color: #121212;
}

/* Panels and Grids styling */
.custom-collection-tabs__panel {
  display: none;
  opacity: 0;
}

.custom-collection-tabs__panel.is-active {
  display: block;
  animation: tabFadeIn 0.4s forwards ease-out;
}

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

.custom-collection-tabs__grid {
  display: grid;
  grid-template-columns: repeat(var(--desktop-columns, 4), minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.custom-collection-tabs__grid-item {
  width: 100%;
  box-sizing: border-box;
}

.custom-collection-tabs__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 0;
  color: #71717a;
}

/* Mobile responsive styles */
@media screen and (max-width: 749px) {
  .custom-collection-tabs__header {
    margin-bottom: 16px;
  }
  
  .custom-collection-tabs__tabs-wrapper {
    margin-bottom: 20px;
  }

  .custom-collection-tabs__tabs-list {
    gap: 20px;
    padding-bottom: 2px; /* Prevent bottom cut-offs */
  }

  /* Grid styles for mobile */
  .custom-collection-tabs__grid--mobile-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
  }

  .custom-collection-tabs__grid--mobile-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  /* Horizontal swipe/scroll on mobile */
  .custom-collection-tabs__grid--swipe {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 16px; /* Spacing for the scrollbar if any */
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    margin-right: -1.5rem; /* Allow bleed to screen edge */
    padding-right: 1.5rem;
  }

  .custom-collection-tabs__grid--swipe::-webkit-scrollbar {
    display: none;
  }

  .custom-collection-tabs__grid--swipe .custom-collection-tabs__grid-item {
    flex: 0 0 250px; /* Portrait item width on mobile scroll */
    max-width: 72%;
    scroll-snap-align: start;
  }

  .custom-collection-tabs__grid--swipe-2-col .custom-collection-tabs__grid-item {
    flex: 0 0 calc(46% - 7px);
    max-width: 46%;
  }

  .custom-collection-tabs__grid--swipe .custom-collection-tabs__view-all-card {
    min-height: 0;
    height: 100%;
    aspect-ratio: 1 / 1.35;
  }
}

/* View All Card Styling */
.custom-collection-tabs__view-all-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f9fafb;
  border: 1.5px dashed #d1d5db;
  border-radius: 6px;
  height: 84%;
  min-height: 280px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  padding: 24px;
}

.custom-collection-tabs__view-all-card:hover {
  background-color: #f3f4f6;
  border-color: #121212;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.custom-collection-tabs__view-all-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.custom-collection-tabs__view-all-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.custom-collection-tabs__view-all-card:hover .custom-collection-tabs__view-all-icon {
  transform: scale(1.1);
  background-color: #121212;
  color: #ffffff;
  border-color: #121212;
}

.custom-collection-tabs__view-all-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.custom-collection-tabs__view-all-text {
  font-size: 14px;
  font-weight: 700;
  color: #121212;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.custom-collection-tabs__view-all-count {
  font-size: 11px;
  font-weight: 500;
  color: #71717a;
}

/* --- End of section-custom-collection-tabs.css --- */

/* --- Start of section-collection-grid.css --- */
/* assets/section-collection-grid.css */

.collection-grid-container {
  display: block;
  position: relative;
}

.collection-grid__header {
  margin-left: 10px;
}

.collection-grid__heading {
  margin: 0;
  font-family: inherit;
  font-weight: 700;
  color: #000000;
}

/* Grid Layout */
.collection-grid-container .collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  gap: 16px;
  padding: 4px;
}

@media screen and (min-width: 768px) {
  .collection-grid-container .collection-grid {
    grid-template-columns: repeat(var(--desktop-columns, 4), 1fr); /* customizable on desktop */
    gap: 24px;
  }
  .collection-grid__header {
    margin-bottom: 32px;
  }
}

/* Card Styles */
.collection-grid__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

/* Card Image Wrapper with 3:4 Aspect Ratio */
.collection-grid__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; /* Vertical Aspect Ratio as per mockup */
  border-radius: 12px;
  overflow: hidden;
  background-color: #f5f5f5;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  margin-bottom: 12px;
}

.collection-grid__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.collection-grid__image,
.collection-grid__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-grid__placeholder {
  fill: #8a8a8a;
  padding: 32px;
  box-sizing: border-box;
}

/* Floating Discount Badge */
.collection-grid__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: #ffffff;
  border: 1px solid rgba(220, 53, 69, 0.15);
  color: #dc3545;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(220, 53, 69, 0.08);
  pointer-events: none;
}

/* Metadata Text Styles */
.collection-grid__info {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

.collection-grid__title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
  word-wrap: break-word;
}

.collection-grid__meta {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #6a6a6a;
  line-height: 1.2;
}

.collection-grid__rating {
  display: flex;
  align-items: center;
  color: #4a4a4a;
  font-weight: 500;
}

.collection-grid__star {
  color: #555555; /* Neutral/grey filled star like the mockup */
  margin-right: 3px;
  font-size: 14px;
}

.collection-grid__divider {
  margin: 0 6px;
  color: #b5b5b5;
}

.collection-grid__count {
  font-weight: 400;
}

/* Hover micro-animations */
.collection-grid__card:hover .collection-grid__image-wrapper {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.collection-grid__card:hover .collection-grid__image,
.collection-grid__card:hover .collection-grid__placeholder {
  transform: scale(1.04);
}

.collection-grid__card:hover .collection-grid__title {
  color: #000000;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 767px) {
  .collection-grid-container .collection-grid {
    gap: 12px;
  }
  
  .collection-grid__image-wrapper {
    border-radius: 5px;
    margin-bottom: 8px;
  }
  
  .collection-grid__badge {
    bottom: 8px;
    left: 8px;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
  }
  
  .collection-grid__title {
    font-size: 14px;
    margin-bottom: 2px;
  }
  
  .collection-grid__meta {
    font-size: 12px;
  }
  
  .collection-grid__star {
    font-size: 12px;
  }
}

/* Slider Layout Styling */
.collection-grid-container .collection-grid--slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  gap: 12px;
  padding: 4px 4px 16px 4px;
  margin: 0;
}

.collection-grid-container .collection-grid--slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, Edge */
}

.collection-grid-container .collection-grid--slider .collection-grid__card {
  flex: 0 0 calc((100% - 12px) / 2.2); /* 2.2 cards visible on mobile, peeking the third */
}

@media screen and (min-width: 768px) {
  .collection-grid-container .collection-grid--slider {
    gap: 24px;
    padding-bottom: 12px;
  }
  
  .collection-grid-container .collection-grid--slider .collection-grid__card {
    flex: 0 0 calc((100% - (var(--desktop-columns, 4) - 1) * 24px) / var(--desktop-columns, 4));
  }
}

/* --- End of section-collection-grid.css --- */

/* --- Start of section-collection-slider.css --- */
/* assets/section-collection-slider.css */

.collection-slider-container {
  display: block;
  position: relative;
}

.collection-slider__header {
  margin-left: 10px;
}

.collection-slider__heading {
  margin: 0;
  font-family: inherit;
  font-weight: 700;
  color: #000000;
}

/* Flex Scroll Track */
.collection-slider__track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 8px 4px 16px 4px;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari, Edge */
.collection-slider__track::-webkit-scrollbar {
  display: none;
}

/* Outfit Card Layout */
.collection-slider__card {
  flex: 0 0 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .collection-slider__card {
    flex: 0 0 calc((100% - 16px * (var(--desktop-columns, 6) - 1)) / var(--desktop-columns, 6));
  }
}

.collection-slider__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle, #fbf7f0 0%, #ecdcc9 100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.collection-slider__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.collection-slider__image,
.collection-slider__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-slider__placeholder {
  background-color: #eaeaea;
  fill: #8a8a8a;
  padding: 24px;
  box-sizing: border-box;
}

.collection-slider__label {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #2b2b2b;
  text-align: center;
  font-family: inherit;
  line-height: 1.3;
  transition: color 0.3s ease;
  width: 100%;
  word-wrap: break-word;
}

/* Hover micro-animations */
.collection-slider__card:hover .collection-slider__image-wrapper {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.collection-slider__card:hover .collection-slider__image,
.collection-slider__card:hover .collection-slider__placeholder {
  transform: scale(1.05);
}

.collection-slider__card:hover .collection-slider__label {
  color: #000000;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 767px) {
  .collection-slider__track {
    gap: 8px;
    padding-bottom: 12px;
  }

  .collection-slider__card {
    flex: 0 0 90px;
  }

  .collection-slider__image-wrapper {
    border-radius: 5px;
  }

  .collection-slider__label {
    font-size: 13px;
    margin-top: 8px;
  }
}

/* Relative Wrapper for Slide Track */
.collection-slider__relative-wrapper {
  position: relative;
  width: 100%;
}

/* Slider Disabled Layout Grid fallbacks */
@media screen and (min-width: 768px) {
  .collection-slider-container.slider-disabled-desktop .collection-slider__track {
    display: grid;
    grid-template-columns: repeat(var(--desktop-columns, 6), 1fr);
    overflow: visible;
    gap: 20px;
    padding-bottom: 0;
  }
  .collection-slider-container.slider-disabled-desktop .collection-slider__relative-wrapper {
    overflow: visible;
  }
  .collection-slider-container.slider-disabled-desktop .collection-slider__card {
    flex: unset;
    width: 100%;
  }
}

.collection-slider-container.slider-disabled-desktop .collection-slider__arrow,
.collection-slider-container.slider-disabled-desktop .collection-slider__controls-bottom {
  @media screen and (min-width: 768px) {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .collection-slider-container.slider-disabled-mobile .collection-slider__track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    overflow: visible;
    gap: 12px;
    padding-bottom: 0;
  }
}

/* Drag to scroll pointer support */
.collection-slider-container:not(.slider-disabled-desktop) .collection-slider__track {
  cursor: grab;
}
.collection-slider-container .collection-slider__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto; /* Stop smooth scrolling during drag actions */
  user-select: none;
}
.collection-slider-container .collection-slider__track.is-dragging .collection-slider__card {
  pointer-events: none; /* Disable card clicks while dragging */
}
.collection-slider-container .collection-slider__track.is-dragging .collection-slider__image-wrapper {
  transform: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
}

/* Navigation Arrows (Sides Layout) */
.collection-slider__arrow {
  position: absolute;
  top: 50px; /* Vertically centered relative to the 140x140 image card */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  color: rgb(var(--color-foreground));
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

@media screen and (min-width: 768px) {
  .collection-slider__arrow--prev {
    left: -20px;
  }
  .collection-slider__arrow--next {
    right: -20px;
  }
}

@media screen and (max-width: 767px) {
  .collection-slider__arrow {
    top: 27px; /* Center with the 90x90 image card on mobile */
    width: 36px;
    height: 36px;
  }
  .collection-slider__arrow--prev {
    left: 5px;
  }
  .collection-slider__arrow--next {
    right: 5px;
  }
}

.collection-slider__arrow:not([disabled]):hover {
  background-color: #ffffff;
  color: rgb(var(--color-foreground));
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.collection-slider__arrow[disabled] {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Caret icon rotations */
.collection-slider__arrow--prev .icon,
.collection-slider__arrow-bottom--prev .icon {
  transform: rotate(90deg);
  width: 10px;
  height: 10px;
}

.collection-slider__arrow--next .icon,
.collection-slider__arrow-bottom--next .icon {
  transform: rotate(-90deg);
  width: 10px;
  height: 10px;
}

/* Bottom Controls Layout (<  • •  >) */
.collection-slider__controls-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

/* Bottom Arrows styling */
.collection-slider__arrow-bottom {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgb(var(--color-foreground));
  transition: all 0.2s ease;
  padding: 0;
}

.collection-slider__arrow-bottom:not([disabled]):hover {
  background-color: #f7f7f7;
  transform: scale(1.05);
}

.collection-slider__arrow-bottom[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Pagination Dots */
.collection-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.collection-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d1d1d1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-slider__dot:hover {
  background-color: #a3a3a3;
}

.collection-slider__dot.is-active {
  background-color: #000000;
  width: 16px;
  border-radius: 4px; /* Sleek pill indicator */
}

/* Responsive visibility helper classes */
@media screen and (min-width: 768px) {
  .desktop-hide {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .mobile-hide {
    display: none !important;
  }
}


/* --- End of section-collection-slider.css --- */

/* --- Start of section-custom-banner-slider.css --- */
/* assets/section-custom-banner-slider.css */

.custom-banner-slider-container {
  display: block;
  position: relative;
  width: 100%;
}

.custom-banner-slider-container slideshow-component {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.custom-banner-slider-track {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
  list-style: none;
  scrollbar-width: none;
}

.custom-banner-slider-track::-webkit-scrollbar {
  display: none;
}

.custom-banner-slider-track .slider__slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  scroll-snap-align: start;
  position: relative;
}

.custom-banner-slide {
  display: block;
  width: 100%;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  line-height: 0;
}

.custom-banner-slide__picture {
  display: block;
  width: 100%;
}

.custom-banner-slide__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Fallback placeholder banner */
.custom-banner-slide__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 4;
  background-color: #f3f3f3;
  color: #888;
  font-family: inherit;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .custom-banner-slide__placeholder {
    aspect-ratio: 16 / 5;
  }
}

/* Slideshow navigation overlays */
.custom-banner-slider-container .slideshow__controls {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.custom-banner-slider-container .slider-button {
  color: #333333;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.custom-banner-slider-container .slider-button svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.custom-banner-slider-container .slider-counter {
  color: #333333;
  font-size: 12px;
  font-weight: 600;
  margin: 0 8px;
}

.custom-banner-slider-container .slider-counter__link {
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.custom-banner-slider-container .slider-counter__link .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  display: block;
  transition: background 0.3s ease, transform 0.3s ease;
}

.custom-banner-slider-container .slider-counter__link--active .dot {
  background: #000000;
  transform: scale(1.3);
}

/* --- End of section-custom-banner-slider.css --- */

/* --- Start of section-home-masonry-grid.css --- */
/* assets/section-home-masonry-grid.css */

.home-masonry-grid-container {
  display: block;
  position: relative;
}

.home-masonry-grid-container .home-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Grid item styles */
.home-masonry-grid-container .home-masonry-grid__item {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  text-decoration: none;
  overflow: hidden;
  border-radius: 4px;
  background-color: #f4f4f4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-masonry-grid-container .home-masonry-grid__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home-masonry-grid-container .home-masonry-grid__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-masonry-grid-container .home-masonry-grid__image,
.home-masonry-grid-container .home-masonry-grid__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-masonry-grid-container .home-masonry-grid__placeholder {
  background-color: #eaeaea;
  fill: #8a8a8a;
  padding: 20px;
  box-sizing: border-box;
}

.home-masonry-grid-container .home-masonry-grid__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0) 100%) !important;
  z-index: 2;
  transition: background-color 0.4s ease;
}

.home-masonry-grid-container .home-masonry-grid__content {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, #ffffff00, #000000);
}

.home-masonry-grid-container .home-masonry-grid__title {
  color: #ffffff;
  margin: 0;
  font-family: inherit;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Desktop Grid Position Mappings & Aspect Ratios */
/* Festive Edit (164x200) */
.home-masonry-grid-container .home-masonry-grid__item--slot_1 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: 164 / 200;
}

/* Western Wear (78x200) */
.home-masonry-grid-container .home-masonry-grid__item--slot_2 {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  aspect-ratio: 78 / 200;
}

/* Footwear (78x200) */
.home-masonry-grid-container .home-masonry-grid__item--slot_3 {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
  aspect-ratio: 78 / 200;
}

/* Daily Edit (164x96) */
.home-masonry-grid-container .home-masonry-grid__item--slot_4 {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
  aspect-ratio: 164 / 96;
}

/* Accessories (78x96) */
.home-masonry-grid-container .home-masonry-grid__item--slot_5 {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
  aspect-ratio: 78 / 96;
}

/* Jewelry (78x96) */
.home-masonry-grid-container .home-masonry-grid__item--slot_6 {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
  aspect-ratio: 78 / 96;
}

/* Hover micro-animations */
.home-masonry-grid-container .home-masonry-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.home-masonry-grid-container .home-masonry-grid__item:hover .home-masonry-grid__image,
.home-masonry-grid-container .home-masonry-grid__item:hover .home-masonry-grid__placeholder {
  transform: scale(1.04);
}

.home-masonry-grid-container .home-masonry-grid__item:hover .home-masonry-grid__overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.4) 45%,
      rgba(0, 0, 0, 0) 100%) !important;
}

/* Responsive Mobile Styles */
@media screen and (max-width: 767px) {
  .home-masonry-grid-container .home-masonry-grid {
    gap: 7px;
  }

  .home-masonry-grid-container .home-masonry-grid__content {
    bottom: 0px;
  }

  .home-masonry-grid-container .home-masonry-grid__title {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}
/* --- End of section-home-masonry-grid.css --- */

/* --- Start of section-custom-categories.css --- */
/* assets/section-custom-categories.css */

.custom-categories-container {
  display: block;
  position: relative;
  font-family: inherit;
  margin-left: 10px;
}

/* 1. Search Bar Styling */
.custom-categories__search-container {
  margin-bottom: 0px;
  width: 100%;
}
input#CategoriesSearchInput:focus-visible, input#search-input-field:focus-visible {
    box-shadow: none;
}
.custom-categories__search-bar {
  background: #fcfcfc;
  border: 1.5px solid #eaeaea;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0px 14px;
  gap: 10px;
  box-sizing: border-box;
}

.custom-categories__search-icon {
  display: inline-flex;
  align-items: center;
  color: #71717a;
  flex-shrink: 0;
}

.custom-categories__search-bar input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 15px;
  color: #121212;
  outline: none;
  padding: 10px;
  margin: 0;
}

.custom-categories__search-bar input::placeholder {
  color: #a1a1aa;
}

/* 2. Top Department Tabs scrollbar */
.custom-categories__dept-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  /* Hide for Firefox */
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 16px;
  gap: 20px;
  padding-bottom: 2px;
  justify-content: space-evenly;
}

.custom-categories__dept-tabs::-webkit-scrollbar {
  display: none;
  /* Hide for Chrome, Safari, Edge */
}

.custom-categories__dept-tab {
  background: none;
  border: none;
  padding: 10px 4px 4px 4px;
  font-size: 16px;
  font-weight: 600;
  color: #71717a;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
  box-sizing: border-box;
}

.custom-categories__dept-tab:hover {
  color: #121212;
}

.custom-categories__dept-tab.is-active {
  color: #121212;
}

.custom-categories__dept-tab.is-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: #121212;
  border-radius: 2px;
}

/* 3. Main Navigation Panels (2 columns layout) */
.custom-categories__dept-panel {
  display: none;
  /* Hidden by default */
  width: 100%;
}

/* Active dept panel — flex row, fills body height */
.custom-categories__dept-panel.is-active {
  display: flex;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
}

/* Left Sidebar (L1 parent items) */
.custom-categories__sidebar {
  width: 32%;
  border-right: 1.5px solid #eaeaea;
  display: flex;
  flex-direction: column;
  background: #fafafa;
  flex-shrink: 0;
  overflow-y: auto;
}

.custom-categories__sidebar-item {
  background: none;
  border: none;
  border-bottom: 1.5px solid #f0f0f0;
  padding: 16px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #71717a;
  cursor: pointer;
  text-align: left;
  line-height: 1.3;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  box-sizing: border-box;
  word-wrap: break-word;
}

.custom-categories__sidebar-item:hover {
  color: #121212;
  background: #f4f4f4;
}

.custom-categories__sidebar-item.is-active {
  color: #121212;
  background: #ffffff;
  border-left-color: #121212;
}

/* Right content panel */
.custom-categories__content {
  flex-grow: 1;
  width: 68%;
  padding-left: 16px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  height: calc(86vh - 100px);
  /* height: 80vh; */
}

@media only screen and (min-device-width: 430px) and (max-device-width: 430px) and (min-device-height: 932px) and (max-device-height: 932px) and (-webkit-min-device-pixel-ratio: 3) {
  .custom-categories__content {
    height: calc(80vh - 150px);

  }
}

.custom-categories__parent-sheet {
  display: none;
  width: 100%;
}

.custom-categories__parent-sheet.is-active {
  display: block;
}

/* Accordion Accordion Group */
.custom-categories__accordion-group {
  border-bottom: 1.5px solid #f3f3f3;
  width: 100%;
}

.custom-categories__accordion-group:last-child {
  border-bottom: none;
}

.custom-categories__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  cursor: pointer;
  color: #121212;
  box-sizing: border-box;
}

.custom-categories__accordion-title {
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  letter-spacing: -0.1px;
}

.custom-categories__accordion-chevron {
  display: inline-flex;
  align-items: center;
  width: 10px;
  height: 6px;
  color: #555555;
  transition: transform 0.2s ease;
}

.custom-categories__accordion-group.is-expanded .custom-categories__accordion-chevron {
  transform: rotate(180deg);
}

.custom-categories__accordion-content {
  display: none;
  padding-bottom: 20px;
  width: 100%;
}

.custom-categories__accordion-group.is-expanded .custom-categories__accordion-content {
  display: block;
}

/* Level 2 grids */
.custom-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.custom-categories__grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.custom-categories__tile-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f7f7;
  margin-bottom: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-categories__tile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.custom-categories__grid-item:hover .custom-categories__tile-image-wrapper img {
  transform: scale(1.04);
}

.custom-categories__tile-label {
  font-size: 11px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
  max-width: 100%;
}

/* Shop All Grid Card */
.shop-all-tile {
  background: #f3f3f3;
  border: 1px dashed #d0d0d0;
  box-sizing: border-box;
}

.shop-all-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.shop-all-text {
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  user-select: none;
  line-height: 1.1;
}

.shop-all-text.light {
  color: #959595;
  font-weight: 400;
}

.shop-all-text.bold {
  color: #121212;
    font-weight: 900;
    letter-spacing: 0px;
}

/* ================= DESKTOP LAYOUT OVERRIDES ================= */
@media screen and (min-width: 990px) {
  .custom-categories__sidebar {
    width: 250px;
    background: #fbfbfb;
    border-radius: 8px;
    border-right: none;
    box-shadow: inset -1px 0 0 #f0f0f0;
  }

  .custom-categories__sidebar-item {
    font-size: 14px;
    padding: 18px 16px;
  }

  .custom-categories__content {
    padding-left: 28px;
  }

  .custom-categories__accordion-title {
    font-size: 16px;
  }

  .custom-categories__grid {
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns on desktop */
    gap: 16px;
  }

  .custom-categories__tile-label {
    font-size: 12px;
  }

  .shop-all-text {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

/* ================= DESKTOP HEADER MEGA MENU STYLES ================= */
.custom-header__nav-item {
  position: static;
  /* Position mega menu absolute relative to the custom-header-wrapper */
}

.custom-header__mega-menu {
  display: flex !important;
  /* Force flex override of custom-categories__dept-panel display none */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid #eaeaea;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Prevent pointer events when hidden */
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  z-index: 99;
  padding: 24px 0;
  box-sizing: border-box;
}

/* Show mega menu on nav item hover */
@media screen and (min-width: 990px) {
  .custom-header__nav-item:hover .custom-header__mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .custom-header__menu-row {
    overflow: visible !important;
  }
}

.mega-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  box-sizing: border-box;
}

/* Adapt shared categories classes for header context */
.custom-header__mega-menu .custom-categories__sidebar {
  width: 220px;
  min-height: auto;
  height: 380px;
  overflow-y: auto;
  border-right: 1.5px solid #f0f0f0;
  background: transparent;
  padding-right: 10px;
  scrollbar-width: thin;
}

.custom-header__mega-menu .custom-categories__content {
  flex-grow: 1;
  width: auto;
  height: 380px;
  overflow-y: auto;
  padding-left: 32px;
  min-height: auto;
  scrollbar-width: thin;
}

.custom-header__mega-menu .custom-categories__accordion-group {
  border-bottom: none;
  margin-bottom: 28px;
}

.custom-header__mega-menu .custom-categories__accordion-header {
  padding: 0 0 12px 0;
  cursor: default;
  pointer-events: none;
}

.custom-header__mega-menu .custom-categories__accordion-chevron {
  display: none;
}

.custom-header__mega-menu .custom-categories__accordion-content {
  display: block !important;
  padding-bottom: 0;
}

.custom-header__mega-menu .custom-categories__grid {
  grid-template-columns: repeat(5, 1fr);
  /* 5 columns in dropdown for space efficiency */
  gap: 16px;
}

.custom-header__mega-menu .custom-categories__tile-image-wrapper {
  margin-bottom: 6px;
  border-radius: 6px;
}

.custom-header__mega-menu .custom-categories__tile-label {
  font-size: 11px;
  font-weight: 500;
  color: #555;
}

.custom-header__mega-menu .shop-all-tile {
  background: #f7f7f7;
  border: 1px dashed #cccccc;
}

/* Spacing container for childless collection grids */
.custom-categories__grid-content {
  padding-top: 16px;
  padding-bottom: 80px;
  width: 100%;
}

.custom-header__mega-menu .custom-categories__grid-content {
  padding-top: 0;
  padding-bottom: 28px;
}

/* Empty State / Customizer Helper Message Styles */
.custom-categories__empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  margin-top: 15px;
  box-sizing: border-box;
}

.custom-categories__empty-message {
  font-size: 13px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  max-width: 400px;
}
}

.shop-all-text.bold {
  color: #121212;
    font-weight: 900;
    letter-spacing: 0px;
}

/* ================= DESKTOP LAYOUT OVERRIDES ================= */
@media screen and (min-width: 990px) {
  .custom-categories__sidebar {
    width: 250px;
    background: #fbfbfb;
    border-radius: 8px;
    border-right: none;
    box-shadow: inset -1px 0 0 #f0f0f0;
  }

  .custom-categories__sidebar-item {
    font-size: 14px;
    padding: 18px 16px;
  }

  .custom-categories__content {
    padding-left: 28px;
  }

  .custom-categories__accordion-title {
    font-size: 16px;
  }

  .custom-categories__grid {
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns on desktop */
    gap: 16px;
  }

  .custom-categories__tile-label {
    font-size: 12px;
  }

  .shop-all-text {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

/* ================= DESKTOP HEADER MEGA MENU STYLES ================= */
.custom-header__nav-item {
  position: static;
  /* Position mega menu absolute relative to the custom-header-wrapper */
}

.custom-header__mega-menu {
  display: flex !important;
  /* Force flex override of custom-categories__dept-panel display none */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid #eaeaea;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Prevent pointer events when hidden */
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  z-index: 99;
  padding: 24px 0;
  box-sizing: border-box;
}

/* Show mega menu on nav item hover */
@media screen and (min-width: 990px) {
  .custom-header__nav-item:hover .custom-header__mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .custom-header__menu-row {
    overflow: visible !important;
  }
}

.mega-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  box-sizing: border-box;
}

/* Adapt shared categories classes for header context */
.custom-header__mega-menu .custom-categories__sidebar {
  width: 220px;
  min-height: auto;
  height: 380px;
  overflow-y: auto;
  border-right: 1.5px solid #f0f0f0;
  background: transparent;
  padding-right: 10px;
  scrollbar-width: thin;
}

.custom-header__mega-menu .custom-categories__content {
  flex-grow: 1;
  width: auto;
  height: 380px;
  overflow-y: auto;
  padding-left: 32px;
  min-height: auto;
  scrollbar-width: thin;
}

.custom-header__mega-menu .custom-categories__accordion-group {
  border-bottom: none;
  margin-bottom: 28px;
}

.custom-header__mega-menu .custom-categories__accordion-header {
  padding: 0 0 12px 0;
  cursor: default;
  pointer-events: none;
}

.custom-header__mega-menu .custom-categories__accordion-chevron {
  display: none;
}

.custom-header__mega-menu .custom-categories__accordion-content {
  display: block !important;
  padding-bottom: 0;
}

.custom-header__mega-menu .custom-categories__grid {
  grid-template-columns: repeat(5, 1fr);
  /* 5 columns in dropdown for space efficiency */
  gap: 16px;
}

.custom-header__mega-menu .custom-categories__tile-image-wrapper {
  margin-bottom: 6px;
  border-radius: 6px;
}

.custom-header__mega-menu .custom-categories__tile-label {
  font-size: 11px;
  font-weight: 500;
  color: #555;
}

.custom-header__mega-menu .shop-all-tile {
  background: #f7f7f7;
  border: 1px dashed #cccccc;
}

/* Spacing container for childless collection grids */
.custom-categories__grid-content {
  padding-top: 16px;
  padding-bottom: 80px;
  width: 100%;
}

.custom-header__mega-menu .custom-categories__grid-content {
  padding-top: 0;
  padding-bottom: 28px;
}

/* Empty State / Customizer Helper Message Styles */
.custom-categories__empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  margin-top: 15px;
  box-sizing: border-box;
}

.custom-categories__empty-message {
  font-size: 13px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  max-width: 400px;
}

.custom-categories__empty-message strong {
  color: #121212;
}

.custom-header__mega-menu .custom-categories__empty-state {
  margin: 20px 0;
  padding: 30px 16px;
  background: #fafafa;
}
/* --- End of section-custom-categories.css --- */

/* ====================================================
   ACCESSIBILITY: DOT PAGINATION TAP TARGETS ENHANCEMENTS
   ==================================================== */
.collection-slider__dot,
.custom-banner-slider-container .slider-counter__link {
  position: relative;
}

.collection-slider__dot::before,
.custom-banner-slider-container .slider-counter__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
}
