/** Shopify CDN: Minification failed

Line 339:2 Unexpected "{"
Line 339:3 Expected identifier but found "%"
Line 341:3 Unexpected "{"
Line 341:4 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collections-catalog (INDEX:11) */
.collections-catalog {
    padding: 3.2rem 2.4rem 4rem;
  }

  .collections-catalog__heading {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0 0 2.8rem;
    color: #282120;
  }

  /* ── Grid ── */
  .collections-catalog__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  @media screen and (max-width: 989px) {
    .collections-catalog__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media screen and (max-width: 599px) {
    .collections-catalog__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* ── Card ── */
  .collections-catalog__item {
    border-radius: 1.6rem;
    overflow: hidden;
    background-color: #FAF9F9;
    border: 1px solid #D9D9D9;
    transition: border-color 200ms ease, box-shadow 200ms ease;
  }

  .collections-catalog__item:hover {
    border-color: rgba(40, 33, 32, 0.25);
    box-shadow: 0 4px 16px rgba(40, 33, 32, 0.08);
  }

  .collections-catalog__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 2.4rem 1.6rem 2.4rem;
    text-decoration: none;
    color: #282120;
    min-height: 12rem;
  }

  /* ── Icon ── */
  .collections-catalog__icon-wrap {
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .collections-catalog__icon-wrap svg {
    width: 100%;
    height: 100%;
  }

  /* ── Label ── */
  .collections-catalog__label {
    font-family: Gilroy-Regular, sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: center;
    color: #282120;
  }

  /* ── Footer button ── */
  .collections-catalog__footer {
    display: flex;
    justify-content: center;
    margin-top: 2.8rem;
  }

  .collections-catalog__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.8rem;
    background-color: #FAF9F9;
    border: 1px solid #D9D9D9;
    border-radius: 10rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: #282120;
    text-decoration: none;
    transition: background-color 200ms ease, border-color 200ms ease;
  }

  .collections-catalog__btn:hover {
    background-color: #f0efef;
    border-color: rgba(40, 33, 32, 0.3);
  }

  .collections-catalog__btn-arrow {
    display: flex;
    align-items: center;
  }
/* END_SECTION:collections-catalog */

/* START_SECTION:homepage-about (INDEX:20) */
.homepage-about {
    position: relative;
    background-color: #F9F2EC;
    overflow: hidden;
  }

  /* ── Decorative column rules ── */
  .homepage-about__rule {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #EBE2D9;
    pointer-events: none;
    z-index: 0;
  }
  .homepage-about__rule--1 { left: 25%; }
  .homepage-about__rule--2 { left: 50%; }
  .homepage-about__rule--3 { left: 75%; }

  /* ── Decorative blob ── */
  .homepage-about__blob {
    position: absolute;
    bottom: -12rem;
    right: -8rem;
    width: 42rem;
    height: 32rem;
    background-color: #EBE0D7;
    border-radius: 12rem;
    transform: rotate(136.6deg);
    pointer-events: none;
    z-index: 0;
  }

  /* ── Inner layout ── */
  .homepage-about__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  @media screen and (min-width: 990px) {
    .homepage-about__inner {
      flex-direction: row;
      align-items: stretch;
      gap: 0;
      min-height: 52rem;
    }
  }

  /* ── Content (left) ── */
  .homepage-about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5.6rem 4rem 5.6rem 8rem;
    gap: 2.4rem;
  }

  @media screen and (max-width: 989px) {
    .homepage-about__content {
      padding: 4rem 2.4rem 0;
    }
  }

  @media screen and (min-width: 990px) {
    .homepage-about__content {
      flex: 0 0 58%;
      max-width: 58%;
    }
  }

  .homepage-about__heading {
    font-size: clamp(3.2rem, 4vw, 5.6rem);
    font-weight: 700;
    line-height: 1.1;
    color: #282120;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .homepage-about__text {
    font-size: 1.5rem;
    line-height: 1.75;
    color: #282120;
    opacity: 0.8;
    max-width: 48rem;
  }

  .homepage-about__text p {
    margin: 0;
  }

  /* ── Button ── */
  .homepage-about__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem 3.2rem;
    background-color: #ffffff;
    border: 1px solid #B8A99B;
    border-radius: 10rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: #B8A99B;
    text-decoration: none;
    align-self: flex-start;
    transition: background-color 200ms ease, color 200ms ease;
  }

  .homepage-about__btn:hover {
    background-color: #B8A99B;
    color: #ffffff;
  }

  /* ── Media (right) ── */
  .homepage-about__media {
    overflow: hidden;
  }

  @media screen and (max-width: 989px) {
    .homepage-about__media {
      margin: 0 2.4rem 4rem;
      border-radius: 1.6rem;
      max-height: 50vw;
    }
  }

  @media screen and (min-width: 990px) {
    .homepage-about__media {
      flex: 0 0 42%;
      max-width: 42%;
      margin-top: 4rem;
      margin-right: 0;
      border-radius: 2rem 0 0 2rem;
    }
  }

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

  .homepage-about__img--placeholder {
    background-color: #EBE0D7;
  }
