/** Shopify CDN: Minification failed

Line 458:10 Expected identifier but found whitespace
Line 458:12 Unexpected "{"
Line 458:21 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:bulk-order (INDEX:7) */
.bulk-order {
    max-width: 720px;
    margin: 48px auto;
    border: 1px solid rgba(0, 0, 0, 0.12);
  }

  @media screen and (max-width: 749px) {
    .bulk-order {
      margin: 28px 16px;
    }
  }

  .bulk-order__header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .bulk-order__heading {
    margin: 0;
    font-family: var(--text-font-family);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
  }

  .bulk-order__subheading {
    margin: 4px 0 0;
    font-family: var(--text-font-family);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.45;
  }

  .bulk-order__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .bulk-order__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
  }

  .bulk-order__item:last-child {
    border-right: none;
  }

  .bulk-order__item--unavailable {
    opacity: 0.3;
  }

  .bulk-order__item-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .bulk-order__size {
    font-family: var(--text-font-family);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .bulk-order__price {
    font-family: var(--text-font-family);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.03em;
    opacity: 0.5;
  }

  .bulk-order__qty {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    height: 34px;
  }

  .bulk-order__qty--soldout {
    border-color: transparent;
  }

  .bulk-order__soldout-text {
    font-family: var(--text-font-family);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.6;
  }

  .bulk-order__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    font-family: var(--text-font-family);
    transition: opacity 0.15s ease;
    user-select: none;
  }

  .bulk-order__qty-btn:hover {
    opacity: 0.5;
  }

  .bulk-order__qty-input {
    width: 36px;
    height: 100%;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--text-font-family);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    background: transparent;
    color: inherit;
    -moz-appearance: textfield;
    appearance: textfield;
  }

  .bulk-order__qty-input::-webkit-inner-spin-button,
  .bulk-order__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .bulk-order__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .bulk-order__totals {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--text-font-family);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .bulk-order__totals-sep {
    opacity: 0.3;
  }

  .bulk-order__totals-price {
    font-weight: 500;
  }

  .bulk-order__add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 32px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--text-font-family);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.15s ease;
    white-space: nowrap;
  }

  .bulk-order__add-btn:hover:not(:disabled) {
    opacity: 0.85;
  }

  .bulk-order__add-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
  }

  .bulk-order__add-loading {
    display: none;
  }

  .bulk-order__add-btn--loading .bulk-order__add-text {
    display: none;
  }

  .bulk-order__add-btn--loading .bulk-order__add-loading {
    display: flex;
    animation: bulkSpin 0.8s linear infinite;
  }

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

  @media screen and (max-width: 749px) {
    .bulk-order__footer {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }

    .bulk-order__totals {
      justify-content: center;
    }

    .bulk-order__add-btn {
      width: 100%;
    }
  }
/* END_SECTION:bulk-order */

/* START_SECTION:collection-grid (INDEX:10) */
.shopify-section--collection-grid {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    --section-outer-spacing-block: 0;
  }

  .collection-grid__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .collection-grid__subheading {
    margin: 0 0 2px;
    font-family: var(--text-font-family);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
  }

  .collection-grid__heading {
    margin: 0;
    font-family: var(--text-font-family);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
  }

  @media screen and (min-width: 750px) {
    .collection-grid__heading {
      font-size: 12px;
    }
  }

  .collection-grid__link {
    flex-shrink: 0;
    font-family: var(--text-font-family);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    line-height: 1.2;
  }

  @media screen and (min-width: 750px) {
    .collection-grid__link {
      font-size: 11px;
    }
  }

  .shopify-section--collection-grid .product-grid-outer-border {
    border-left: 1px solid rgb(var(--collection-grid-outline, 0 0 0 / 0.1));
    border-right: 1px solid rgb(var(--collection-grid-outline, 0 0 0 / 0.1));
  }

  .shopify-section--collection-grid product-card {
    border-right: 1px solid rgb(var(--collection-grid-outline, 0 0 0 / 0.1));
    border-bottom: 1px solid rgb(var(--collection-grid-outline, 0 0 0 / 0.1));
    padding: 0;
  }

  .shopify-section--collection-grid .product-card__figure {
    border-radius: 0 !important;
  }

  .shopify-section--collection-grid .product-card__image {
    border-radius: 0 !important;
  }

  .shopify-section--collection-grid .product-card__info {
    padding: 10px 10px 16px !important;
    text-align: center;
  }

  .shopify-section--collection-grid .product-card__info--center {
    justify-items: center;
  }

  .shopify-section--collection-grid .product-card__title a {
    font-size: 10px !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    line-height: 1.3 !important;
  }

  .shopify-section--collection-grid .product-card__info .price-list,
  .shopify-section--collection-grid .product-card__info .price {
    font-size: 10px !important;
    font-weight: 300 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.2 !important;
  }

  .shopify-section--collection-grid .badge--wholesale {
    font-family: var(--text-font-family) !important;
    font-size: 7px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 2px 6px !important;
    border-radius: 0 !important;
  }

  @media screen and (min-width: 750px) {
    .shopify-section--collection-grid .product-card__title a {
      font-size: 11px !important;
    }

    .shopify-section--collection-grid .product-card__info .price-list,
    .shopify-section--collection-grid .product-card__info .price {
      font-size: 11px !important;
    }
  }
