/** Shopify CDN: Minification failed

Line 121:36 Unexpected "*"

**/
/* ==========================================================================
   Big Dex Comics Dark Theme Override
   Custom CSS for Dawn Theme

   Dark theme comic book storefront matching bigdexcomics.com aesthetic.
   Bold, dark, collector-focused design with yellow-green accents.

   Brand Colors:
   - Accent Yellow-Green: #e3e134 (primary accent, buttons)
   - Accent Hover:        #f0ee4a (brighter yellow-green)
   - Red:                 #d93d4f (secondary, sale badges, alerts)
   - Dark Primary:        #000000 (pure black main background)
   - Dark Secondary:      #111111 (cards, header, footer)
   - Dark Tertiary:       #1a1a1a (inputs, hover states)
   - Dark Elevated:       #222222 (modals, popups)
   - Text Primary:        #ffffff (body text)
   - Text Muted:          #919191 (muted/secondary text)
   - Border:              #2a2a2a (subtle borders)
   ========================================================================== */

/* ========== 1. GOOGLE FONTS ========== */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* ========== 2. CSS VARIABLES ========== */

:root {
  /* Big Dex brand tokens */
  --bigdex-accent: #e3e134;
  --bigdex-accent-hover: #f0ee4a;
  --bigdex-accent-rgb: 227, 225, 52;
  --bigdex-red: #d93d4f;
  --bigdex-red-hover: #e5566a;
  --bigdex-red-rgb: 217, 61, 79;
  --bigdex-bg-primary: #000000;
  --bigdex-bg-secondary: #111111;
  --bigdex-bg-tertiary: #1a1a1a;
  --bigdex-bg-elevated: #222222;
  --bigdex-text: #ffffff;
  --bigdex-text-muted: #919191;
  --bigdex-text-body: rgba(255, 255, 255, 0.85);
  --bigdex-border: #2a2a2a;
  --bigdex-border-light: #3a3a3a;

  /* Dawn font overrides */
  --font-body-family: 'Inter', sans-serif !important;
  --font-body-style: normal !important;
  --font-body-weight: 400 !important;
  --font-body-weight-bold: 700 !important;

  --font-heading-family: 'Chakra Petch', sans-serif !important;
  --font-heading-style: normal !important;
  --font-heading-weight: 700 !important;

  /* Dawn button overrides */
  --buttons-radius: 4px !important;
  --buttons-radius-outset: 4px !important;
  --buttons-border-width: 2px !important;
  --buttons-border-opacity: 1 !important;
  --buttons-shadow-opacity: 0 !important;

  /* Dawn input overrides */
  --inputs-radius: 4px !important;
  --inputs-radius-outset: 4px !important;

  /* Dawn badge overrides */
  --badge-corner-radius: 3px !important;

  /* Dawn popup overrides */
  --popup-corner-radius: 4px !important;

  /* Dawn variant pills */
  --variant-pills-radius: 4px !important;

  /* Dawn spacing */
  --spacing-sections-desktop: 0px !important;
  --spacing-sections-mobile: 0px !important;
  --grid-desktop-vertical-spacing: 24px !important;
  --grid-desktop-horizontal-spacing: 24px !important;
  --grid-mobile-vertical-spacing: 16px !important;
  --grid-mobile-horizontal-spacing: 16px !important;
}

/* ========== 3. GLOBAL DARK BACKGROUND ========== */

body {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  color: var(--bigdex-text-body) !important;
  background-color: var(--bigdex-bg-primary) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

body.gradient {
  background: var(--bigdex-bg-primary) !important;
}

/* Force dark on all Dawn color scheme containers */
.color-scheme-1,
.color-scheme-2,
.color-scheme-3,
.color-scheme-4,
.color-scheme-5 {
  background-color: var(--bigdex-bg-primary) !important;
  color: var(--bigdex-text) !important;
}

.gradient {
  background: var(--bigdex-bg-primary) !important;
}

/* Sections */
.shopify-section,
.shopify-section .section-template--*,
main#MainContent {
  background-color: var(--bigdex-bg-primary) !important;
}

/* Entire header group: fixed overlay, transparent */
.shopify-section-group-header-group {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: transparent !important;
}

.shopify-section-group-header-group .shopify-section,
.section-header {
  background: transparent !important;
}

/* Never let Dawn hide the header on scroll */
.shopify-section-header-hidden {
  top: 0 !important;
}

/* Selection highlight */
::selection {
  background-color: rgba(var(--bigdex-accent-rgb), 0.3) !important;
  color: var(--bigdex-text);
}

/* Horizontal rules */
hr {
  background-color: var(--bigdex-border) !important;
  height: 1px !important;
}

/* Caption & subtitle text */
.caption-with-letter-spacing {
  color: var(--bigdex-text-muted) !important;
}

.subtitle {
  color: var(--bigdex-text-muted) !important;
}

/* Rte content */
.rte {
  color: var(--bigdex-text-muted) !important;
}

/* ========== 4. TYPOGRAPHY ========== */

h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5, .h6,
.hxl, .hxxl {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase;
  color: var(--bigdex-text);
}

a {
  color: var(--bigdex-text);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--bigdex-accent);
}

/* Keep dark text on accent-bg buttons when hovered */
.comic-carousel__cta:hover {
  color: #000 !important;
}

/* Desktop heading sizes */
@media screen and (min-width: 990px) {
  h1, .h1 {
    font-size: 4.8rem !important;
  }

  h2, .h2 {
    font-size: 3.6rem !important;
  }

  h3, .h3 {
    font-size: 2.4rem !important;
  }
}

/* Tablet heading sizes */
@media screen and (min-width: 750px) and (max-width: 989px) {
  h1, .h1 {
    font-size: 3.4rem !important;
  }

  h2, .h2 {
    font-size: 2.6rem !important;
  }
}

/* Mobile heading sizes */
@media screen and (max-width: 749px) {
  h1, .h1 {
    font-size: 2.8rem !important;
  }

  h2, .h2 {
    font-size: 2.2rem !important;
  }

  h3, .h3 {
    font-size: 1.8rem !important;
  }
}

/* ========== 5. HEADER & NAVIGATION ========== */

/* Disable Dawn's built-in sticky header since we handle it at group level */
.shopify-section-header-sticky {
  position: static !important;
}

.section-header.animate {
  transition: none !important;
}

/* Reset Dawn's built-in header shadow */
.shopify-section-header-sticky:not(.shopify-section-header-hidden) .header-wrapper {
  box-shadow: none;
}