/* END_SECTION:homepage-about */

/* START_SECTION:homepage-collections-grid (INDEX:21) */
.homepage-collections-grid {
    padding: 0 2.4rem 2.4rem;
    overflow: hidden;
  }

  .homepage-collections-grid__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem 2.4rem 2rem;
  }

  .homepage-collections-grid__heading {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
  }

  .homepage-collections-grid__view-all {
    font-size: 1.4rem;
    color: currentColor;
    opacity: 0.65;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 150ms ease;
  }

  .homepage-collections-grid__view-all:hover {
    opacity: 1;
  }

  /* ── Grid ── */
  .homepage-collections-grid__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  @media screen and (min-width: 750px) {
    .homepage-collections-grid__list {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  /* ── Card ── */
  .homepage-collections-grid__item {
    border-radius: 1.6rem;
    overflow: hidden;
  }

  {% comment %}.homepage-collections-grid__item--colored {
    background-color: var(--card-bg);
  }{% endcomment %}

  .homepage-collections-grid__item--wide {
    grid-column: span 2;
  }

  /* Sale card */
  @media screen and (max-width: 749px) {
    .homepage-collections-grid__item--sale {
      grid-column: span 2;
    }
  }

  .homepage-collections-grid__link--sale {
    display: block;
  }

  .homepage-collections-grid__sale-svg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.6rem;
  }

  /* ── Regular card ── */
  .homepage-collections-grid__link {
    display: block;
    text-decoration: none;
    color: currentColor;
  }

  .homepage-collections-grid__image-wrapper {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
  }

  .homepage-collections-grid__item--wide .homepage-collections-grid__image-wrapper {
    aspect-ratio: 5 / 3;
  }

  .homepage-collections-grid__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 500ms ease;
  }

  .homepage-collections-grid__image--placeholder {
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-foreground), 0.06);
  }

  .homepage-collections-grid__link:hover .homepage-collections-grid__image {
    transform: scale(1.04);
  }

  /* ── Label pill overlay ── */
  .homepage-collections-grid__info {
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 10rem;
    padding: 0.7rem 0.7rem 0.7rem 1.4rem;
    white-space: nowrap;
    pointer-events: none;
    transition: background-color 200ms ease;
  }

  .homepage-collections-grid__link:hover .homepage-collections-grid__info {
    background-color: #ffffff;
  }

  .homepage-collections-grid__title {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    color: #282120;
  }

  .homepage-collections-grid__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    background-color: #282120;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background-color 200ms ease;
  }

  .homepage-collections-grid__link:hover .homepage-collections-grid__arrow {
    background-color: #B8A99B;
  }

  /* ── SALE card ── */
  .homepage-collections-grid__sale-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    min-height: 22rem;
    overflow: hidden;
  }

  .homepage-collections-grid__sale-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2.4rem 1.6rem 2.4rem 3.2rem;
    gap: 2rem;
  }

  .homepage-collections-grid__sale-heading {
    display: block;
    font-size: 5.6rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: #ffffff;
  }

  @media screen and (min-width: 990px) {
    .homepage-collections-grid__sale-heading {
      font-size: 8rem;
    }
  }

  .homepage-collections-grid__sale-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    border-radius: 10rem;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 200ms ease, border-color 200ms ease;
  }

  .homepage-collections-grid__sale-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
  }

  .homepage-collections-grid__sale-right {
    overflow: hidden;
    display: flex;
  }

  .homepage-collections-grid__sale-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  /* ── Mobile ── */
  @media screen and (max-width: 749px) {
    .homepage-collections-grid {
      padding: 0 0 1.2rem;
      box-sizing: border-box;
      max-width: 100%;
    }

    .homepage-collections-grid__list {
      gap: 0.8rem;
      box-sizing: border-box;
      width: 100%;
      max-width: 100vw;
    }

    .homepage-collections-grid__item--wide .homepage-collections-grid__image-wrapper {
      aspect-ratio: 3 / 2;
    }

    .homepage-collections-grid__info {
      bottom: 0.8rem;
      left: 0.8rem;
      padding: 0.6rem 0.6rem 0.6rem 1rem;
      gap: 0.6rem;
    }

    .homepage-collections-grid__title {
      font-size: 1.2rem;
    }

    .homepage-collections-grid__arrow {
      width: 2rem;
      height: 2rem;
    }

    .homepage-collections-grid__sale-heading {
      font-size: 3.6rem;
    }

    .homepage-collections-grid__sale-left {
      padding: 1.6rem 1.2rem 1.6rem 2rem;
      gap: 1.2rem;
    }

    .homepage-collections-grid__sale-btn {
      font-size: 1.2rem;
      padding: 0.8rem 1.4rem;
    }
  }