/* END_SECTION:collection-grid */

/* START_SECTION:collection-hero-banner (INDEX:11) */
.collection-hero-banner {
    position: relative;
    min-height: var(--collection-hero-mobile-height, 420px);
    color: rgb(var(--text-color));
    background: rgb(var(--background));
    border-top: 1px solid rgb(var(--collection-hero-outline, 0 0 0 / 0.1));
    border-bottom: 1px solid rgb(var(--collection-hero-outline, 0 0 0 / 0.1));
    overflow: hidden;
  }

  @media screen and (min-width: 700px) {
    .collection-hero-banner {
      min-height: var(--collection-hero-desktop-height, 620px);
    }
  }

  .collection-hero-banner__media,
  .collection-hero-banner__image,
  .collection-hero-banner__overlay {
    position: absolute;
    inset: 0;
  }

  .collection-hero-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .collection-hero-banner__overlay {
    background: rgb(var(--collection-hero-overlay));
    pointer-events: none;
  }

  .collection-hero-banner--gradient-overlay .collection-hero-banner__overlay {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 25%,
      rgb(var(--collection-hero-overlay-rgb) / calc(var(--collection-hero-overlay-opacity) * 0.4)) 55%,
      rgb(var(--collection-hero-overlay-rgb) / var(--collection-hero-overlay-opacity)) 100%
    );
  }

  .collection-hero-banner--top-gradient .collection-hero-banner__overlay {
    background-image: linear-gradient(
      to bottom,
      rgb(var(--collection-hero-overlay-rgb) / calc(var(--collection-hero-overlay-opacity) * 0.75)) 0%,
      rgb(var(--collection-hero-overlay-rgb) / calc(var(--collection-hero-overlay-opacity) * 0.3)) 18%,
      transparent 38%
    );
  }

  .collection-hero-banner--gradient-overlay.collection-hero-banner--top-gradient .collection-hero-banner__overlay {
    background:
      linear-gradient(
        to bottom,
        rgb(var(--collection-hero-overlay-rgb) / calc(var(--collection-hero-overlay-opacity) * 0.75)) 0%,
        rgb(var(--collection-hero-overlay-rgb) / calc(var(--collection-hero-overlay-opacity) * 0.3)) 18%,
        transparent 38%
      ),
      linear-gradient(
        to bottom,
        transparent 0%,
        transparent 25%,
        rgb(var(--collection-hero-overlay-rgb) / calc(var(--collection-hero-overlay-opacity) * 0.4)) 55%,
        rgb(var(--collection-hero-overlay-rgb) / var(--collection-hero-overlay-opacity)) 100%
      );
  }

  .collection-hero-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    align-content: end;
    min-height: inherit;
    padding: 24px 16px;
    color: {{ section.settings.text_color }};
  }

  @media screen and (min-width: 700px) {
    .collection-hero-banner__inner {
      gap: 22px;
      padding: 36px 32px;
    }
  }

  @media screen and (min-width: 1000px) {
    .collection-hero-banner__inner {
      padding: 42px 48px;
    }
  }

  .collection-hero-banner__content {
    max-width: min(760px, 100%);
    display: grid;
    gap: 10px;
  }

  .collection-hero-banner__eyebrow {
    margin: 0;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.78;
  }

  .collection-hero-banner__title {
    margin: 0;
    font-size: clamp(28px, 7vw, 56px);
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-weight: 400;
  }

  .collection-hero-banner__description {
    margin: 0;
    max-width: 58ch;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 300;
    opacity: 0.9;
  }

  .collection-hero-banner__description p {
    margin: 0;
  }

  .collection-hero-banner__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
  }

  .collection-hero-banner__count {
    margin: 0;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .collection-hero-banner__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .collection-hero-banner__stars {
    position: relative;
    display: inline-grid;
  }

  .collection-hero-banner__stars-base,
  .collection-hero-banner__stars-fill {
    display: flex;
    gap: 1px;
  }

  .collection-hero-banner__stars-base {
    color: rgba(255, 255, 255, 0.28);
  }

  .collection-hero-banner__stars-fill {
    color: currentColor;
    position: absolute;
    inset: 0 auto 0 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .collection-hero-banner__stars svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
  }

  .collection-hero-banner__rating-text {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .collection-hero-banner__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .collection-hero-banner__filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid currentColor;
    border-radius: 0;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
  }

  .collection-hero-banner__filter-button--solid,
  .collection-hero-banner__filter-button--clear {
    background: currentColor;
    color: rgb(var(--background));
  }

  .collection-hero-banner__filter-button--outline {
    background: transparent;
    color: currentColor;
  }

  .collection-hero-banner__filter-button:hover {
    opacity: 0.84;
  }

  .collection-hero-banner__preview {
    display: grid;
    gap: 8px;
    width: min(720px, 100%);
  }

  .collection-hero-banner__preview-heading {
    margin: 0;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.75;
  }

  .collection-hero-banner__preview-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    border: 1px solid currentColor;
  }

  @media screen and (min-width: 700px) {
    .collection-hero-banner__preview-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  .collection-hero-banner__preview-item + .collection-hero-banner__preview-item {
    border-top: 1px solid currentColor;
  }

  @media screen and (min-width: 700px) {
    .collection-hero-banner__preview-item:nth-child(2n) {
      border-left: 1px solid currentColor;
    }

    .collection-hero-banner__preview-item:nth-child(2) {
      border-top: 0;
    }
  }

  .collection-hero-banner__preview-link {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 9px 10px;
  }

  .collection-hero-banner__preview-price {
    white-space: nowrap;
  }

  .collection-hero-banner--left-mobile .collection-hero-banner__inner {
    align-content: end;
    justify-items: start;
    text-align: left;
  }

  .collection-hero-banner--center-mobile .collection-hero-banner__inner {
    align-content: end;
    justify-items: center;
    text-align: center;
  }

  .collection-hero-banner--right-mobile .collection-hero-banner__inner {
    align-content: end;
    justify-items: end;
    text-align: right;
  }

  @media screen and (min-width: 1000px) {
    .collection-hero-banner--left-desktop .collection-hero-banner__inner {
      justify-items: start;
      text-align: left;
    }

    .collection-hero-banner--center-desktop .collection-hero-banner__inner {
      justify-items: center;
      text-align: center;
    }

    .collection-hero-banner--right-desktop .collection-hero-banner__inner {
      justify-items: end;
      text-align: right;
    }
  }
/* END_SECTION:collection-hero-banner */

/* START_SECTION:collection-product-grid (INDEX:13) */
/* ----------------------------------------------------------------
     FILTER BAR
  ---------------------------------------------------------------- */
  .luxury-filter-bar {
    background: var(--luxury-bg, #ffffff);
    border-bottom: 1px solid var(--luxury-border, rgba(0, 0, 0, 0.08));
    padding: 0 16px;
  }

  @media screen and (min-width: 750px) {
    .luxury-filter-bar {
      padding: 0 48px;
    }
  }

  .luxury-filter-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 52px;
    gap: 12px;
  }

  .luxury-filter-bar__left {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
  }

  .luxury-filter-bar__left::-webkit-scrollbar {
    display: none;
  }

  .luxury-filter-bar__facets {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .luxury-filter-bar__facets {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .luxury-filter-bar__pill--mobile-only {
      display: none;
    }
  }

  .luxury-filter-bar__right {
    display: none;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }

  @media screen and (min-width: 750px) {
    .luxury-filter-bar__right {
      display: flex;
    }
  }

  .luxury-filter-bar__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--luxury-text-primary, #0d0e0e);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    font-family: inherit;
  }

  .luxury-filter-bar__pill:hover {
    background: var(--luxury-text-primary, #0d0e0e);
    color: #ffffff;
  }

  .luxury-filter-bar__pill svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .luxury-filter-bar__pill[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .luxury-filter-bar__dropdown-wrap {
    position: relative;
  }

  .luxury-filter-bar__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 20;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 16px;
    min-width: 200px;
  }

  .luxury-filter-bar__options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .luxury-filter-bar__option {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 12px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    user-select: none;
  }

  .luxury-filter-bar__option:hover {
    background: var(--luxury-text-primary, #0d0e0e);
    color: #ffffff;
  }

  .luxury-filter-bar__option--active {
    background: var(--luxury-text-primary, #0d0e0e);
    color: #ffffff;
  }

  .luxury-filter-bar__option--disabled {
    opacity: 0.35;
    pointer-events: none;
  }

  .luxury-filter-bar__option-count {
    font-size: 10px;
    opacity: 0.6;
  }

  .luxury-filter-bar__swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }

  .luxury-filter-bar__sort {
    display: flex;
    align-items: center;
    position: relative;
  }

  .luxury-filter-bar__count {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--luxury-text-secondary, #5a5a5a);
    font-family: monospace;
    white-space: nowrap;
  }

  .luxury-filter-bar__active-tags {
    max-width: 1440px;
    margin: 0 auto;
  }

  .luxury-filter-bar__active-tags:empty {
    display: none;
  }

  .luxury-filter-bar__active-tags .active-facets {
    padding: 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* ----------------------------------------------------------------
     PRODUCT GRID
  ---------------------------------------------------------------- */
  .luxury-collection {
    background: var(--luxury-bg, #ffffff);
  }

  .luxury-collection__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 24px;
    text-align: center;
    color: var(--luxury-text-secondary, #5a5a5a);
  }

  .luxury-collection__results {
    width: 100%;
  }

  .luxury-grid {
    display: grid;
    grid-template-columns: repeat(var(--luxury-grid-cols-mobile, 2), 1fr);
    gap: var(--luxury-grid-gap, 1px);
    background: var(--luxury-bg, #ffffff);
  }

  @media screen and (min-width: 750px) {
    .luxury-grid {
      grid-template-columns: repeat(var(--luxury-grid-cols-tablet, 3), 1fr);
    }
  }

  @media screen and (min-width: 1024px) {
    .luxury-grid {
      grid-template-columns: repeat(var(--luxury-grid-cols-desktop, 4), 1fr);
    }
  }

  /* ----------------------------------------------------------------
     PRODUCT CARD
  ---------------------------------------------------------------- */
  .luxury-card {
    display: flex;
    flex-direction: column;
    background: var(--luxury-card-bg, #f5f5f5);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
  }

  .luxury-card__figure {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    width: 100%;
    background: #ebebeb;
  }

  .luxury-card__image {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .luxury-card__image--primary {
    opacity: 1;
    transition: opacity 400ms ease;
    z-index: 1;
  }

  .luxury-card__image--secondary {
    opacity: 0;
    transition: opacity 400ms ease;
    z-index: 0;
  }

  @media (hover: hover) {
    .luxury-card--has-swap:hover .luxury-card__image--primary {
      opacity: 0;
    }

    .luxury-card--has-swap:hover .luxury-card__image--secondary {
      opacity: 1;
    }

    .luxury-card:hover .luxury-card__quick-add {
      transform: translateY(0);
    }
  }

  .luxury-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .luxury-card__badge {
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: monospace;
    color: var(--luxury-text-primary, #0d0e0e);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .luxury-card__badge--sold-out {
    color: #666666;
  }

  .luxury-card__sold-out-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
  }

  .luxury-card__sold-out-overlay span {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666666;
    padding: 4px 10px;
    border: 1px solid #cccccc;
  }

  .luxury-card__quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    transform: translateY(100%);
    transition: transform 300ms ease;
  }

  .luxury-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    min-height: 56px;
  }

  @media screen and (min-width: 750px) {
    .luxury-card__info {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      gap: 8px;
      padding: 14px 16px;
    }
  }

  .luxury-card__details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
  }

  .luxury-card__title {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--luxury-text-primary, #0d0e0e);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  @media screen and (min-width: 750px) {
    .luxury-card__title {
      font-size: 13px;
    }
  }

  .luxury-card__color {
    font-size: 11px;
    color: var(--luxury-text-secondary, #5a5a5a);
    line-height: 1.3;
    margin: 0;
  }

  .luxury-card__price {
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  @media screen and (min-width: 750px) {
    .luxury-card__price {
      text-align: right;
    }
  }

  .luxury-card__price-current {
    font-size: 12px;
    font-weight: 400;
    color: var(--luxury-text-primary, #0d0e0e);
  }

  @media screen and (min-width: 750px) {
    .luxury-card__price-current {
      font-size: 13px;
    }
  }

  .luxury-card__price-compare {
    font-size: 12px;
    font-weight: 400;
    color: var(--luxury-text-muted, #aaaaaa);
    text-decoration: line-through;
  }

  @media screen and (min-width: 750px) {
    .luxury-card__price-compare {
      font-size: 13px;
    }
  }

  /* ----------------------------------------------------------------
     PROMOTION BLOCKS
  ---------------------------------------------------------------- */
  .luxury-grid__promo {
    position: relative;
    overflow: hidden;
  }

  .luxury-grid__promo--span-2 {
    grid-column: span 2;
  }

  @media screen and (max-width: 749px) {
    .luxury-grid__promo--span-2 {
      grid-column: span 2;
    }
  }

  .luxury-grid__promo-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    text-decoration: none;
    color: #ffffff;
  }

  .luxury-grid__promo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }

  .luxury-grid__promo-overlay {
    position: absolute;
    inset: 0;
    background: rgb(var(--promo-overlay, 0 0 0 / 0.3));
  }

  .luxury-grid__promo-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    gap: 8px;
  }

  .luxury-grid__promo-cta {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  /* ----------------------------------------------------------------
     LOAD MORE
  ---------------------------------------------------------------- */
  .luxury-load-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    background: var(--luxury-bg, #ffffff);
  }

  @media screen and (min-width: 750px) {
    .luxury-load-more {
      padding: 60px 48px;
    }
  }

  .luxury-load-more__progress-track {
    width: 200px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 1px;
    margin-bottom: 16px;
    overflow: hidden;
  }

  .luxury-load-more__progress-fill {
    height: 100%;
    background: var(--luxury-text-primary, #0d0e0e);
    border-radius: 1px;
    transition: width 0.3s ease;
  }

  .luxury-load-more__text {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--luxury-text-secondary, #5a5a5a);
    font-family: monospace;
    margin: 0 0 20px;
    text-align: center;
  }

  .luxury-load-more__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 44px;
    padding: 0 32px;
    background: transparent;
    border: 1px solid var(--luxury-text-primary, #0d0e0e);
    border-radius: 0;
    color: var(--luxury-text-primary, #0d0e0e);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    font-family: inherit;
  }

  .luxury-load-more__button:hover {
    background: var(--luxury-text-primary, #0d0e0e);
    color: #ffffff;
  }

  .luxury-load-more__button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
/* END_SECTION:collection-product-grid */

/* START_SECTION:drop-showcase (INDEX:18) */
.drop-showcase {
    background: #ffffff;
  }

  .drop-showcase__inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  @media screen and (min-width: 1024px) {
    .drop-showcase__inner {
      grid-template-columns: 1fr 1fr;
    }
  }

  .drop-showcase__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
  }

  @media screen and (min-width: 1024px) {
    .drop-showcase__media {
      aspect-ratio: auto;
    }
  }

  .drop-showcase__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  @media screen and (min-width: 1024px) {
    .drop-showcase__image {
      position: absolute;
      inset: 0;
    }
  }

  .drop-showcase {
    overflow: hidden;
  }

  .drop-showcase__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 20px;
    color: #000000;
  }

  @media screen and (min-width: 750px) {
    .drop-showcase__content {
      padding: 40px 32px;
    }
  }

  @media screen and (min-width: 1024px) {
    .drop-showcase__content {
      padding: 64px;
    }
  }

  .drop-showcase__pre-text {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666666;
    margin: 0 0 16px;
  }

  .drop-showcase__heading {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: #000000;
    margin: 0 0 16px;
  }

  @media screen and (min-width: 1024px) {
    .drop-showcase__heading {
      font-size: 48px;
    }
  }

  .drop-showcase__description {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 0 32px;
  }

  .drop-showcase__buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .drop-showcase__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    min-width: 0;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 1px solid #000000;
    border-radius: 0;
    transition: all 0.2s ease;
    cursor: pointer;
  }

  .drop-showcase__btn--primary {
    background: #000000;
    color: #ffffff;
  }

  .drop-showcase__btn--primary:hover {
    background: transparent;
    color: #000000;
  }

  .drop-showcase__btn--secondary {
    background: transparent;
    color: #000000;
  }

  .drop-showcase__btn--secondary:hover {
    background: #000000;
    color: #ffffff;
  }

  .drop-showcase__categories {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
    align-items: start;
  }

  @media screen and (min-width: 1024px) {
    .drop-showcase__categories {
      gap: 28px 20px;
    }
  }

  .drop-showcase__category-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .drop-showcase__category-group:has(.drop-showcase__mini-grid--single) {
    grid-column: span 2;
  }

  .drop-showcase__category-group:has(.drop-showcase__mini-grid--trio) {
    grid-column: span 1;
  }

  .drop-showcase__category-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666666;
    margin: 0;
  }

  .drop-showcase__mini-grid {
    display: grid;
    gap: 6px;
    max-width: 100%;
  }

  .drop-showcase__mini-grid--pair {
    grid-template-columns: repeat(2, 1fr);
  }

  .drop-showcase__mini-grid--trio {
    grid-template-columns: repeat(3, 1fr);
  }

  .drop-showcase__mini-grid--single {
    grid-template-columns: repeat(4, 1fr);
  }

  @media screen and (min-width: 1024px) {
    .drop-showcase__mini-grid {
      max-width: 440px;
      gap: 8px;
    }

    .drop-showcase__mini-grid--pair {
      max-width: 240px;
    }

    .drop-showcase__mini-grid--trio {
      max-width: 340px;
    }
  }

  .drop-showcase__mini-item {
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
    transition: opacity 0.2s ease;
  }

  .drop-showcase__mini-item:hover {
    opacity: 0.8;
  }

  .drop-showcase__mini-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
/* END_SECTION:drop-showcase */

/* START_SECTION:homepage-hero (INDEX:25) */
.homepage-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: var(--hero-mobile-height, 70vh);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: #000000;
  }

  @media screen and (min-width: 750px) {
    .homepage-hero {
      height: var(--hero-desktop-height, 90vh);
    }
  }

  .homepage-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .homepage-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .homepage-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .homepage-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 720px;
    padding: 32px 20px;
    text-align: left;
    color: #ffffff;
  }

  @media screen and (min-width: 750px) {
    .homepage-hero__content {
      padding: 48px 40px;
    }
  }

  @media screen and (min-width: 1024px) {
    .homepage-hero__content {
      padding: 64px 48px;
    }
  }

  .homepage-hero__pre-heading {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px;
  }

  .homepage-hero__heading {
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.95;
    color: #ffffff;
    margin: 0;
  }

  @media screen and (min-width: 750px) {
    .homepage-hero__heading {
      font-size: 56px;
    }
  }

  @media screen and (min-width: 1024px) {
    .homepage-hero__heading {
      font-size: 72px;
    }
  }

  .homepage-hero__subheading {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin: 14px 0 0;
    max-width: 400px;
  }

  @media screen and (min-width: 750px) {
    .homepage-hero__subheading {
      font-size: 14px;
    }
  }

  .homepage-hero__buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 28px;
  }

  .homepage-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 0;
    transition: all 0.2s ease;
    cursor: pointer;
  }

  .homepage-hero__btn--primary {
    background: #ffffff;
    color: #000000;
  }

  .homepage-hero__btn--primary:hover {
    background: transparent;
    color: #ffffff;
  }

  .homepage-hero__btn--secondary {
    background: transparent;
    color: #ffffff;
  }

  .homepage-hero__btn--secondary:hover {
    background: #ffffff;
    color: #000000;
  }

  .homepage-hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 2;
    opacity: 0.4;
    animation: homepage-hero-bounce 2.5s ease infinite;
  }

  @media screen and (min-width: 750px) {
    .homepage-hero__scroll-indicator {
      bottom: 48px;
      right: 48px;
    }
  }

  @keyframes homepage-hero-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
  }