/* Header wrapper - transparent at top, padded for breathing room */
.header-wrapper {
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
  color: #fff !important;
  border-bottom: none !important;
  padding-top: 24px;
  padding-bottom: 24px;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.header-wrapper > .header {
  width: 100%;
}

.header-wrapper .header__icon {
  color: #fff !important;
}

/* Scrolled state: box-shadow appears, padding + bg managed by JS for smooth ramp */
.scrolled-past-header .header-wrapper {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* Light nav state: white bg, dark text */
.header--light .header-wrapper {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
}

.header--light .header__heading-link .h2,
.header--light .header-menu__item span,
.header--light .header__icon,
.header--light .list-menu__item--link,
.header--light a.header__menu-item {
  color: #000 !important;
}

/* Remove gap between header and first section */
.section-header {
  margin-bottom: 0 !important;
}

/* Main header grid — compact like reference site */
.header {
  min-height: 72px;
  max-height: 80px;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  transition: min-height 0.3s ease, padding 0.3s ease;
}

/* Logo / heading text */
.header__heading-link .h2 {
  font-family: 'Chakra Petch', sans-serif !important;
  color: var(--bigdex-text) !important;
  font-size: 3.2rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  transition: transform 0.3s ease, max-width 0.3s ease, font-size 0.3s ease;
}

.header__heading-link:hover .h2 {
  color: var(--bigdex-accent) !important;
}

/* Logo image transition */
.header__heading-logo-wrapper,
.header__heading-link img {
  transition: transform 0.3s ease, max-width 0.3s ease;
}

/* Navigation links */
.header__inline-menu .header__menu-item,
.header__inline-menu .list-menu__item {
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: var(--bigdex-text) !important;
  padding: 0.8rem 1rem !important;
  transition: color 0.3s ease;
}

.header__inline-menu .header__menu-item:hover,
.header__inline-menu .list-menu__item:hover {
  color: var(--bigdex-accent) !important;
}

/* Active nav link */
.header__inline-menu .header__active-menu-item {
  color: var(--bigdex-accent) !important;
}

/* Header localization selectors (currency + language) — keep compact and inline */
.header .localization-form {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0.4rem !important;
  align-items: center !important;
}
.header .localization-selector.link,
.header .disclosure__button {
  font-size: 1.1rem !important;
  padding: 0.4rem 0.6rem !important;
  white-space: nowrap !important;
}

/* Header icons (cart, search, account) */
.header__icon {
  color: var(--bigdex-text) !important;
  transition: color 0.3s ease;
}

.header__icon:hover {
  color: var(--bigdex-accent) !important;
}

/* Cart count badge */
.cart-count-bubble {
  background-color: var(--bigdex-accent) !important;
  color: #000000 !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  min-width: 1.8rem;
  min-height: 1.8rem;
  border-radius: 50%;
}

/* Search bar styling */
.search__input {
  font-family: 'Inter', sans-serif !important;
  border-radius: 4px !important;
  border: 1px solid var(--bigdex-border) !important;
  background: var(--bigdex-bg-tertiary) !important;
  color: var(--bigdex-text) !important;
}

.search__input:focus {
  border-color: var(--bigdex-accent) !important;
}

/* Predictive search dropdown */
.predictive-search {
  border-radius: 0 0 4px 4px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5) !important;
  background: var(--bigdex-bg-secondary) !important;
}

/* Drawer menu (mobile) */
.menu-drawer {
  background-color: var(--bigdex-bg-secondary) !important;
  font-family: 'Inter', sans-serif !important;
}

.menu-drawer__menu-item {
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--bigdex-text) !important;
}

.menu-drawer__menu-item:hover {
  color: var(--bigdex-accent) !important;
}

/* Desktop logo: show full logo, hide mobile square logo */
.header__heading-logo--mobile {
  display: none !important;
}

.header__heading-logo--desktop {
  display: block;
}

/* Mobile header adjustments */
@media screen and (max-width: 749px) {
  .header {
    min-height: 48px;
    max-height: 56px;
  }

  .header__heading-link .h2 {
    font-size: 2rem !important;
  }

  /* Hide desktop wide logo, show mobile square logo */
  .header__heading-logo--desktop {
    display: none !important;
  }

  .header__heading-logo--mobile {
    display: block !important;
    width: 36px !important;
    height: auto !important;
    max-width: 36px !important;
  }

  .header__heading-logo-wrapper {
    max-width: 44px !important;
    flex-shrink: 0;
  }
}

/* Tablet header adjustments */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .header {
    min-height: 52px;
    max-height: 60px;
  }
}

/* ========== 6. ANNOUNCEMENT BAR ========== */

/* Announcement/utility bar - always solid dark, collapses on scroll */
.announcement-bar-section {
  position: relative;
  z-index: 2;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  max-height: 60px; /* generous default so it shows at top */
}

.utility-bar,
.announcement-bar-section,
.announcement-bar {
  background: rgba(0, 0, 0, 0.85) !important;
  color: var(--bigdex-accent) !important;
  border-bottom: none !important;
}

/* Light state announcement bar */
.header--light .utility-bar,
.header--light .announcement-bar-section,
.header--light .announcement-bar {
  background: #f0f0f0 !important;
}

.header--light .announcement-bar__message,
.header--light .announcement-bar__link {
  color: #000 !important;
}

.announcement-bar__message,
.announcement-bar__link {
  color: var(--bigdex-accent) !important;
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
}

.announcement-bar__link:hover {
  color: var(--bigdex-accent-hover) !important;
}

/* Announcement bar slider buttons */
.announcement-bar .slider-button--next,
.announcement-bar .slider-button--prev {
  color: var(--bigdex-accent) !important;
}

/* ========== 7. BUTTONS & LINKS ========== */

/* Primary button - yellow-green bg with black text */
.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded {
  border-radius: 4px !important;
  min-height: 50px !important;
  padding: 0 32px !important;
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  background-color: var(--bigdex-accent) !important;
  color: #000000 !important;
  border: 2px solid var(--bigdex-accent) !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

/* Remove Dawn's pseudo-element border/shadow system */
.button:before,
.shopify-challenge__button:before,
.customer button:before,
.shopify-payment-button__button--unbranded:before,
.button:after,
.shopify-challenge__button:after,
.customer button:after,
.shopify-payment-button__button--unbranded:after {
  display: none !important;
}

/* Primary button hover */
.button:not([disabled]):hover,
.shopify-challenge__button:hover,
.customer button:hover {
  background-color: var(--bigdex-accent-hover) !important;
  border-color: var(--bigdex-accent-hover) !important;
  color: #000000 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(var(--bigdex-accent-rgb), 0.35) !important;
}

/* Secondary button - outlined with yellow-green border and text */
.button--secondary {
  background-color: transparent !important;
  color: var(--bigdex-accent) !important;
  border: 2px solid var(--bigdex-accent) !important;
}

.button--secondary:hover {
  background-color: var(--bigdex-accent) !important;
  color: #000000 !important;
  border-color: var(--bigdex-accent) !important;
}

/* Tertiary button */
.button--tertiary {
  background-color: transparent !important;
  color: var(--bigdex-text-muted) !important;
  border: 1px solid var(--bigdex-border) !important;
  min-height: 40px !important;
  padding: 0 20px !important;
}

.button--tertiary:hover {
  border-color: var(--bigdex-accent) !important;
  color: var(--bigdex-accent) !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: none;
}

/* Small button variant */
.button--small {
  min-height: 40px !important;
  padding: 0 20px !important;
  font-size: 1.3rem !important;
}

/* Full width button */
.button--full-width {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Shopify payment buttons */
.shopify-payment-button__button {
  border-radius: 4px !important;
  min-height: 50px !important;
  font-family: 'Inter', sans-serif !important;
}

.shopify-payment-button__button--branded {
  border-radius: 4px !important;
  min-height: 50px !important;
}

/* Mobile button adjustments */
@media screen and (max-width: 749px) {
  .button,
  .shopify-challenge__button,
  .customer button {
    min-height: 46px !important;
    padding: 0 24px !important;
    font-size: 1.3rem !important;
  }
}

/* Mobile slider peek - show ~25% of next card */
@media screen and (max-width: 749px) {
  .slider--tablet.grid--peek.grid--1-col-tablet-down .grid__item {
    width: 66% !important;
  }
}

/* Mobile slider: let CSS handle vertical scroll, JS handles horizontal swipe direction */
@media screen and (max-width: 749px) {
  .slider {
    touch-action: pan-y !important;
    overflow-x: hidden !important;
  }
  .slider .grid__item .card-wrapper {
    max-height: 70vh;
  }
}

/* ========== 8. PRODUCT CARDS ========== */

/* Align cover images to top so character faces/titles aren't cropped */
.card__media .media > img {
  object-position: top center !important;
}

/* Card wrapper */
.product-card-wrapper,
.card-wrapper {
  position: relative;
  transition: all 0.35s ease;
}

/* Card base - dark background */
.card {
  background-color: var(--bigdex-bg-secondary) !important;
  border: 1px solid var(--bigdex-border) !important;
  border-radius: 8px;
  overflow: hidden;
}

.card--card,
.card--standard .card__inner {
  border: 1px solid var(--bigdex-border) !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease;
  background-color: var(--bigdex-bg-secondary) !important;
}

/* Remove Dawn's default shadow pseudo-element */
.card--card:after,
.card--standard .card__inner:after {
  box-shadow: none !important;
}

/* Hover effect - glow on outer wrapper, zoom on image */
@media screen and (min-width: 990px) {
  .product-card-wrapper:hover,
  .card-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(var(--bigdex-accent-rgb), 0.4), 0 12px 40px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
  }

  .product-card-wrapper:hover .card--card,
  .product-card-wrapper:hover .card--standard .card__inner,
  .card-wrapper:hover .card--card,
  .card-wrapper:hover .card--standard .card__inner {
    border-color: var(--bigdex-border) !important;
    box-shadow: none !important;
  }

  .product-card-wrapper:hover .card,
  .card-wrapper:hover .card {
    border-color: var(--bigdex-border) !important;
    box-shadow: none !important;
  }

  /* Image hover zoom */
  .product-card-wrapper:hover .card__media .media img {
    transform: scale(1.05);
  }
}

/* Card media / image area */
.card__media {
  overflow: hidden;
  position: relative;
  background: var(--bigdex-bg-tertiary) !important;
}

.card__media .media img {
  transition: transform 0.5s ease !important;
}

/* Product card bottom gradient vignette */
.card__media::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bigdex-bg-secondary) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  transition: opacity 0.35s ease;
}