/* END_SECTION:homepage-collections-grid */

/* START_SECTION:homepage-community (INDEX:22) */
.sn-ig {
    background-color: #faf9f9;
    overflow: hidden;
  }

  /* ── Header ── */
  .sn-ig__header {
    display: flex;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 2.4rem;
  }

  .sn-ig__heading {
    margin: 0;
    font-size: 4rem;
    font-weight: 600;
    color: #282120;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  /* ── Photos row ── */
  /*
    grid-auto-flow: column makes ALL items sit in one row
    regardless of how many blocks are added.
    align-items: start lets even items drop independently.
  */
  .sn-ig__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-items: start;
  }

  .sn-ig__item {
    position: relative;
    overflow: hidden;
  }

  /* Portrait 242:302 via padding trick — reliable across all browsers */
  .sn-ig__item::before {
    content: '';
    display: block;
    padding-top: 124.8%; /* 302 ÷ 242 × 100 */
  }

  /* Stagger: even photos drop down 10.6% of photo height.
     margin-top % is relative to containing block width,
     so: 32px ÷ 1212px × 100 ≈ 2.64% */
  .sn-ig__item:nth-child(even) {
    margin-top: 2.64%;
  }

  .sn-ig__link {
    position: absolute;
    inset: 0;
    display: block;
  }

  .sn-ig__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .sn-ig__item:hover .sn-ig__img {
    transform: scale(1.04);
  }

  .sn-ig__img--placeholder {
    background-color: rgba(0, 0, 0, 0.04);
  }

  /* Instagram badge on each photo */
  .sn-ig__badge {
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  /* ── Follow button ── */
  .sn-ig__cta {
    display: flex;
    justify-content: center;
    padding: 3.2rem 0 5.2rem;
  }

  .sn-ig__follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2.6rem;
    height: 5.1rem;
    border: 0.1rem solid #b8a99b;
    border-radius: 2.55rem;
    background-color: #ffffff;
    color: #282120;
    font-size: 1.4rem;
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  .sn-ig__follow-btn:hover {
    background-color: #b8a99b;
    color: #ffffff;
  }

  .sn-ig__follow-btn:hover svg rect[stroke="#B8A99B"] {
    stroke: #ffffff;
  }

  .sn-ig__follow-btn:hover svg path[fill="#B8A99B"],
  .sn-ig__follow-btn:hover svg circle[fill="#B8A99B"] {
    fill: #ffffff;
  }

  /* ── Tablet ── */
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .sn-ig__heading {
      font-size: 3.2rem;
    }
  }

  /* ── Mobile ── */
  @media screen and (max-width: 749px) {
    .sn-ig__header {
      justify-content: flex-start;
      padding-top: 3.2rem;
      padding-bottom: 1.6rem;
    }

    .sn-ig__heading {
      font-size: 2.8rem;
    }

    /* Horizontal scroll strip: show ~2.3 photos at a time */
    .sn-ig__grid {
      grid-auto-columns: 56vw;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
    }

    .sn-ig__item {
      scroll-snap-align: start;
    }

    /* Remove stagger on mobile so scrolling stays clean */
    .sn-ig__item:nth-child(even) {
      margin-top: 0;
    }
  }