/* END_SECTION:homepage-hero */

/* START_SECTION:product-collage (INDEX:58) */
.product-collage {
    --section-outer-spacing-block: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .product-collage__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .product-collage__subheading {
    margin: 0;
    font-family: var(--text-font-family);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
  }

  .product-collage__heading {
    margin: 0;
    font-family: var(--text-font-family);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
  }

  @media screen and (min-width: 750px) {
    .product-collage__heading {
      font-size: 12px;
    }
  }

  /* ── Mobile: horizontal scroll carousel ── */

  .product-collage__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .product-collage__grid::-webkit-scrollbar {
    display: none;
  }

  .product-collage__tile {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: var(--collage-text, #fff);
    flex: 0 0 70vw;
    scroll-snap-align: start;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }

  .product-collage__tile:last-child {
    border-right: none;
  }

  /* ── Desktop: grid layouts ── */

  @media screen and (min-width: 750px) {
    .product-collage__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      overflow: visible;
      scroll-snap-type: none;
    }

    .product-collage__grid--3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .product-collage__grid--5 {
      grid-template-columns: 1fr 1.3fr 1fr;
      grid-template-rows: 1fr 1fr;
      grid-template-areas:
        "left-top center right-top"
        "left-bottom center right-bottom";
    }

    .product-collage__grid--5 .product-collage__tile:nth-child(1) { grid-area: left-top; }
    .product-collage__grid--5 .product-collage__tile:nth-child(2) { grid-area: left-bottom; }
    .product-collage__grid--5 .product-collage__tile:nth-child(3) { grid-area: center; }
    .product-collage__grid--5 .product-collage__tile:nth-child(4) { grid-area: right-top; }
    .product-collage__grid--5 .product-collage__tile:nth-child(5) { grid-area: right-bottom; }

    .product-collage__grid--6 {
      grid-template-columns: repeat(3, 1fr);
    }

    .product-collage__tile {
      flex: none;
      border-right: 1px solid rgba(0, 0, 0, 0.06);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .product-collage__tile:nth-child(2n) {
      border-right: none;
    }

    .product-collage__grid--3 .product-collage__tile:nth-child(2n),
    .product-collage__grid--5 .product-collage__tile:nth-child(2n),
    .product-collage__grid--6 .product-collage__tile:nth-child(2n) {
      border-right: 1px solid rgba(0, 0, 0, 0.06);
    }

    .product-collage__grid--3 .product-collage__tile:nth-child(3n),
    .product-collage__grid--6 .product-collage__tile:nth-child(3n) {
      border-right: none;
    }

    .product-collage__grid--5 .product-collage__tile:nth-child(3) {
      border-right: 1px solid rgba(0, 0, 0, 0.06);
    }

    .product-collage__grid--5 .product-collage__tile:nth-child(4),
    .product-collage__grid--5 .product-collage__tile:nth-child(5) {
      border-right: none;
    }
  }

  .product-collage__media,
  .product-collage__placeholder {
    display: block;
    width: 100%;
    height: 100%;
  }

  .product-collage__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  @media screen and (min-width: 750px) {
    .product-collage__grid--5 .product-collage__tile:nth-child(3) .product-collage__media {
      position: absolute;
      inset: 0;
    }

    .product-collage__grid--5 .product-collage__tile:nth-child(3) {
      position: relative;
    }
  }

  .product-collage__placeholder {
    aspect-ratio: 3 / 4;
    background: rgba(0, 0, 0, 0.05);
  }

  .product-collage__placeholder svg {
    width: 100%;
    height: 100%;
  }

  .product-collage__tile:hover .product-collage__image {
    transform: scale(1.04);
  }

  .product-collage__overlay {
    position: absolute;
    inset: 0;
    background: rgb(var(--collage-overlay, 0 0 0 / 0));
    pointer-events: none;
    transition: background 0.3s ease;
  }

  .product-collage__tile:hover .product-collage__overlay {
    background: rgb(var(--collage-overlay, 0 0 0 / 0.15));
  }

  .product-collage__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    color: var(--collage-text, #fff);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .product-collage__tile:hover .product-collage__content {
    opacity: 1;
    transform: translateY(0);
  }

  .product-collage__title {
    font-family: var(--text-font-family);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.3;
  }

  .product-collage__price {
    font-family: var(--text-font-family);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    white-space: nowrap;
    opacity: 0.85;
  }

  @media screen and (min-width: 750px) {
    .product-collage__content {
      padding: 16px;
    }

    .product-collage__title {
      font-size: 10px;
    }

    .product-collage__price {
      font-size: 10px;
    }
  }

  @media screen and (min-width: 1000px) {
    .product-collage__title {
      font-size: 11px;
    }

    .product-collage__price {
      font-size: 11px;
    }
  }

  /* ── Mobile: always show content (no hover on touch) ── */

  @media screen and (max-width: 749px) {
    .product-collage__content {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ── Always-visible content variant (all breakpoints) ── */

  .product-collage--always-show .product-collage__content {
    opacity: 1;
    transform: translateY(0);
  }
/* END_SECTION:product-collage */

/* START_SECTION:promotional-banner (INDEX:59) */
.promo-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: clamp(350px, 40vh, 450px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
  }

  .promo-banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .promo-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .promo-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    padding: 24px 16px;
    color: #ffffff;
  }

  .promo-banner__pre-heading {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
  }

  .promo-banner__heading {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.0;
    color: #ffffff;
    margin: 12px 0 0;
  }

  @media screen and (min-width: 750px) {
    .promo-banner__heading {
      font-size: 56px;
    }
  }

  .promo-banner__subheading {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 16px 0 0;
  }

  .promo-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 32px;
    margin-top: 32px;
    background: #ffffff;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 0;
    border: none;
    transition: background 0.2s ease;
    cursor: pointer;
  }

  .promo-banner__btn:hover {
    background: #E0E0E0;
  }
/* END_SECTION:promotional-banner */

/* START_SECTION:social-proof (INDEX:68) */
.social-proof {
    background: #000000;
    padding-top: 48px;
  }

  @media screen and (min-width: 750px) {
    .social-proof {
      padding-top: 80px;
    }
  }

  .social-proof__header {
    text-align: center;
    padding: 0 16px;
    margin-bottom: 32px;
  }

  @media screen and (min-width: 750px) {
    .social-proof__header {
      margin-bottom: 40px;
    }
  }

  .social-proof__heading {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
  }

  @media screen and (min-width: 750px) {
    .social-proof__heading {
      font-size: 32px;
    }
  }

  .social-proof__subheading {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #A2A2A2;
    margin: 8px 0 0;
  }

  .social-proof__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  @media screen and (min-width: 750px) {
    .social-proof__grid {
      grid-template-columns: repeat(6, 1fr);
    }
  }

  .social-proof__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
    text-decoration: none;
  }

  .social-proof__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .social-proof__placeholder {
    width: 100%;
    height: 100%;
    background: #1D1D1D;
  }

  .social-proof__hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
  }

  .social-proof__item:hover .social-proof__hover {
    background: rgba(0, 0, 0, 0.4);
  }

  .social-proof__hover-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .social-proof__item:hover .social-proof__hover-text {
    opacity: 1;
  }