@media screen and (min-width: 990px) {
  .product-card-wrapper:hover .card__media::after {
    opacity: 0.7;
  }
}

/* Card information area */
.card__information {
  padding: 1.2rem 1.5rem 1.5rem !important;
}

.card__heading {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.6rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.4 !important;
  color: var(--bigdex-text) !important;
}

.card__heading a {
  text-decoration: none !important;
  color: var(--bigdex-text) !important;
}

.card__heading a:hover {
  color: var(--bigdex-accent) !important;
}

/* Hide vendor on product cards */
.card-information .caption-with-letter-spacing {
  display: none !important;
}

/* Price styling - yellow-green accent */
.price {
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  color: var(--bigdex-accent) !important;
}

.price .price-item {
  color: var(--bigdex-accent) !important;
  font-family: 'Chakra Petch', sans-serif !important;
}

.price--on-sale .price-item--regular {
  color: var(--bigdex-text-muted) !important;
  font-size: 1.4rem !important;
}

.price--on-sale .price-item--sale {
  color: var(--bigdex-red) !important;
}

/* Price on product page - larger */
.price--large {
  font-size: 2.4rem !important;
}

@media screen and (min-width: 750px) {
  .price--large {
    font-size: 2.8rem !important;
  }
}

/* Product image crossfade on hover */
@media screen and (min-width: 990px) {
  .card .media.media--hover-effect > img:first-child:not(:only-child) {
    transition: opacity 0.5s ease;
  }

  .card .media.media--hover-effect > img + img {
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
}

/* Mobile card adjustments */
@media screen and (max-width: 749px) {
  .card__heading {
    font-size: 1.3rem !important;
  }

  .price {
    font-size: 1.6rem !important;
  }

  .card__information {
    padding: 1rem 1.2rem 1.2rem !important;
  }
}

/* ========== 9. COLLECTION CARDS ========== */

.collection-list .card__heading {
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: var(--bigdex-text) !important;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 990px) {
  .collection-list .card__heading {
    font-size: 2.6rem !important;
  }
}

.collection-list .card__information {
  padding: 1.5rem !important;
}

/* Collection card media */
.collection-list .card--media {
  background-color: var(--bigdex-bg-secondary) !important;
}

.collection-list .card--media .card__inner {
  background-color: var(--bigdex-bg-secondary) !important;
}

/* Text over image - accent color */
.collection-list .card--media .card__heading,
.collection-list .card--media .card__heading a.full-unstyled-link {
  color: var(--bigdex-accent) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.collection-list .card--media .card__heading .icon-wrap svg {
  color: var(--bigdex-accent);
}

/* Collection card hover - image zoom */
.collection-list .card-wrapper:hover .card__media .media img {
  transform: scale(1.05);
}

.collection-list .card__media .media img {
  transition: transform 0.5s ease !important;
}

/* Collection hero / banner */
.collection-hero__title {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em !important;
  color: var(--bigdex-text) !important;
}

.collection-hero__description {
  font-family: 'Inter', sans-serif !important;
  color: var(--bigdex-text-muted) !important;
}

/* ========== 10. FORM ELEMENTS ========== */

.field__input,
.customer .field input,
.select__select {
  font-family: 'Inter', sans-serif !important;
  border-radius: 4px !important;
  min-height: 48px;
  background: var(--bigdex-bg-tertiary) !important;
  border-color: var(--bigdex-border) !important;
  color: var(--bigdex-text) !important;
  transition: border-color 0.3s ease;
}

.field__input:focus,
.customer .field input:focus,
.select__select:focus {
  border-color: var(--bigdex-accent) !important;
  box-shadow: 0 0 0 1px var(--bigdex-accent) !important;
}

.field__label {
  font-family: 'Inter', sans-serif !important;
  color: var(--bigdex-text-muted) !important;
}

/* Quantity selector */
.quantity {
  border-radius: 4px !important;
  border-color: var(--bigdex-border) !important;
  background-color: var(--bigdex-bg-tertiary) !important;
}

.quantity__input {
  color: var(--bigdex-text) !important;
  background-color: var(--bigdex-bg-tertiary) !important;
}

.quantity__button {
  color: var(--bigdex-text) !important;
  transition: color 0.3s ease;
}

.quantity__button:hover {
  color: var(--bigdex-accent) !important;
}

/* Textarea */
textarea.field__input {
  min-height: 120px;
}

/* ========== 11. FOOTER ========== */

.footer,
.footer.gradient,
.footer.color-scheme-1,
.footer.color-scheme-2,
.footer.color-scheme-3 {
  background-color: var(--bigdex-bg-secondary) !important;
  background: var(--bigdex-bg-secondary) !important;
  color: var(--bigdex-text) !important;
  border-top: 2px solid var(--bigdex-accent) !important;
  padding-top: 6rem;
}

.footer__content-top {
  padding-bottom: 5rem;
}

/* Footer headings */
.footer-block__heading {
  font-family: 'Chakra Petch', sans-serif !important;
  color: var(--bigdex-text) !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
  margin-bottom: 2rem !important;
}

/* Footer text and links */
.footer-block__details-content,
.footer-block__details-content p,
.footer-block__brand-info p {
  color: var(--bigdex-text-muted) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.4rem !important;
  line-height: 1.8 !important;
}

.footer-block__details-content .list-menu__item--link {
  color: var(--bigdex-text-muted) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.4rem !important;
  transition: color 0.3s ease;
  text-decoration: none !important;
}

.footer-block__details-content .list-menu__item--link:hover {
  color: var(--bigdex-accent) !important;
}

/* Footer bottom bar */
.footer__content-bottom {
  border-top: 1px solid var(--bigdex-border) !important;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Footer copyright */
.copyright__content,
.copyright__content a {
  color: var(--bigdex-text-muted) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.2rem !important;
}

.copyright__content a:hover {
  color: var(--bigdex-accent) !important;
}

/* Footer policies */
.policies li::before {
  color: var(--bigdex-text-muted) !important;
}

.policies li a {
  color: var(--bigdex-text-muted) !important;
}

.policies li a:hover {
  color: var(--bigdex-accent) !important;
}

/* Footer social icons */
.footer__list-social .list-social__link {
  color: var(--bigdex-text-muted) !important;
  transition: color 0.3s ease;
}

.footer__list-social .list-social__link:hover {
  color: var(--bigdex-accent) !important;
}

/* Footer payment icons */
.footer__payment .list-payment .payment-icon {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer__payment .list-payment .payment-icon:hover {
  opacity: 1;
}

/* Footer localization */
.footer__localization h2 {
  color: var(--bigdex-text-muted) !important;
}

.footer .localization-form__select {
  color: var(--bigdex-text) !important;
  background-color: transparent !important;
  border-color: var(--bigdex-border) !important;
}

/* Mobile footer adjustments */
@media screen and (max-width: 749px) {
  .footer {
    padding-top: 4rem;
  }

  .footer-block__heading {
    font-size: 1.8rem !important;
  }
}

/* ========== 12. SLIDESHOW/BANNER ========== */

/* Banner / Hero section */
.banner {
  overflow: hidden;
}

.banner__box {
  font-family: 'Inter', sans-serif !important;
}

/* Banner overlay for dark theme */
.banner--content-align-center .banner__box,
.banner--content-align-left .banner__box {
  background: transparent !important;
}

.banner__heading {
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 5.6rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
  line-height: 1.1 !important;
  color: var(--bigdex-text) !important;
}

@media screen and (min-width: 750px) {
  .banner__heading {
    font-size: 7.2rem !important;
  }
}

@media screen and (min-width: 990px) {
  .banner__heading {
    font-size: 9rem !important;
  }
}

@media screen and (max-width: 749px) {
  .banner__heading {
    font-size: 2.8rem !important;
  }
}

.banner__text {
  font-family: 'Inter', sans-serif !important;
  font-size: 2rem !important;
  line-height: 1.6;
  max-width: 600px;
  color: var(--bigdex-text-body) !important;
}

@media screen and (min-width: 990px) {
  .banner__text {
    font-size: 2.4rem !important;
  }
}

@media screen and (max-width: 749px) {
  .banner__text {
    font-size: 1.4rem !important;
  }
}

.banner__box .banner__heading + * {
  margin-top: 1rem;
  color: var(--bigdex-text-body) !important;
}

/* Banner buttons - yellow-green accent */
.banner .button {
  min-height: 50px !important;
  padding: 0 35px !important;
}

/* Slideshow component */
slideshow-component {
  overflow: hidden;
}

/* Slider height */
.slideshow .banner {
  min-height: 350px !important;
}

@media screen and (min-width: 750px) {
  .slideshow .banner,
  .slideshow--large .banner {
    min-height: 500px !important;
    max-height: 600px !important;
  }
}

.slideshow__text.banner__box {
  max-width: 60rem !important;
}

.slideshow__text .banner__heading {
  margin-bottom: 1.5rem;
}

.slideshow__text .banner__text {
  margin-bottom: 2rem;
}

/* Slideshow navigation */
.slider-counter {
  font-family: 'Inter', sans-serif !important;
}

/* Slideshow controls bar - transparent */
.slideshow__controls {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 4px;
}

/* Slideshow dots */
.slider-counter--dots .slider-counter__link {
  background: transparent !important;
  border: none !important;
}

.slider-counter__link--dots .dot {
  border-color: rgba(255, 255, 255, 0.5) !important;
  background-color: transparent !important;
}

.slider-counter__link--active.slider-counter__link--dots .dot {
  background-color: var(--bigdex-accent) !important;
  border-color: var(--bigdex-accent) !important;
}

/* Slideshow prev/next arrow buttons */
.slideshow__controls .slider-button--prev,
.slideshow__controls .slider-button--next {
  color: var(--bigdex-accent) !important;
}

/* ========== 13. IMAGE WITH TEXT ========== */

.image-with-text__heading {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: var(--bigdex-text) !important;
}

.image-with-text__text {
  font-family: 'Inter', sans-serif !important;
  color: var(--bigdex-text-muted) !important;
}

/* Dark background on text areas */
.image-with-text .image-with-text__content {
  background-color: var(--bigdex-bg-secondary) !important;
}

.image-with-text .color-scheme-1,
.image-with-text .color-scheme-2,
.image-with-text .color-scheme-3 {
  background-color: var(--bigdex-bg-secondary) !important;
}

/* ========== 14. MULTICOLUMN ========== */

.multicolumn .multicolumn-card__heading {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: var(--bigdex-text) !important;
}

.multicolumn .multicolumn-card__body {
  font-family: 'Inter', sans-serif !important;
  color: var(--bigdex-text-muted) !important;
}

/* Multicolumn card borders + hover lift with yellow-green shadow tint */
.multicolumn-card {
  border: 1px solid var(--bigdex-border) !important;
  border-radius: 8px !important;
  background-color: var(--bigdex-bg-secondary) !important;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  padding-top: 2rem !important;
}

.multicolumn-card:hover {
  border-color: var(--bigdex-accent) !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(var(--bigdex-accent-rgb), 0.12), 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Multicolumn "View Covers" link */
.multicolumn-card .link.animate-arrow {
  color: var(--bigdex-accent) !important;
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.3rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.multicolumn-card .link.animate-arrow:hover {
  color: var(--bigdex-accent-hover) !important;
  text-shadow: 0 0 12px rgba(var(--bigdex-accent-rgb), 0.5);
}

.multicolumn-card .link.animate-arrow .icon-wrap svg {
  color: var(--bigdex-accent) !important;
}

/* Multicolumn card hover glow */
.multicolumn-card:hover {
  box-shadow: 0 8px 25px rgba(var(--bigdex-accent-rgb), 0.15),
              0 0 20px rgba(var(--bigdex-accent-rgb), 0.08),
              0 4px 10px rgba(0, 0, 0, 0.3) !important;
}

/* Multicolumn section background */
.multicolumn .color-scheme-1,
.multicolumn .color-scheme-2,
.multicolumn .color-scheme-3 {
  background-color: var(--bigdex-bg-primary) !important;
}

/* ========== 15. NEWSLETTER ========== */

/* Newsletter section background — green gradient matching Whatnot CTA */
.newsletter {
  background: linear-gradient(to top, #e3e135 0%, #30c23a 20%, #0d6b55 40%, #000 65%, #000 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Dot texture overlay for newsletter (matches Whatnot CTA) */
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
  background-image: radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 12px 12px;
}

.newsletter__wrapper {
  position: relative;
  z-index: 2;
  background: transparent !important;
  color: #ffffff !important;
}

.newsletter__wrapper .rte,
.newsletter__wrapper p,
.newsletter__wrapper .newsletter__subheading {
  color: #ffffff !important;
}

.newsletter-section,
.email-signup-banner {
  background-color: transparent !important;
}

/* Newsletter form */
.newsletter-form {
  max-width: 500px;
}

.newsletter-form__field-wrapper {
  max-width: 100% !important;
}

.newsletter-form__field-wrapper .field__input {
  font-family: 'Inter', sans-serif !important;
  border-radius: 4px 0 0 4px !important;
  border: 1px solid var(--bigdex-border) !important;
  background-color: var(--bigdex-bg-tertiary) !important;
  color: var(--bigdex-text) !important;
  min-height: 50px;
  font-size: 1.4rem !important;
  padding-right: 60px !important;
  transition: border-color 0.3s ease;
}

.newsletter-form__field-wrapper .field__input:focus {
  border-color: var(--bigdex-accent) !important;
  box-shadow: none !important;
}

.newsletter-form__field-wrapper .field__label {
  font-family: 'Inter', sans-serif !important;
  color: var(--bigdex-text-muted) !important;
}

/* Newsletter submit button - yellow-green */
.newsletter-form__button {
  background-color: var(--bigdex-accent) !important;
  color: #000000 !important;
  border-radius: 0 4px 4px 0 !important;
  border-color: var(--bigdex-accent) !important;
  width: 50px !important;
  transition: background-color 0.3s ease;
}

.newsletter-form__button:hover {
  background-color: var(--bigdex-accent-hover) !important;
}

.newsletter-form__button .icon {
  color: #000000 !important;
}

/* Footer newsletter block */
.footer-block--newsletter .newsletter-form__field-wrapper .field__input {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border-color: var(--bigdex-border) !important;
  color: var(--bigdex-text) !important;
}

.footer-block--newsletter .newsletter-form__field-wrapper .field__input:focus {
  border-color: var(--bigdex-accent) !important;
}

.footer-block--newsletter .newsletter-form__field-wrapper .field__label {
  color: var(--bigdex-text-muted) !important;
}

.footer-block--newsletter .newsletter-form__button {
  background-color: var(--bigdex-accent) !important;
  color: #000000 !important;
}

.footer-block--newsletter .newsletter-form__button:hover {
  background-color: var(--bigdex-accent-hover) !important;
}

/* Email signup banner heading */
.email-signup-banner__heading {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: var(--bigdex-text) !important;
}

/* ========== 16. COLLAPSIBLE CONTENT / FAQ ========== */

/* Match FAQ width to "Start Your Collection" box (78rem rich-text__blocks + 3rem wrapper padding) */
.collapsible-content-wrapper-narrow {
  max-width: 81rem !important;
}

.accordion__title {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.6rem !important;
  color: var(--bigdex-text) !important;
  text-transform: uppercase;
  letter-spacing: 0.03em !important;
}

.accordion__content {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.5rem !important;
  line-height: 1.7 !important;
  color: var(--bigdex-text-muted) !important;
}

/* Accordion panel styling */
.accordion {
  border-color: var(--bigdex-border) !important;
}

/* Padding on accordion summary (question row) */
.accordion summary {
  background-color: var(--bigdex-bg-secondary) !important;
  padding: 2rem 2.4rem !important;
  transition: background-color 0.3s ease;
}

.accordion summary:hover {
  background-color: var(--bigdex-bg-tertiary) !important;
}

/* Padding on accordion content (answer area) */
.accordion .accordion__content {
  background-color: var(--bigdex-bg-secondary) !important;
  padding: 1.6rem 2.4rem 2rem !important;
}

/* Accordion icon - yellow-green */
.accordion .icon-accordion {
  color: var(--bigdex-accent) !important;
}

summary .icon-caret {
  color: var(--bigdex-accent) !important;
}

/* Collapsible content section */
.collapsible-content {
  background-color: var(--bigdex-bg-primary) !important;
}

.collapsible-content .color-scheme-1,
.collapsible-content .color-scheme-2,
.collapsible-content .color-scheme-3 {
  background-color: var(--bigdex-bg-primary) !important;
}

.collapsible-content__heading {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  font-size: 3.6rem !important;
  color: var(--bigdex-text) !important;
}

/* FAQ caption above heading */
.collapsible-content__header .caption-with-letter-spacing {
  font-size: 1.4rem !important;
  letter-spacing: 0.1em !important;
  color: var(--bigdex-accent) !important;
}

/* ========== 17. RICH TEXT ========== */

.rich-text__heading {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: var(--bigdex-text) !important;
}

.rich-text__text,
.rich-text__text p {
  font-family: 'Inter', sans-serif !important;
  color: var(--bigdex-text-muted) !important;
}

/* Rich text sections - dark bg */
.rich-text .color-scheme-1,
.rich-text .color-scheme-2,
.rich-text .color-scheme-3 {
  background-color: var(--bigdex-bg-primary) !important;
}

/* Rich text card panel (matches image-with-text content panel) */
.rich-text__blocks {
  background-color: var(--bigdex-bg-secondary) !important;
  border: 1px solid var(--bigdex-border) !important;
  border-radius: 8px;
  padding: 4rem 4.5rem !important;
}

@media screen and (max-width: 749px) {
  .rich-text__blocks {
    padding: 2.5rem 2rem !important;
  }
}

/* ========== 18. CART DRAWER ========== */

cart-drawer {
  z-index: 1100 !important;
}

.drawer {
  z-index: 1100 !important;
}

.cart-drawer {
  font-family: 'Inter', sans-serif !important;
  background-color: var(--bigdex-bg-secondary) !important;
  color: var(--bigdex-text) !important;
}

.cart-drawer__overlay {
  z-index: 1 !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.drawer__inner {
  z-index: 2 !important;
  position: relative;
}

/* Cart drawer header */
.drawer__header {
  background-color: var(--bigdex-bg-secondary) !important;
  border-bottom: 1px solid var(--bigdex-border) !important;
}

.drawer__heading {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: var(--bigdex-text) !important;
}

.drawer__close {
  color: var(--bigdex-text) !important;
}

.drawer__close:hover {
  color: var(--bigdex-accent) !important;
}

/* Cart drawer items */
.cart-item {
  border-bottom: 1px solid var(--bigdex-border) !important;
}

.cart-item__name {
  color: var(--bigdex-text) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
}

.cart-item__price,
.cart-item__old-price {
  font-family: 'Chakra Petch', sans-serif !important;
  color: var(--bigdex-accent) !important;
}

/* Cart drawer footer */
.cart-drawer__footer {
  background-color: var(--bigdex-bg-secondary) !important;
  border-top: 1px solid var(--bigdex-border) !important;
}

.totals__total-value {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  color: var(--bigdex-accent) !important;
}

/* Cart notification */
.cart-notification {
  border-radius: 4px !important;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5) !important;
  background-color: var(--bigdex-bg-secondary) !important;
}

/* ========== 19. BADGE OVERRIDES ========== */

.badge {
  border-radius: 3px !important;
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  padding: 0.4rem 1rem !important;
  text-transform: uppercase;
  border: none !important;
  line-height: 1.2;
}

/* Sale badge - red */
.badge[class*="sale"],
.price .badge,
.price__badge-sale {
  background-color: var(--bigdex-red) !important;
  color: #FFFFFF !important;
  border: none !important;
}

/* Sold out badge - dark gray */
.badge[class*="sold"],
.price__badge-sold-out,
.card__badge .badge[class*="sold"] {
  background-color: #444444 !important;
  color: #FFFFFF !important;
  border: none !important;
}

/* Custom badge - accent */
.card__badge .badge:not([class*="sale"]):not([class*="sold"]) {
  background-color: var(--bigdex-accent) !important;
  color: #000000 !important;
  border: none !important;
}

/* Badge positioning */
.card__badge {
  z-index: 2;
}

.card__badge.top {
  margin: 1rem !important;
}

/* ========== 19B. INFINITE SCROLL & SKELETON LOADING ========== */

/* Hide pagination when infinite scroll is active (JS hides via style attr, this is fallback) */
#infinite-scroll-sentinel {
  height: 1px;
  visibility: hidden;
}

/* Skeleton card */
.bigdex-skeleton__card {
  background: var(--bigdex-bg-secondary, #111);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--bigdex-border, #2a2a2a);
}

.bigdex-skeleton__image {
  width: 100%;
  padding-bottom: 133%; /* portrait aspect ratio */
  background: linear-gradient(110deg, #1a1a1a 30%, #222 50%, #1a1a1a 70%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
}

.bigdex-skeleton__text {
  height: 1.4rem;
  margin: 1.2rem 1rem 0.6rem;
  border-radius: 3px;
  background: linear-gradient(110deg, #1a1a1a 30%, #222 50%, #1a1a1a 70%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
  animation-delay: 0.1s;
}

.bigdex-skeleton__price {
  height: 1.2rem;
  width: 40%;
  margin: 0 1rem 1.2rem;
  border-radius: 3px;
  background: linear-gradient(110deg, #1a1a1a 30%, #222 50%, #1a1a1a 70%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
  animation-delay: 0.2s;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Load More button (reduced-motion fallback) */
.bigdex-load-more {
  display: block;
  margin: 3rem auto;
  padding: 1.2rem 4rem;
  font-family: var(--font-heading-family, 'Chakra Petch', sans-serif);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  background: var(--bigdex-accent, #e3e134);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bigdex-load-more:hover {
  background: var(--bigdex-accent-hover, #f0ee4a);
  transform: translateY(-2px);
}

.bigdex-load-more:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .bigdex-skeleton__image,
  .bigdex-skeleton__text,
  .bigdex-skeleton__price {
    animation: none;
    background: #1a1a1a;
  }
}

/* ========== 20. SCROLLBAR STYLING ========== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bigdex-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bigdex-accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bigdex-accent-hover);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--bigdex-accent) var(--bigdex-bg-primary);
}

/* ========== 21. BACK TO TOP BUTTON ========== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--bigdex-accent);
  color: #000000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--bigdex-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--bigdex-accent-rgb), 0.3);
}

.back-to-top svg,
.back-to-top .icon {
  width: 20px;
  height: 20px;
  color: #000000;
}

/* ========== PRODUCT PAGE BACK BUTTON ========== */

.product-back-btn {
  position: fixed;
  top: 14px;
  right: 20px;
  z-index: 1001;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.product-back-btn:hover {
  background: var(--bigdex-accent);
  color: #000;
  border-color: var(--bigdex-accent);
  transform: scale(1.1);
}

@media screen and (max-width: 749px) {
  .product-back-btn {
    top: 5.5rem;
    right: 14px;
    width: 32px;
    height: 32px;
  }
}

/* ========== 22. STICKY HEADER SHRINK ========== */

@media screen and (min-width: 990px) {
  .scrolled-past-header .header {
    min-height: 52px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .scrolled-past-header .header__heading-link .h2 {
    font-size: 2.4rem !important;
  }

  .scrolled-past-header .header__heading-logo-wrapper {
    max-width: 75% !important;
  }

  .scrolled-past-header .header__heading-link img {
    transform: scale(0.8);
    transform-origin: left center;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .scrolled-past-header .header {
    min-height: 48px !important;
  }

  .scrolled-past-header .header__heading-link img {
    transform: scale(0.85);
    transform-origin: left center;
  }
}

@media screen and (max-width: 749px) {
  .scrolled-past-header .header {
    min-height: 44px !important;
  }

  .scrolled-past-header .header__heading-link img {
    transform: scale(0.85);
    transform-origin: center center;
  }
}

/* ========== 23. CART BADGE PULSE ========== */

@keyframes cartBadgePulse {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.5); }
  50%  { transform: scale(0.9); }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.cart-count-bubble--pulse {
  animation: cartBadgePulse 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ========== 24. QUICK ADD REVEAL ========== */

/* Hidden by default on desktop */
.quick-add {
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin: 0 1rem 1rem !important;
}

/* Slide up on product card hover (desktop) */
@media screen and (min-width: 990px) {
  .product-card-wrapper:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Always visible on mobile/tablet */
@media screen and (max-width: 989px) {
  .quick-add {
    opacity: 1;
    transform: translateY(0);
  }
}

.quick-add__submit {
  background-color: var(--bigdex-accent) !important;
  color: #000000 !important;
  border-radius: 4px !important;
  border-color: var(--bigdex-accent) !important;
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  min-height: 42px !important;
  transition: all 0.3s ease !important;
}

.quick-add__submit:hover {
  background-color: var(--bigdex-accent-hover) !important;
  border-color: var(--bigdex-accent-hover) !important;
}

@media screen and (max-width: 749px) {
  .quick-add__submit {
    min-height: 40px !important;
    font-size: 1.2rem !important;
  }
}

/* ========== 25. PASSWORD PAGE ========== */

.password-main {
  background-color: var(--bigdex-bg-primary) !important;
  color: var(--bigdex-text) !important;
}

.password-header {
  background-color: var(--bigdex-bg-secondary) !important;
}

.password-header__title {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  color: var(--bigdex-text) !important;
}

.password-content {
  background-color: var(--bigdex-bg-primary) !important;
}

.password-content__title {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  color: var(--bigdex-text) !important;
}

.password-content__text {
  color: var(--bigdex-text-muted) !important;
}

.password-form .field__input {
  background-color: var(--bigdex-bg-tertiary) !important;
  border-color: var(--bigdex-border) !important;
  color: var(--bigdex-text) !important;
}

.password-form .field__input:focus {
  border-color: var(--bigdex-accent) !important;
}

.password-form .button {
  background-color: var(--bigdex-accent) !important;
  color: #000000 !important;
  border-color: var(--bigdex-accent) !important;
}

.password-form .button:hover {
  background-color: var(--bigdex-accent-hover) !important;
  border-color: var(--bigdex-accent-hover) !important;
}

.password-login a,
.password-login__submit {
  color: var(--bigdex-accent) !important;
}

.password-login a:hover {
  color: var(--bigdex-accent-hover) !important;
}

/* Password page footer */
.password-footer {
  background-color: var(--bigdex-bg-secondary) !important;
  color: var(--bigdex-text-muted) !important;
}

.password-footer .list-social__link {
  color: var(--bigdex-text-muted) !important;
}

.password-footer .list-social__link:hover {
  color: var(--bigdex-accent) !important;
}

/* Password page modal */
.password-modal .modal__content {
  background-color: var(--bigdex-bg-elevated) !important;
  color: var(--bigdex-text) !important;
}

.password-modal .modal__close-button {
  color: var(--bigdex-text) !important;
}

.password-modal .modal__close-button:hover {
  color: var(--bigdex-accent) !important;
}

/* ========== 26. PRODUCT PAGE ========== */

/* Push pages below the sticky transparent header */
product-info[id^="MainProduct"],
.main-page-title {
  padding-top: 110px !important;
}

/* Page title left-aligned flush with logo */
.main-page-title {
  text-align: left !important;
}

/* Match page title container to standard page-width (aligns with logo) */
.page-width.page-width--narrow:has(.main-page-title) {
  max-width: var(--page-width) !important;
}

/* Product title */
.product__title h1 {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.03em !important;
  color: var(--bigdex-text) !important;
}

/* Product description */
.product__description {
  font-family: 'Inter', sans-serif !important;
  line-height: 1.7;
  color: var(--bigdex-text-muted) !important;
}

/* Product form options */
.product-form__input label {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-size: 1.3rem !important;
  color: var(--bigdex-text-muted) !important;
}

/* Add to cart button - yellow-green accent */
.product-form__submit {
  background-color: var(--bigdex-accent) !important;
  color: #000000 !important;
  border-color: var(--bigdex-accent) !important;
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.6rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  min-height: 54px !important;
  transition: all 0.3s ease !important;
}

.product-form__submit:not([disabled]):hover {
  background-color: var(--bigdex-accent-hover) !important;
  border-color: var(--bigdex-accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(var(--bigdex-accent-rgb), 0.3) !important;
}

.product-form__submit[disabled] {
  background-color: var(--bigdex-bg-tertiary) !important;
  color: var(--bigdex-text-muted) !important;
  border-color: var(--bigdex-border) !important;
}

/* Product info section backgrounds */
.product .color-scheme-1,
.product .color-scheme-2,
.product .color-scheme-3 {
  background-color: var(--bigdex-bg-primary) !important;
}

/* Product media backgrounds */
.product__media-wrapper {
  background-color: var(--bigdex-bg-secondary) !important;
}

.product__media-item {
  background-color: var(--bigdex-bg-secondary) !important;
}

/* Variant pills / swatch */
.product-form__input .form__label {
  color: var(--bigdex-text-muted) !important;
}

.variant-input .variant-input__input:checked + .variant-input__label {
  border-color: var(--bigdex-accent) !important;
  color: var(--bigdex-accent) !important;
}

.variant-input__label {
  border-color: var(--bigdex-border) !important;
  color: var(--bigdex-text) !important;
  background-color: var(--bigdex-bg-tertiary) !important;
}

/* Quantity selector - dark styling */
.product-form__quantity .quantity {
  background-color: var(--bigdex-bg-tertiary) !important;
  border-color: var(--bigdex-border) !important;
}

.product-form__quantity .quantity__input {
  color: var(--bigdex-text) !important;
}

.product-form__quantity .quantity__button {
  color: var(--bigdex-text) !important;
}

.product-form__quantity .quantity__button:hover {
  color: var(--bigdex-accent) !important;
}

/* Product tabs / accordion on product page */
.product .accordion {
  border-color: var(--bigdex-border) !important;
}

.product .accordion summary {
  background-color: var(--bigdex-bg-primary) !important;
}

.product .accordion summary:hover {
  background-color: var(--bigdex-bg-tertiary) !important;
}

/* ========== 27. COLLECTION PAGE ========== */

/* Collection page background */
.collection .color-scheme-1,
.collection .color-scheme-2,
.collection .color-scheme-3 {
  background-color: var(--bigdex-bg-primary) !important;
}

/* Filter sidebar */
.facets-container {
  background-color: var(--bigdex-bg-primary) !important;
}

.facets__summary {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--bigdex-text) !important;
}

.facet-checkbox__text {
  font-family: 'Inter', sans-serif !important;
  color: var(--bigdex-text-muted) !important;
}

.facet-checkbox input[type="checkbox"]:checked + .facet-checkbox__text {
  color: var(--bigdex-accent) !important;
}

/* Facet disclosure */
.facets__disclosure {
  border-color: var(--bigdex-border) !important;
}

.facets__disclosure[open] summary {
  border-color: var(--bigdex-accent) !important;
}

/* Sort dropdown */
.facet-filters__sort .select__select {
  background-color: var(--bigdex-bg-tertiary) !important;
  border-color: var(--bigdex-border) !important;
  color: var(--bigdex-text) !important;
  font-family: 'Inter', sans-serif !important;
}

.facet-filters__sort .select__select:focus {
  border-color: var(--bigdex-accent) !important;
}

/* Active filter tags */
.active-facets__button {
  background-color: var(--bigdex-bg-tertiary) !important;
  color: var(--bigdex-text) !important;
  border-color: var(--bigdex-border) !important;
}

.active-facets__button:hover {
  border-color: var(--bigdex-accent) !important;
  color: var(--bigdex-accent) !important;
}

.active-facets__button-remove {
  color: var(--bigdex-text-muted) !important;
}

.active-facets__button-remove:hover {
  color: var(--bigdex-red) !important;
}

/* Mobile filter drawer */
.mobile-facets__wrapper {
  background-color: #000000 !important;
}

.mobile-facets__heading {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  color: var(--bigdex-text) !important;
}

.mobile-facets__details summary {
  color: var(--bigdex-text) !important;
  border-color: var(--bigdex-border) !important;
}

/* Pagination */
.pagination__list .pagination__item a {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  color: var(--bigdex-text-muted) !important;
  transition: all 0.3s ease;
}

.pagination__list .pagination__item a:hover,
.pagination__list .pagination__item--current a {
  color: var(--bigdex-accent) !important;
}

/* Breadcrumbs */
.breadcrumbs__list {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.2rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumbs__link {
  color: var(--bigdex-text-muted) !important;
}

.breadcrumbs__link:hover {
  color: var(--bigdex-accent) !important;
}

/* Push collection/catalog page below sticky transparent header */
.collection-hero {
  padding-top: 110px !important;
}

/* Also push the product grid section if it's the first visible element */
.collection .facets-container {
  padding-top: 80px !important;
  overflow: visible !important; /* prevent animate--fade-in from clipping sticky sidebar */
  width: 100% !important;
  max-width: 100% !important;
}

/* ---- VERTICAL SIDEBAR FILTER PANEL ---- */

/* Sidebar container */
.facets-vertical .facets-wrapper {
  padding-right: 1.2rem !important;
  padding-left: 0 !important;
  margin-left: 0;
  border-right: 1px solid var(--bigdex-border) !important;
  position: sticky !important;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overflow-x: visible !important;
  align-self: flex-start;
  transition: width 0.35s ease, opacity 0.35s ease, padding 0.35s ease, margin 0.35s ease;
}

/* Thin scrollbar for filter sidebar */
.facets-vertical .facets-wrapper::-webkit-scrollbar {
  width: 4px;
}
.facets-vertical .facets-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.facets-vertical .facets-wrapper::-webkit-scrollbar-thumb {
  background: var(--bigdex-border-light, #333);
  border-radius: 2px;
}

/* Sidebar width — 196px to give product grid more room */
@media screen and (min-width: 750px) {
  .facets-vertical {
    gap: 0 !important;
  }
  .facets__form-vertical {
    width: 196px !important;
    min-width: 196px !important;
    max-width: 196px !important;
    flex-shrink: 0;
  }
}

/* FILTERS heading */
.facets__heading--vertical {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.6rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--bigdex-text) !important;
  padding-bottom: 1.2rem !important;
  border-bottom: 2px solid var(--bigdex-accent) !important;
  margin-bottom: 0.5rem !important;
}

/* Clear all link */
.facets-vertical .active-facets__button-remove {
  color: var(--bigdex-accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.2rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: text-shadow 0.3s ease;
}

.facets-vertical .active-facets__button-remove:hover {
  text-shadow: 0 0 10px rgba(var(--bigdex-accent-rgb), 0.4);
}

/* Filter group disclosure borders */
.facets__disclosure-vertical {
  border-color: var(--bigdex-border) !important;
}

/* Filter group summary (e.g. PRICE, VENDOR, ARTIST) */
.facets-vertical .facets__summary {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.3rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: var(--bigdex-text) !important;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.facets-vertical .facets__summary:hover {
  color: var(--bigdex-accent) !important;
  text-shadow: 0 0 10px rgba(var(--bigdex-accent-rgb), 0.3);
}

/* Open disclosure accent */
.facets__disclosure-vertical[open] > .facets__summary {
  color: var(--bigdex-accent) !important;
  border-color: var(--bigdex-accent) !important;
}

/* Caret icon */
.facets-vertical .facets__summary .icon-caret {
  color: var(--bigdex-text-muted) !important;
  transition: color 0.3s ease, transform 0.3s ease;
}

.facets__disclosure-vertical[open] > .facets__summary .icon-caret {
  color: var(--bigdex-accent) !important;
}

/* Checkbox items */
.facets-vertical .facet-checkbox {
  padding: 0.6rem 0 !important;
  transition: padding-left 0.2s ease;
}

.facets-vertical .facet-checkbox:hover {
  padding-left: 4px !important;
}

.facets-vertical .facet-checkbox__text {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.3rem !important;
  color: var(--bigdex-text-muted) !important;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.facets-vertical .facet-checkbox:hover .facet-checkbox__text {
  color: var(--bigdex-text) !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.12);
}

/* Checked checkbox accent */
.facets-vertical .facet-checkbox input[type="checkbox"]:checked + .facet-checkbox__text {
  color: var(--bigdex-accent) !important;
  text-shadow: 0 0 10px rgba(var(--bigdex-accent-rgb), 0.35);
}

/* Custom checkbox appearance */
.facets-vertical .facet-checkbox svg {
  border-color: var(--bigdex-border-light) !important;
}

.facets-vertical .facet-checkbox input[type="checkbox"]:checked ~ svg {
  border-color: var(--bigdex-accent) !important;
  background-color: var(--bigdex-accent) !important;
}

/* Active filter pills */
.facets-vertical .active-facets__button {
  background-color: var(--bigdex-bg-tertiary) !important;
  color: var(--bigdex-text) !important;
  border: 1px solid var(--bigdex-border) !important;
  border-radius: 4px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.2rem !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.facets-vertical .active-facets__button:hover {
  border-color: var(--bigdex-accent) !important;
  box-shadow: 0 0 10px rgba(var(--bigdex-accent-rgb), 0.2) !important;
}

/* Sort bar above the grid (vertical layout) */
.facets-vertical-sort {
  border-bottom: 1px solid var(--bigdex-border) !important;
  padding-bottom: 1.2rem !important;
  margin-bottom: 1.2rem !important;
}

.facet-filters__sort .select__select {
  background-color: #0a0a0a !important;
  color: var(--bigdex-text) !important;
  border: 1px solid var(--bigdex-border-light) !important;
  border-radius: 6px !important;
  font-family: 'Inter', sans-serif !important;
}

.facet-filters__sort .select__select:focus {
  border-color: var(--bigdex-accent) !important;
  box-shadow: 0 0 12px rgba(var(--bigdex-accent-rgb), 0.25) !important;
}

.facet-filters__sort .select__select option {
  background-color: #0a0a0a !important;
  color: #fff !important;
}

/* Product count */
.product-count-vertical {
  color: var(--bigdex-text-muted) !important;
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Price range inputs */
.facets-vertical .facets__price .field__input {
  background-color: var(--bigdex-bg-tertiary) !important;
  border-color: var(--bigdex-border) !important;
  color: var(--bigdex-text) !important;
}

.facets-vertical .facets__price .field__input:focus {
  border-color: var(--bigdex-accent) !important;
  box-shadow: 0 0 8px rgba(var(--bigdex-accent-rgb), 0.2) !important;
}

/* Show More / Show Less link */
.facets-vertical .button--show-more,
.facets-vertical .label-show-more {
  color: var(--bigdex-accent) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.2rem !important;
}

/* Space between sidebar border and product grid */
.facets-vertical .product-grid-container {
  padding-left: 1.2rem !important;
  flex: 1 !important;
  min-width: 0 !important;
}

/* ---- SIDEBAR COLLAPSE TOGGLE ---- */

/* Toggle button (added via JS) */
.bigdex-filter-toggle {
  position: absolute;
  top: 0;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--bigdex-bg-secondary);
  border: 1px solid var(--bigdex-border);
  color: var(--bigdex-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.bigdex-filter-toggle:hover {
  border-color: var(--bigdex-accent);
  box-shadow: 0 0 12px rgba(var(--bigdex-accent-rgb), 0.3);
  background: var(--bigdex-bg-tertiary);
}

.bigdex-filter-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

/* Collapsed state */
.facets-wrapper--collapsed .facets__form-vertical {
  width: 0 !important;
  min-width: 0 !important;
  overflow: hidden;
  opacity: 0;
  padding: 0 !important;
}

.facets-wrapper--collapsed {
  padding-right: 0 !important;
  padding-left: 0 !important;
  margin-left: -2.5rem !important;
  border-right: none !important;
  width: 40px !important;
  min-width: 40px !important;
  overflow: visible !important;
}

/* Collapsed: move toggle to left edge */
.facets-wrapper--collapsed .bigdex-filter-toggle {
  right: auto;
  left: 0;
}

.facets-wrapper--collapsed .active-facets {
  display: none;
}

/* Mobile filter drawer — menu-drawer moved outside .facets-container in
   facets.liquid to escape the animate--fade-in stacking context.
   Still needs z-index to paint above product-grid-container (which has
   animate--slide-in creating its own stacking context via transform). */
menu-drawer.mobile-facets__wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

@media screen and (max-width: 989px) {
  /* Hide the desktop filter form + collapse toggle on mobile (keep mobile drawer) */
  .facets-vertical .facets__form-vertical,
  .facets-vertical .active-facets,
  .facets-vertical .facets__heading--vertical,
  .bigdex-filter-toggle {
    display: none !important;
  }
  .facets-vertical .facets-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    position: static !important;
  }

  /* Summary bar: compact, centered */
  .mobile-facets__open-wrapper {
    padding: 0.6rem 0 !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    position: relative !important;
    z-index: 5 !important;
    background: var(--bigdex-bg-primary) !important;
  }

  /* Shrink the filter/sort button — single line, tight */
  .mobile-facets__open {
    width: auto !important;
    max-width: 14rem !important;
    padding: 0.5rem 1.4rem !important;
    margin: 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    text-align: center !important;
    font-size: 1.2rem !important;
    white-space: nowrap !important;
  }

  /* Force "Filter and sort" on one line */
  .mobile-facets__open-label {
    white-space: nowrap !important;
  }

  /* Hide product count next to filter button */
  .mobile-facets__open-wrapper + .product-count {
    display: none !important;
  }

  /* Product count text: keep above cards */
  .product-count-vertical,
  .facets-vertical-sort {
    position: relative !important;
    z-index: 5 !important;
    background: var(--bigdex-bg-primary) !important;
  }

  /* Product grid: lower z-index so cards stay BELOW filter bar + count */
  #ProductGridContainer {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    padding: 0 !important;
  }

  #ProductGridContainer .grid {
    justify-content: center !important;
    width: 100% !important;
  }

  /* Product cards: fill width, no left gap */
  .collection .grid {
    padding: 0 !important;
    gap: 8px !important;
    --grid-mobile-horizontal-spacing: 8px !important;
    --grid-mobile-vertical-spacing: 10px !important;
  }

  .collection .grid__item {
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Minimal page padding for wider cards */
  .collection .page-width,
  .facets-vertical.page-width {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  /* Cards stretch to fill */
  #ProductGridContainer .grid__item .card-wrapper,
  #ProductGridContainer .grid__item .card {
    width: 100% !important;
  }
}

.mobile-facets__inner {
  background-color: var(--bigdex-bg-secondary) !important;
  max-width: 30rem !important;
  width: calc(100% - 6rem) !important;
  padding: 0.5rem 1rem !important;
  margin-top: 0.5rem !important;
  border-radius: 0.8rem 0 0 0.8rem !important;
}

.mobile-facets__header {
  background-color: var(--bigdex-bg-secondary) !important;
  padding: 1.5rem 2rem !important;
}

/* X close button in mobile filter drawer */
.mobile-facets__close-x {
  position: absolute;
  top: 0.8rem;
  right: -1.8rem;
  background: none;
  border: none;
  color: var(--bigdex-text);
  cursor: pointer;
  padding: 0.4rem;
  z-index: 5;
}
.mobile-facets__close-x .icon {
  width: 2rem;
  height: 2rem;
}

/* When filter drawer is open, paint above the fixed header.
   :has(details[open]) elevates the wrapper itself so the child's
   z-index escapes the parent's stacking context. */
menu-drawer.mobile-facets__wrapper:has(details[open]) {
  position: relative;
  z-index: 1100;
}
menu-drawer.mobile-facets__wrapper details[open] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
}

.mobile-facets__main {
  padding: 1.5rem 0.5rem 0 !important;
}

.mobile-facets__footer {
  background-color: var(--bigdex-bg-secondary) !important;
  padding: 1.5rem 1.5rem !important;
}

/* ========== 28. SECTION TITLE ACCENT ========== */

/* Section titles */
.title,
.title-wrapper-with-link {
  margin: 0 0 3rem !important;
}

.title-wrapper {
  margin-bottom: 4rem !important;
  text-align: center;
}

.title-wrapper-with-link {
  margin-bottom: 4rem !important;
}

.title--primary {
  margin: 0 0 4rem !important;
}

/* 40px yellow-green bar above section headings */
.title-wrapper::before,
.title-wrapper-with-link::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--bigdex-accent);
  margin-bottom: 1.5rem;
}

/* Centered bar for centered titles */
.title-wrapper::before {
  margin-left: auto;
  margin-right: auto;
}

/* Section title typography */
.section-header__title,
.title .h2,
.collection__title .h1 {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
  color: var(--bigdex-text) !important;
}

/* "View all" links - accent */
.title-wrapper-with-link .link,
.link-with-icon {
  font-family: 'Chakra Petch', sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  font-size: 1.3rem !important;
  color: var(--bigdex-accent) !important;
  text-decoration: none !important;
  border-bottom: none;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.title-wrapper-with-link .link:hover,
.link-with-icon:hover {
  color: var(--bigdex-accent-hover) !important;
}

/* ========== ADDITIONAL: BLOG / ARTICLE CARDS ========== */

.article-card .card__heading {
  font-family: 'Chakra Petch', sans-serif !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
}

.article-card .card__information .caption-with-letter-spacing {
  font-family: 'Inter', sans-serif !important;
  display: block !important;
}

/* ========== ADDITIONAL: ENHANCED SCROLL REVEAL ========== */

.scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {
  animation: bigdexSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.scroll-trigger:not(.scroll-trigger--offscreen).animate--fade-in {
  animation: bigdexFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes bigdexSlideIn {
  from {
    transform: translateY(3rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bigdexFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ========== ADDITIONAL: MOBILE RESPONSIVE ADJUSTMENTS ========== */

@media screen and (max-width: 749px) {
  .page-width {
    padding: 0 1.5rem;
  }

  .announcement-bar__message {
    font-size: 1.1rem !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .page-width {
    padding: 0 3rem;
  }
}

@media screen and (min-width: 990px) {
  .page-width {
    padding: 0 5rem;
  }
}