/* END_SECTION:homepage-community */

/* START_SECTION:homepage-features (INDEX:23) */
.homepage-features {
    padding: 3.2rem 2rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .homepage-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    box-sizing: border-box;
    width: 100%;
  }

  @media screen and (min-width: 750px) {
    .homepage-features__grid {
      gap: 4rem;
      max-width: var(--page-width);
      margin: 0 auto;
    }

    .homepage-features {
      padding: 4rem 4rem;
    }
  }

  .homepage-features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }

  /* Circle icon container */
  .homepage-features__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #B8A99B;
    flex-shrink: 0;
    color: #B8A99B;
  }

  @media screen and (min-width: 750px) {
    .homepage-features__icon {
      width: 10rem;
      height: 10rem;
    }
  }

  .homepage-features__icon svg {
    width: 3rem;
    height: 3rem;
    color: #B8A99B;
  }

  @media screen and (min-width: 750px) {
    .homepage-features__icon svg {
      width: 4rem;
      height: 4rem;
    }
  }

  .homepage-features__icon-image {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
  }

  @media screen and (min-width: 750px) {
    .homepage-features__icon-image {
      width: 4rem;
      height: 4rem;
    }
  }

  .homepage-features__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.01em;
    color: #282120;
  }

  @media screen and (min-width: 750px) {
    .homepage-features__title {
      font-size: 1.6rem;
      letter-spacing: 0.02em;
    }
  }

  .homepage-features__text {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.65;
    line-height: 1.5;
    max-width: 22rem;
    color: #282120;
    display: none;
  }

  @media screen and (min-width: 750px) {
    .homepage-features__text {
      display: block;
      font-size: 1.4rem;
      line-height: 1.6;
    }
  }

  /* ── Mobile: single-column stack ── */
  @media screen and (max-width: 749px) {
    .homepage-features {
      padding: 5.6rem 2.4rem;
      overflow-x: hidden;
    }

    .homepage-features__grid {
      display: block;
      width: 100%;
        max-width: 100vw;
    }

    .section-homepage-features {
      max-width: 100vw;
    }

    .homepage-features__item {
      display: block;
      text-align: center;
      width: 100%;
      box-sizing: border-box;
      margin-bottom: 5.6rem;
      max-width: 100vw;
    }

    .homepage-features__item:last-child {
      margin-bottom: 0;
    }

    .homepage-features__icon {
      width: 9rem;
      height: 9rem;
      margin: 0 auto 1.6rem;
    }

    .homepage-features__icon svg {
      width: 3.6rem;
      height: 3.6rem;
    }

    .homepage-features__icon-image {
      width: 3.6rem;
      height: 3.6rem;
    }

    .homepage-features__title {
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 0;
      max-width: 100%;
    }

    .homepage-features__text {
      display: block;
      font-size: 1.4rem;
      line-height: 1.6;
      max-width: 30rem;
      margin-left: auto;
      margin-right: auto;
    }
  }
/* END_SECTION:homepage-features */

/* START_SECTION:homepage-hero (INDEX:24) */
.homepage-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 52rem;
    overflow: hidden;
  }

  @media screen and (min-width: 750px) {
    .homepage-hero {
      grid-template-columns: 1fr 1fr;
      min-height: 60rem;
    }
  }

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

  @media screen and (min-width: 750px) {
    .homepage-hero__media {
      position: relative;
      grid-column: 2;
      grid-row: 1;
    }
  }

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

  .homepage-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem 3rem;
    background: rgba(0, 0, 0, var(--hero-overlay));
  }

  @media screen and (min-width: 750px) {
    .homepage-hero__content {
      grid-column: 1;
      grid-row: 1;
      justify-content: center;
      padding: 6rem 5rem;
      background: none;
    }
  }

  .homepage-hero__subheading {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 1.6rem;
    opacity: 0.8;
  }

  .homepage-hero__heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 3.2rem;
    max-width: 46rem;
  }

  @media screen and (min-width: 990px) {
    .homepage-hero__heading {
      font-size: 5.6rem;
    }
  }

  .homepage-hero__btn {
    align-self: flex-start;
  }