/* END_SECTION:social-proof */

/* START_SECTION:split-banner (INDEX:70) */
.split-banner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  @media screen and (min-width: 750px) {
    .split-banner {
      grid-template-columns: 1fr 1fr;
    }
  }

  .split-banner__tile {
    position: relative;
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    text-decoration: none;
    color: #ffffff;
  }

  @media screen and (min-width: 750px) {
    .split-banner__tile {
      height: 600px;
      padding: 40px;
    }
  }

  .split-banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
  }

  .split-banner__tile:hover .split-banner__image {
    transform: scale(1.03);
  }

  .split-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
  }

  .split-banner__content {
    position: relative;
    z-index: 2;
  }

  .split-banner__category {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0 0 8px;
  }

  .split-banner__heading {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.0;
    color: #ffffff;
    margin: 0 0 16px;
  }

  @media screen and (min-width: 750px) {
    .split-banner__heading {
      font-size: 36px;
    }
  }

  .split-banner__cta {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
  }

  .split-banner__tile:hover .split-banner__cta {
    background: #ffffff;
    color: #000000;
  }
/* END_SECTION:split-banner */

/* START_SECTION:trust-bar (INDEX:75) */
.trust-bar {
    background: var(--trust-bar-bg, #000);
    color: var(--trust-bar-text, #fff);
    border-top: 1px solid var(--trust-bar-border, rgba(255, 255, 255, 0.1));
    border-bottom: 1px solid var(--trust-bar-border, rgba(255, 255, 255, 0.1));
    padding: 10px 0;
    overflow: hidden;
  }

  .trust-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .trust-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--trust-bar-accent, #fff);
    opacity: 0.85;
  }

  .trust-bar__icon svg {
    width: 13px;
    height: 13px;
  }

  .trust-bar__text {
    font-family: var(--text-font-family);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
  }

  .trust-bar__separator {
    flex-shrink: 0;
    font-family: var(--text-font-family);
    font-size: 10px;
    font-weight: 300;
    opacity: 0.35;
    line-height: 1;
    user-select: none;
  }

  /* ── Mobile: marquee ── */

  .trust-bar__track {
    display: flex;
    width: max-content;
    animation: trustMarquee var(--trust-bar-speed, 20s) linear infinite;
  }

  .trust-bar__slide {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
  }

  .trust-bar__static {
    display: none;
  }

  @keyframes trustMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @media (prefers-reduced-motion: reduce) {
    .trust-bar__track {
      animation: none;
      justify-content: center;
      width: 100%;
    }

    .trust-bar__slide:last-child {
      display: none;
    }
  }

  /* ── Desktop: static centered ── */

  @media screen and (min-width: 750px) {
    .trust-bar {
      padding: 12px 24px;
    }

    .trust-bar__track {
      display: none;
    }

    .trust-bar__static {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }

    .trust-bar__text {
      font-size: 9px;
      letter-spacing: 0.08em;
    }

    .trust-bar__icon svg {
      width: 15px;
      height: 15px;
    }

    .trust-bar__separator {
      font-size: 11px;
    }
  }

  @media screen and (min-width: 1000px) {
    .trust-bar__static {
      gap: 32px;
    }

    .trust-bar__text {
      font-size: 10px;
    }

    .trust-bar__icon svg {
      width: 16px;
      height: 16px;
    }
  }
/* END_SECTION:trust-bar */