/* END_SECTION:homepage-hero */

/* START_SECTION:homepage-sale-banner (INDEX:25) */
.homepage-sale-banner {
    background-color: var(--sale-bg, #E91E8C);
    color: var(--sale-text, #fff);
    overflow: hidden;
  }

  .homepage-sale-banner__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.2rem;
    padding: 4rem 3rem;
    max-width: var(--page-width);
    margin: 0 auto;
  }

  @media screen and (min-width: 750px) {
    .homepage-sale-banner__inner {
      grid-template-columns: 1fr 2fr;
      align-items: center;
      padding: 5.6rem 4rem;
      gap: 6rem;
    }
  }

  .homepage-sale-banner__content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }

  .homepage-sale-banner__label {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
  }

  .homepage-sale-banner__heading {
    font-size: 6.4rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.02em;
  }

  @media screen and (min-width: 990px) {
    .homepage-sale-banner__heading {
      font-size: 9.6rem;
    }
  }

  .homepage-sale-banner__text {
    font-size: 1.5rem;
    margin: 0;
    opacity: 0.9;
    max-width: 28rem;
    line-height: 1.5;
  }

  .homepage-sale-banner__btn {
    align-self: flex-start;
    border-color: var(--sale-text, #fff);
    color: var(--sale-text, #fff);
  }

  .homepage-sale-banner__btn:hover {
    background-color: var(--sale-text, #fff);
    color: var(--sale-bg, #E91E8C);
  }

  .homepage-sale-banner__products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }

  .homepage-sale-banner__product-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-decoration: none;
    color: inherit;
  }

  .homepage-sale-banner__product-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border-radius: 0.4rem;
  }

  .homepage-sale-banner__product-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .homepage-sale-banner__product-title {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.95;
  }

  .homepage-sale-banner__product-price {
    font-size: 1.3rem;
    opacity: 0.8;
  }
/* END_SECTION:homepage-sale-banner */

/* START_SECTION:main-collection-banner (INDEX:36) */
/* ── SixNine Collection Banner ───────────────────────────── */
  .collection-hero {
    padding: 1.6rem 0 0;
  }

  .collection-hero__title {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #282120;
  }

  @media screen and (min-width: 750px) {
    .collection-hero {
      padding: 2rem 0 0;
    }
    .collection-hero__title {
      font-size: 3.2rem;
    }
  }

  .collection-hero__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    flex-wrap: nowrap;
  }

  .collection-hero__title-row {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    flex: 1 1 auto;
    min-width: 0;
  }

  .collection-hero__count {
    font-size: 1.6rem;
    font-weight: 400;
    color: rgba(var(--color-foreground), 0.4);
    flex-shrink: 0;
  }

  .collection-sort-form {
    flex-shrink: 0;
  }

  .collection-sort {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .collection-sort__label {
    font-size: 1.4rem;
    color: rgba(var(--color-foreground), 0.6);
    white-space: nowrap;
  }

  @media screen and (max-width: 749px) {
    .collection-sort__label {
      display: none;
    }
  }

  .collection-sort__select-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: #F9F2EC;
    border: 1px solid #D6C9BD;
    border-radius: 999px;
    padding: 0.6rem 0.8rem 0.6rem 1.4rem;
    gap: 0.3rem;
    cursor: pointer;
  }

  .collection-sort__select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    font-size: 1.4rem;
    font-weight: 500;
    color: #282120;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    outline: none;
    max-width: 14rem;
  }

  .collection-sort__caret {
    display: flex;
    align-items: center;
    pointer-events: none;
    flex-shrink: 0;
  }

  .collection-sort__caret .icon-caret {
    width: 1rem;
    height: 1rem;
  }
/* END_SECTION:main-collection-banner */

/* START_SECTION:main-collection-product-grid (INDEX:37) */
/* ── SixNine Product Grid ────────────────────────────────── */

  /* Reset image padding: theme has card_image_padding: 20 (2rem).
     base.css sets --image-padding on .product-card-wrapper .card;
     we need higher specificity to override it to 0 here. */
  .product-grid .product-card-wrapper .card {
    --image-padding: 0rem;
  }

  /* Remove any residual borders/shadows for both card styles */
  .product-grid .product-card-wrapper .card--card,
  .product-grid .card--standard .card__inner {
    border: none;
    box-shadow: none;
  }

  .product-grid .product-card-wrapper .card--card::after,
  .product-grid .card--standard .card__inner::after {
    display: none;
  }

  /* Images: fill card, anchor to top so model head is always visible */
  .product-grid .card__media .media img {
    object-fit: cover;
    object-position: top center;
    width: 100%;
    height: 100%;
  }

  /* Explicitly pin card__media to fill its ratio container edge-to-edge.
     Must stay position: absolute (Dawn default) — do NOT override to relative. */
  .product-grid .card__media {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
  }

  /* ── Price display ───────────────────────────────────────── */

  /* Sale: compare-at (original, crossed out) */
  .product-grid .price--on-sale .price-item--regular {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(40, 33, 32, 0.45);
    text-decoration: line-through;
    margin-right: 0.3rem;
  }

  /* Sale: discounted price */
  .product-grid .price--on-sale .price-item--sale {
    font-size: 1.4rem;
    font-weight: 600;
    color: #282120;
  }

  /* Regular (no sale) price */
  .product-grid .price__regular .price-item--regular {
    font-size: 1.4rem;
    font-weight: 600;
    color: #282120;
  }

  /* ── Mobile: fixed card image height ─────────────────────── */
  @media screen and (max-width: 749px) {
    .product-grid .product-card-wrapper .card__inner {
      height: 280px;
    }
    .product-grid .product-card-wrapper .card__inner::before {
      padding-bottom: 0;
    }
  }

  /* ── Pagination ──────────────────────────────────────────── */
  .pagination-wrapper {
    margin-top: 4rem;
    margin-bottom: 2rem;
  }

  .pagination__list > li {
    flex: 0 0 3.6rem;
    max-width: 3.6rem;
  }

  .pagination__item {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    font-size: 1.4rem;
    transition: background-color 150ms ease;
  }

  .pagination__item--current::after,
  a.pagination__item:hover::after,
  .pagination__item-arrow:hover::after {
    display: none !important;
  }

  .pagination__item--current {
    background-color: #282120;
    color: #ffffff;
    border-radius: 50%;
  }

  a.pagination__item:hover:not(.pagination__item--current):not(.pagination__item-arrow) {
    background-color: rgba(40, 33, 32, 0.08);
  }

  .pagination__item-arrow {
    background-color: #F9F2EC;
    border-radius: 50%;
  }

  .pagination__item-arrow:hover {
    background-color: #e8ddd4;
  }
/* END_SECTION:main-collection-product-grid */

/* START_SECTION:slideshow (INDEX:63) */
/* ─── SixNine Hero Slideshow ─────────────────────────────────── */

  /* Slide container */
  .section-slideshow .slideshow__slide {
    border-radius: 2rem;
    overflow: hidden;
  }

  /* White gradient panel on the left — creates the split-layout appearance */
  @media screen and (min-width: 750px) {
    .section-slideshow .slideshow__slide {
      position: relative;
    }
    .section-slideshow .slideshow__slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, #ffffff 38%, rgba(255,255,255,0.7) 52%, transparent 68%);
      z-index: 1;
      pointer-events: none;
    }
    .section-slideshow .slideshow__text-wrapper {
      z-index: 2;
    }
  }

  /* Text wrapper — full-height overlay, left-anchored */
  .section-slideshow .slideshow__text-wrapper.banner__content--middle-left,
  .section-slideshow .slideshow__text-wrapper.banner__content--top-left,
  .section-slideshow .slideshow__text-wrapper.banner__content--bottom-left {
    padding: 4.8rem 4rem;
  }

  /* The text box itself — transparent, left-aligned content */
  .section-slideshow .slideshow__text.banner__box {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0;
    max-width: 44rem;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Heading */
  .section-slideshow .slideshow__text .banner__heading {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    color: #282120;
  }

  @media screen and (min-width: 990px) {
    .section-slideshow .slideshow__text .banner__heading {
      font-size: 6.4rem;
    }
  }

  /* Subheading */
  .section-slideshow .slideshow__text .banner__text {
    margin: 0;
  }

  .section-slideshow .slideshow__text .banner__text p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: rgba(40, 33, 32, 0.65);
    margin: 0;
  }

  /* CTA button */
  .section-slideshow .slideshow__text .banner__buttons {
    margin: 0;
  }

  .section-slideshow .slideshow__text .banner__buttons .button {
    border-radius: 10rem;
    padding: 1.3rem 3.2rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  /* Primary: warm taupe filled pill */
  .section-slideshow .slideshow__text .banner__buttons .button--primary {
    background-color: #B8A99B;
    border-color: #B8A99B;
    color: #fff;
  }

  .section-slideshow .slideshow__text .banner__buttons .button--primary:hover {
    background-color: #a09080;
    border-color: #a09080;
  }

  /* Secondary: outlined dark pill */
  .section-slideshow .slideshow__text .banner__buttons .button--secondary {
    border-color: #282120;
    color: #282120;
    background: transparent;
  }

  .section-slideshow .slideshow__text .banner__buttons .button--secondary:hover {
    background-color: #282120;
    color: #fff;
  }

  /* ── Navigation controls — bottom-left corner of the banner ── */
  .section-slideshow slideshow-component {
    position: relative;
  }

  .section-slideshow .slideshow__controls {
    position: absolute;
    bottom: 3.2rem;
    right: 4rem;
    z-index: 10;
    border: none !important;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }

  /* Counter between the two arrows */
  .section-slideshow .slideshow__controls .slider-counter {
    order: 2;
    font-size: 1.4rem;
    font-weight: 600;
    color: #282120;
    letter-spacing: 0.02em;
    min-width: 3.2rem;
    text-align: center;
  }

  /* Prev button — first in row */
  .section-slideshow .slideshow__controls .slider-button--prev {
    order: 1;
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    background-color: #282120;
    color: #fff;
    opacity: 0.5;
    transition: opacity 180ms ease;
    flex-shrink: 0;
  }

  .section-slideshow .slideshow__controls .slider-button--prev:hover {
    opacity: 0.75;
  }

  /* Next button — last in row */
  .section-slideshow .slideshow__controls .slider-button--next {
    order: 3;
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    background-color: #282120;
    color: #fff;
    opacity: 1;
    transition: opacity 180ms ease;
    flex-shrink: 0;
  }

  .section-slideshow .slideshow__controls .slider-button--next:hover {
    opacity: 0.8;
  }

  /* Disabled state */
  .section-slideshow .slideshow__controls .slider-button--prev[disabled],
  .section-slideshow .slideshow__controls .slider-button--next[disabled] {
    opacity: 0.2;
    cursor: not-allowed;
  }

  /* Caret icon — white, correct direction */
  .section-slideshow .slideshow__controls .slider-button--prev .icon {
    transform: rotate(90deg);
    width: 1.2rem;
    height: 1.2rem;
    color: #fff;
  }

  .section-slideshow .slideshow__controls .slider-button--next .icon {
    transform: rotate(-90deg);
    width: 1.2rem;
    height: 1.2rem;
    color: #fff;
  }

  /* ── Mobile: hide desktop slideshow, show dedicated mobile carousel ── */
  .sn-mb {
    display: none;
  }

  @media screen and (max-width: 749px) {
    /* Section stays full-bleed */
    .section-slideshow {
      margin-left: -1.5rem;
      margin-right: -1.5rem;
      width: calc(100% + 3rem);
      overflow: hidden;
      max-width: 100vw;
    }

    /* Hide the Dawn desktop slideshow entirely */
    .section-slideshow slideshow-component {
      display: none;
    }

    /* Show mobile carousel */
    .sn-mb {
      display: block;
      position: relative;
      overflow: hidden;
    }

    .sn-mb__track {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .sn-mb__track::-webkit-scrollbar {
      display: none;
    }

    .sn-mb__slide {
      flex: 0 0 100%;
      width: 100%;
      scroll-snap-align: start;
      position: relative;
      height: 530px;
      overflow: hidden;
    }

    .sn-mb__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    .sn-mb__content {
      position: absolute;
      inset: auto 0 0 0;
      padding: 2rem 2rem 6rem;
      background: linear-gradient(to top, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.65) 55%, transparent 100%);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      z-index: 2;
    }

    .sn-mb__heading {
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: #282120;
      margin: 0;
    }

    .sn-mb__subheading {
      font-size: 1.4rem;
      color: rgba(40, 33, 32, 0.65);
      margin: 0;
      line-height: 1.4;
    }

    .sn-mb__btn {
      display: inline-flex;
      align-items: center;
      padding: 1rem 2.4rem;
      border-radius: 10rem;
      background-color: #B8A99B;
      color: #fff;
      font-size: 1.4rem;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 200ms ease;
    }

    .sn-mb__btn:hover {
      background-color: #a09080;
    }
  }
/* END_SECTION:slideshow */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:card-product (INDEX:69) */
/* ── Color swatches overlay ──────────────────────────────── */
  .card-product__swatches {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.3rem;
    z-index: 2;
    pointer-events: none;
  }

  .card-product__swatch {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    background-color: #B8A99B;
  }

  /* ── Swatch color mappings ───────────────────────────────── */
  .card-product__swatch[data-color*="black"],
  .card-product__swatch[data-color*="smoke"] {
    background-color: #1a1a1a;
  }

  .card-product__swatch[data-color="midnight"],
  .card-product__swatch[data-color="navy"],
  .card-product__swatch[data-color="navy-air"] {
    background-color: #1e3a5f;
  }

  .card-product__swatch[data-color*="navy"] {
    background-color: #1e3a5f;
  }

  .card-product__swatch[data-color*="pink"],
  .card-product__swatch[data-color*="cotton-candy"],
  .card-product__swatch[data-color*="candy"] {
    background-color: #f472b6;
  }

  .card-product__swatch[data-color*="blue"]:not([data-color*="navy"]) {
    background-color: #60a5fa;
  }

  .card-product__swatch[data-color*="ember"] {
    background-color: #fb923c;
  }

  .card-product__swatch[data-color*="haze"] {
    background-color: #14b8a6;
  }

  .card-product__swatch[data-color*="grey"],
  .card-product__swatch[data-color*="gray"],
  .card-product__swatch[data-color*="silver"] {
    background-color: #9ca3af;
  }

  .card-product__swatch[data-color*="white"],
  .card-product__swatch[data-color*="ivory"],
  .card-product__swatch[data-color*="cream"] {
    background-color: #f5f0e8;
    border-color: rgba(0, 0, 0, 0.2);
  }

  .card-product__swatch[data-color*="beige"],
  .card-product__swatch[data-color*="nude"],
  .card-product__swatch[data-color*="camel"],
  .card-product__swatch[data-color*="sand"] {
    background-color: #d4b896;
  }

  .card-product__swatch[data-color*="red"],
  .card-product__swatch[data-color*="crimson"] {
    background-color: #ef4444;
  }

  .card-product__swatch[data-color*="green"],
  .card-product__swatch[data-color*="sage"],
  .card-product__swatch[data-color*="forest"] {
    background-color: #22c55e;
  }

  .card-product__swatch[data-color*="purple"],
  .card-product__swatch[data-color*="violet"],
  .card-product__swatch[data-color*="lilac"],
  .card-product__swatch[data-color*="lavender"] {
    background-color: #a855f7;
  }

  .card-product__swatch[data-color*="orange"],
  .card-product__swatch[data-color*="coral"] {
    background-color: #f97316;
  }

  .card-product__swatch[data-color*="teal"],
  .card-product__swatch[data-color*="mint"],
  .card-product__swatch[data-color*="turquoise"] {
    background-color: #14b8a6;
  }

  .card-product__swatch[data-color*="brown"],
  .card-product__swatch[data-color*="chocolate"] {
    background-color: #78350f;
  }

  .card-product__swatch[data-color*="yellow"],
  .card-product__swatch[data-color*="mustard"] {
    background-color: #eab308;
  }

  /* ── Product tag badges ──────────────────────────────────── */
  .card-product__tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 2;
    pointer-events: none;
  }

  .card-product__tag {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    background-color: #b0b0b0;
    text-transform: uppercase;
    line-height: 1;
  }

  .card-product__tag[data-tag="hot"]  { background-color: #F8AD7E; }
  .card-product__tag[data-tag="new"]  { background-color: #A7C1D0; }
  .card-product__tag[data-tag="sale"] { background-color: #F6A8C8; }
/* END_SNIPPET:card-product */