/** Shopify CDN: Minification failed

Line 3331:2 Unexpected "{"
Line 3331:3 Expected identifier but found "%"
Line 3364:2 Unexpected "{"
Line 3364:3 Expected identifier but found "%"
Line 5755:18 Expected identifier but found whitespace
Line 5755:20 Unexpected "{"
Line 5755:29 Expected ":"
Line 5755:90 Expected ":"
Line 5756:21 Expected identifier but found whitespace
Line 5756:23 Unexpected "{"
... and 2 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:404 (INDEX:0) */
.not-found {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 60px 20px 80px;
    text-align: center;
  }

  .not-found__inner {
    max-width: 560px;
    width: 100%;
  }

  .not-found__code {
    font-family: var(--font-heading, 'Libre Bodoni', Georgia, serif);
    font-size: clamp(96px, 20vw, 160px);
    font-weight: 400;
    line-height: 1;
    color: rgb(var(--color-primary));
    opacity: 0.08;
    margin: 0 0 -24px;
    letter-spacing: -0.02em;
    user-select: none;
  }

  .not-found__title {
    font-family: var(--font-heading, 'Libre Bodoni', Georgia, serif);
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 400;
    color: rgb(var(--color-primary));
    margin: 0 0 16px;
    position: relative;
  }

  .not-found__message {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #777;
    margin: 0 0 32px;
  }

  /* ── Search ── */
  .not-found__search {
    margin-bottom: 28px;
  }

  .not-found__search-wrap {
    display: flex;
    border: 1px solid #cdcdcd;
    border-radius: 3px;
    overflow: hidden;
    transition: border-color 0.15s ease;
  }

  .not-found__search-wrap:focus-within {
    border-color: rgb(var(--color-primary));
    box-shadow: 0 0 0 1px rgb(var(--color-primary));
  }

  .not-found__search-input {
    flex: 1;
    height: 48px;
    padding: 0 16px;
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 15px;
    color: #333;
    background: #fff;
    border: none;
    outline: none;
  }

  .not-found__search-input::placeholder {
    color: #aaa;
  }

  .not-found__search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 48px;
    background: rgb(var(--color-primary));
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s ease;
    flex-shrink: 0;
  }

  .not-found__search-btn:hover {
    opacity: 0.85;
  }

  .not-found__search-btn:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  /* ── CTAs ── */
  .not-found__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .not-found__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 28px;
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: opacity 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
  }

  .not-found__btn--primary {
    background-color: rgb(var(--color-accent, 205, 25, 46));
    color: #fff;
    border: none;
  }

  .not-found__btn--primary:hover {
    opacity: 0.88;
  }

  .not-found__btn--secondary {
    background-color: transparent;
    color: rgb(var(--color-primary));
    border: 1px solid rgb(var(--color-primary));
  }

  .not-found__btn--secondary:hover {
    background-color: rgb(var(--color-primary));
    color: #fff;
  }

  .not-found__btn:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  /* ── Visually hidden ── */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ── Mobile ── */
  @media (max-width: 639px) {
    .not-found {
      min-height: 50vh;
      padding: 40px 16px 60px;
    }

    .not-found__actions {
      flex-direction: column;
      align-items: stretch;
    }

    .not-found__btn {
      justify-content: center;
    }
  }
/* END_SECTION:404 */

/* START_SECTION:about-intro (INDEX:1) */
.about-intro {
    padding: 40px 0 24px;
  }

  .about-intro__inner {
  }

  .about-intro__heading {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(var(--color-primary));
    margin: 0 0 12px;
    text-transform: uppercase;
  }

  .about-intro__body {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgb(var(--color-foreground));
    max-width: 1496px;
  }

  .about-intro__body p {
    margin: 0 0 12px;
  }

  .about-intro__body p:last-child {
    margin-bottom: 0;
  }

  /* ── Responsive ── */
  @media (max-width: 639px) {
    .about-intro {
      padding: 24px 0 16px;
    }

    .about-intro__heading {
      font-size: 22px;
    }

    .about-intro__body {
      font-size: 15px;
    }
  }
/* END_SECTION:about-intro */

/* START_SECTION:announcement-bar (INDEX:2) */
.announcement-bar {
    width: 100%;
  }

  .announcement-bar__row {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--announcement-height, 32px);
    padding: 4px var(--page-margin, 20px);
  }

  .announcement-bar__text,
  .announcement-bar__link {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-weight: var(--font-heading-primary--weight, 700);
    font-size: var(--font-size-body-sm);
    line-height: var(--line-height-body);
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0;
    text-decoration: none;
  }

  .announcement-bar__link:hover {
    text-decoration: underline;
  }

  @media (max-width: 639px) {
    .announcement-bar__text,
    .announcement-bar__link {
      font-size: 12px;
      line-height: 1.4;
    }

    .announcement-bar__row {
      min-height: 28px;
      padding: 4px 12px;
    }
  }
/* END_SECTION:announcement-bar */

/* START_SECTION:awards-banner (INDEX:4) */
.awards-banner {
    padding: 60px 0;
  }

  .awards-banner__inner {
    text-align: center;
  }

  .awards-banner__heading {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: #000;
    margin: 0 0 12px;
  }

  .awards-banner__subtitle {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    margin: 0 0 32px;
    max-width: 810px;
    margin-left: auto;
    margin-right: auto;
  }

  .awards-banner__badges {
    margin: 0 auto 32px;
    max-width: 834px;
  }

  .awards-banner__badges-image {
    width: 100%;
    height: auto;
  }

  .awards-banner__body {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #000;
    max-width: 1200px;
    margin: 0 auto;
  }

  .awards-banner__body p {
    margin: 0 0 12px;
  }

  .awards-banner__body p:last-child {
    margin-bottom: 0;
  }

  .awards-banner__body a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 2px;
  }



  .awards-banner__body ul {
    list-style: circle;
    width: auto;
    display: inline-block;
}
.awards-banner__body ul li {
    position: relative;
    display: block;
    list-style: circle;
}

  .awards-banner__body a:focus-visible {
    outline: 2px solid rgb(255, 255, 255);
    outline-offset: 2px;
    border-radius: 2px;
  }

  /* ── Responsive ── */
  @media (max-width: 989px) {
    .awards-banner {
      padding: 40px 0;
    }

    .awards-banner__heading {
      font-size: 28px;
    }
  }

  @media (max-width: 639px) {
    .awards-banner {
      padding: 32px 0;
    }

    .awards-banner__heading {
      font-size: 24px;
    }

    .awards-banner__subtitle {
      font-size: 14px;
    }

    .awards-banner__body {
      font-size: 12px;
    }
  }
/* END_SECTION:awards-banner */

/* START_SECTION:brand-marquee (INDEX:6) */
.brand-marquee {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px var(--page-margin, 20px);
    background-color: rgb(var(--color-background));
  }

  .brand-marquee__text,
  .brand-marquee__link {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-weight: var(--font-heading-primary--weight, 700);
    font-size: var(--font-size-body-lg);
    line-height: 1.3;
    letter-spacing: 0.6px;
    color: rgb(var(--color-secondary));
    text-align: center;
    margin: 0;
    text-decoration: none;
  }

  .brand-marquee__link:hover {
    text-decoration: underline;
  }

  @media (max-width: 639px) {
    .brand-marquee {
      padding: 14px 12px;
    }

    .brand-marquee__text,
    .brand-marquee__link {
      font-size: var(--font-size-body-sm);
    }
  }
/* END_SECTION:brand-marquee */

/* START_SECTION:cart (INDEX:7) */
.cart {
    padding: 40px 0 60px;
  }

  .cart__inner {
  }

  /* ── Heading ── */
  .cart__heading {
    font-family: var(--font-heading-display, 'Libre Bodoni', Georgia, serif);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    color: rgb(var(--color-primary));
    margin: 0 0 32px;
  }

  /* ── Empty State ── */
  .cart__empty {
    text-align: center;
    padding: 80px 20px;
    max-width: 400px;
    margin: 0 auto;
  }

  .cart__empty-icon {
    color: rgb(var(--color-primary));
    margin-bottom: 20px;
  }

  .cart__empty-message {
    font-family: var(--font-heading-display, 'Libre Bodoni', Georgia, serif);
    font-size: 22px;
    font-weight: 400;
    color: rgb(var(--color-primary));
    margin: 0 0 10px;
  }

  .cart__empty-subtext {
    font-family: var(--font-body);
    font-size: 15px;
    color: #777;
    margin: 0 0 28px;
    line-height: 1.5;
  }

  .cart__continue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 198px;
    height: 44px;
    padding: 0 32px;
    background-color: rgb(var(--color-cta, 205, 25, 46));
    color: rgb(255, 255, 255);
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-cta, 50px);
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .cart__continue-btn:hover {
    opacity: 0.9;
  }

  .cart__continue-btn:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  /* ── Table Header ── */
  .cart__header {
    display: none;
  }

  @media (min-width: 750px) {
    .cart__header {
      display: grid;
      grid-template-columns: 100px 1fr 1fr 140px 1fr;
      gap: 16px;
      padding: 0 0 12px;
      border-bottom: 2px solid rgb(var(--color-primary));
      font-family: var(--font-heading-primary);
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: rgb(var(--color-primary));
    }

    .cart__header-product {
      grid-column: 1 / 3;
    }

    .cart__header-price,
    .cart__header-quantity,
    .cart__header-total {
      text-align: center;
    }
  }

  /* ── Items ── */
  .cart__items {
    border-top: 1px solid rgb(var(--color-border, 222, 226, 230));
  }

  @media (min-width: 750px) {
    .cart__items {
      border-top: none;
    }
  }

  /* ── Single Item ── */
  .cart__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto;
    gap: 12px 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgb(var(--color-border, 222, 226, 230));
  }

  @media (min-width: 750px) {
    .cart__item {
      grid-template-columns: 2fr 1fr 140px 1fr;
      align-items: center;
      gap: 16px;
    }
  }

  /* Image */
  .cart__item-image {
    grid-row: 1 / 3;
    width: 100px;
  }

  @media (min-width: 750px) {
    .cart__item-image {
      grid-row: auto;
      width: auto;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .cart__item-image .image {
      width: 100px;
      flex-shrink: 0;
    }
  }

  /* Info */
  .cart__item-info {
    min-width: 0;
  }

  @media (min-width: 750px) {
    .cart__item-image {
      display: contents;
    }

    .cart__item-image .image {
      width: 100px;
    }

    .cart__item {
      grid-template-columns: 100px 1fr 1fr 140px 1fr;
    }
  }

  .cart__item-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: rgb(var(--color-primary));
    text-decoration: none;
    display: block;
    margin: 0 0 4px;
  }

  .cart__item-title:hover {
    text-decoration: underline;
  }

  .cart__item-title:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
    border-radius: 2px;
  }

  .cart__item-variant,
  .cart__item-plan,
  .cart__item-property {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgb(var(--color-text-muted, 119, 119, 119));
    margin: 0 0 2px;
  }

  .cart__item-property-label {
    font-weight: 700;
  }

  .cart__item-discounts {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
  }

  .cart__item-discount {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgb(var(--color-sale, 205, 25, 46));
  }

  .cart__item-remove {
    display: inline-block;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    color: rgb(var(--color-text-muted, 119, 119, 119));
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .cart__item-remove:hover {
    color: rgb(var(--color-cta, 205, 25, 46));
  }

  .cart__item-remove:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
    border-radius: 2px;
  }

  /* Price */
  .cart__item-price,
  .cart__item-total {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: rgb(var(--color-foreground));
  }

  @media (min-width: 750px) {
    .cart__item-price,
    .cart__item-total {
      text-align: center;
    }
  }

  .cart__item-price-original {
    color: rgb(var(--color-text-muted, 119, 119, 119));
    font-weight: 400;
    display: block;
    font-size: 13px;
  }

  .cart__item-price-sale {
    color: rgb(var(--color-sale, 205, 25, 46));
  }

  /* ── Quantity Selector ── */
  .cart__item-quantity {
    display: flex;
    justify-content: flex-start;
  }

  @media (min-width: 750px) {
    .cart__item-quantity {
      justify-content: center;
    }
  }

  .cart__quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgb(var(--color-border, 222, 226, 230));
    border-radius: var(--radius-input, 5px);
    overflow: hidden;
  }

  .cart__quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: rgb(var(--color-primary));
    transition: background-color 0.15s ease;
  }

  .cart__quantity-btn:hover {
    background-color: rgb(var(--color-background-alt, 243, 242, 241));
  }

  .cart__quantity-btn:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: -2px;
  }

  .cart__quantity-input {
    width: 44px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid rgb(var(--color-border, 222, 226, 230));
    border-right: 1px solid rgb(var(--color-border, 222, 226, 230));
    font-family: var(--font-body);
    font-size: 14px;
    color: rgb(var(--color-foreground));
    background: transparent;
    -moz-appearance: textfield;
  }

  .cart__quantity-input::-webkit-outer-spin-button,
  .cart__quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* ── Footer ── */
  .cart__footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: flex-start;
    padding-top: 16px;
    margin-top: 24px;
  }

  @media (min-width: 750px) {
    .cart__footer {
      grid-template-columns: 1.3fr 1fr;
      gap: 40px;
    }
  }

  .cart__footer-left {
    min-width: 0;
  }

  @media (max-width: 749px) {
    .cart__footer-left {
      order: 2;
    }
    .cart__totals {
      order: 1;
    }
  }

  /* Cart discounts */
  .cart__discounts {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
  }

  .cart__discount {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgb(var(--color-sale, 205, 25, 46));
    margin-bottom: 4px;
  }

  /* Order Notes & Totals Box (Borderless) */
  .cart__notes,
  .cart__totals-box {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    box-sizing: border-box;
  }

  /* Order notes */
  .cart__notes {
    width: 100%;
    max-width: 480px;
    margin-bottom: 0;
  }

  .cart__notes-label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #495057;
    margin-bottom: 12px;
  }

  .cart__notes-input {
    width: 100%;
    min-height: 80px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: rgb(var(--color-foreground));
    background-color: #ffffff;
    border: 1px solid rgb(var(--color-border));
    border-radius: var(--radius-form-input, 3px);
    resize: vertical;
    box-sizing: border-box;
  }

  .cart__notes-input:focus {
    outline: none;
    border-color: rgb(var(--color-primary));
    box-shadow: 0 0 0 1px rgb(var(--color-primary));
  }

  /* Totals */
  .cart__totals {
    min-width: 0;
  }

  .cart__totals-box {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    text-align: right;
  }

  .cart__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 12px;
  }

  .cart__subtotal-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .cart__subtotal-value {
    font-family: var(--font-heading-primary, sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: rgb(var(--color-primary));
  }

  .cart__taxes-note {
    font-family: var(--font-body);
    font-size: 12px;
    color: #aaa;
    margin: 0 0 20px;
    text-align: right;
  }

  /* Actions */
  .cart__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }

  .cart__update-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 44px;
    padding: 0 24px;
    background: transparent;
    color: rgb(var(--color-primary));
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    border: 2px solid rgb(var(--color-primary));
    border-radius: var(--radius-cta, 50px);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .cart__update-btn:hover {
    background-color: rgb(var(--color-primary));
    color: rgb(255, 255, 255);
  }

  .cart__checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    padding: 0 24px;
    background-color: rgb(var(--color-accent, 205, 25, 46));
    color: rgb(255, 255, 255);
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .cart__checkout-btn:hover {
    opacity: 0.9;
  }

  .cart__checkout-btn:disabled,
  .cart__checkout-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }

  /* ── PO Selector ── */
  .cart__po-selector {
    margin-bottom: 16px;
    text-align: left;
  }

  .cart__po-label {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #495057;
    margin-bottom: 6px;
  }

  .cart__po-input {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgb(var(--color-foreground));
    background-color: #ffffff;
    border: 1px solid rgb(var(--color-border));
    border-radius: var(--radius-form-input, 3px);
    box-sizing: border-box;
  }

  .cart__po-input:focus {
    outline: none;
    border-color: rgb(var(--color-primary));
    box-shadow: 0 0 0 1px rgb(var(--color-primary));
  }

  .cart__po-input.is-invalid {
    border-color: rgb(var(--color-error, 255, 0, 4));
    box-shadow: 0 0 0 1px rgb(var(--color-error, 255, 0, 4));
  }

  .cart__po-error-message {
    display: none;
    font-family: var(--font-body);
    font-size: 12px;
    color: rgb(var(--color-error, 255, 0, 4));
    margin: 4px 0 0;
    text-align: left;
  }

  /* ── Community Selector ── */
  .cart__community-selector {
    margin-bottom: 20px;
    text-align: left;
  }

  .cart__community-label {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #495057;
    margin-bottom: 6px;
  }

  .cart__community-select {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgb(var(--color-foreground));
    background-color: #ffffff;
    border: 1px solid rgb(var(--color-border));
    border-radius: var(--radius-form-input, 3px);
    cursor: pointer;
    box-sizing: border-box;
  }

  .cart__community-select:focus {
    outline: none;
    border-color: rgb(var(--color-primary));
    box-shadow: 0 0 0 1px rgb(var(--color-primary));
  }

  .cart__checkout-btn:focus-visible,
  .cart__update-btn:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  .cart__continue-link {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    color: #777;
    text-decoration: none;
    text-align: center;
    margin-top: 12px;
  }

  .cart__continue-link:hover {
    color: rgb(var(--color-primary));
    text-decoration: underline;
  }

  .cart__continue-link:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
    border-radius: 2px;
  }

  /* ── Visually Hidden ── */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ── Mobile ── */
  @media (max-width: 749px) {
    .cart {
      padding: 24px 0 40px;
    }

    .cart__heading {
      font-size: 22px;
      margin-bottom: 20px;
    }

    .cart__item-price {
      display: none;
    }

    .cart__item {
      grid-template-columns: 90px 1fr;
      gap: 8px 12px;
    }

    .cart__item-image {
      width: 90px;
    }

    .cart__item-quantity,
    .cart__item-total {
      grid-column: 2;
    }

    .cart__item-total {
      font-size: 15px;
    }

    .cart__footer {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .cart__totals-box {
      min-width: unset;
    }

    .cart__subtotal {
      justify-content: space-between;
    }
  }
/* END_SECTION:cart */

/* START_SECTION:category-grid (INDEX:8) */
.category-grid {
    padding: var(--spacing-section-padding, 30px) 0 var(--spacing-section-padding-bottom, 80px);
  }

  .category-grid__inner {
  }

  .category-grid__heading {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-weight: var(--font-heading-primary--weight, 700);
    font-size: var(--font-size-heading-xl);
    line-height: 1.3;
    color: rgb(var(--color-secondary));
    text-align: center;
    margin: 0 0 32px;
  }

  .category-grid__grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns, 4), 1fr);
    gap: var(--grid-gap, 40px);
  }

  /* ── Category Card (scoped via parent) ── */
  .category-card {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgb(var(--color-border));
    text-decoration: none;
    transition: box-shadow 0.2s ease;
  }

  .category-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .category-card:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  .category-card__image-wrapper {
    position: relative;
    aspect-ratio: 315 / 313;
    overflow: hidden;
  }

  .category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
  }

  .category-card:hover .category-card__image {
    transform: scale(1.03);
  }

  .category-card__placeholder {
    width: 100%;
    height: 100%;
    background-color: rgb(var(--color-background-alt));
  }

  .category-card__label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    background-color: rgba(255, 255, 255, 0.88);
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-xl);
    line-height: 1.2;
    color: rgb(var(--color-primary));
    text-transform: uppercase;
    text-align: center;
    padding: 0 12px;
  }

  /* ── Responsive ── */
  @media (max-width: 989px) {
    .category-grid__grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .category-grid__heading {
      font-size: var(--font-size-heading-lg);
      margin-bottom: 24px;
    }
  }

  @media (max-width: 639px) {
    .category-grid {
      padding: 20px 0 30px;
    }

    .category-grid__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .category-card__label {
      bottom: 10px;
      left: 10px;
      right: 10px;
      height: 44px;
      font-size: var(--font-size-body-sm);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .category-card__image {
      transition: none;
    }
  }
/* END_SECTION:category-grid */

/* START_SECTION:collection-banner (INDEX:9) */
.collection-banner {
    width: 100%;
    padding: 32px 0;
  }

  .collection-banner__inner {
    text-align: center;
  }

  .collection-banner__heading {
    margin: 0;
    color: rgb(var(--color-primary));
  }

  .collection-banner__heading--script {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
  }

  .collection-banner__heading--standard {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-weight: var(--font-heading-primary--weight, 700);
    font-size: var(--font-size-heading-xl);
    line-height: var(--line-height-heading);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-heading);
  }

  .collection-banner__description {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-lg);
    line-height: var(--line-height-body);
    color: rgb(var(--color-foreground));
    max-width: 700px;
    margin: 12px auto 0;
  }

  @media (max-width: 639px) {
    .collection-banner {
      padding: 20px 0;
    }

    .collection-banner__heading--script {
      font-size: 32px;
    }

    .collection-banner__heading--standard {
      font-size: var(--font-size-heading-lg);
    }

    .collection-banner__description {
      font-size: var(--font-size-body-md);
    }
  }
/* END_SECTION:collection-banner */

/* START_SECTION:collection (INDEX:10) */
/* ── Visually hidden ── */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ── Layout ── */
  .collection-grid {
    background-color: #f3f2f1;
    padding: 0 0 48px;
  }

  .collection-grid__inner {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding-top: 24px;
  }

  /* ── Desktop Sidebar ── */
  .collection-grid__sidebar {
    width: 260px;
    flex-shrink: 0;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.08);
  }

  /* ── Main ── */
  .collection-grid__main {
    flex: 1;
    min-width: 0;
  }

  .collection-grid__main--full {
    width: 100%;
  }

  /* ── Toolbar ── */
  .collection-grid__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 0 16px;
    border-bottom: 1px solid rgb(var(--color-border, 230, 230, 230));
    margin-bottom: 20px;
  }

  .collection-grid__toolbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    min-width: 0;
  }

  /* Mobile filter button (hidden on desktop) */
  .collection-grid__filter-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(var(--color-border-dark, 73, 80, 87));
    border-radius: var(--radius-cta, 50px);
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    color: rgb(var(--color-foreground));
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease;
  }

  .collection-grid__filter-btn:hover {
    background-color: rgb(var(--color-background-alt, 243, 242, 241));
  }

  .collection-grid__filter-btn:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  .collection-grid__filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: rgb(var(--color-primary));
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 1;
  }

  /* Results count */
  .collection-grid__results-count {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    color: rgb(var(--color-text-muted, 171, 174, 177));
    margin: 0;
  }

  /* Sort */
  .collection-grid__sort {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .collection-grid__sort-label {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    color: rgb(var(--color-foreground));
    white-space: nowrap;
  }

  .collection-grid__sort-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  .collection-grid__sort-select {
    appearance: none;
    -webkit-appearance: none;
    background: #fafafa;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 13px;
    color: #515962;
    padding: 7px 32px 7px 12px;
    cursor: pointer;
  }

  .collection-grid__sort-select:focus-visible {
    outline: 2px solid #4268c1;
    outline-offset: 2px;
  }

  .collection-grid__sort-chevron {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgb(var(--color-foreground));
  }

  /* ── Active Filter Pills ── */
  .collection-grid__active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .collection-grid__active-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background-color: rgb(var(--color-primary));
    color: rgb(255, 255, 255);
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-xs);
    font-weight: 500;
    border-radius: var(--radius-badge, 16px);
    text-decoration: none;
    transition: opacity 0.15s ease;
  }

  .collection-grid__active-pill:hover {
    opacity: 0.8;
  }

  .collection-grid__clear-all {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-xs);
    color: rgb(var(--color-foreground));
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 4px;
  }

  .collection-grid__clear-all:hover {
    text-decoration: none;
  }

  /* ── Product Grid ── */
  .collection-grid__products {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns, 3), 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .collection-grid__product-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin: 0;
  }

  .collection-grid__product-item:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.12);
  }

  /* ── Infinite Scroll Sentinel & Spinner ── */
  .collection-grid__sentinel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
    min-height: 60px;
  }

  /* Spacing when both infinite scroll and pagination are present */
  .collection-grid__sentinel + .pagination {
    padding-top: 0;
  }

  .collection-grid__spinner {
    display: none;
    width: 32px;
    height: 32px;
    border: 3px solid rgb(var(--color-border, 230, 230, 230));
    border-top-color: rgb(var(--color-primary));
    border-radius: 50%;
  }

  .collection-grid__spinner--active {
    display: block;
    animation: infinite-spin 0.7s linear infinite;
  }

  @keyframes infinite-spin {
    to { transform: rotate(360deg); }
  }

  /* ── Empty ── */
  .collection-grid__empty {
    text-align: center;
    padding: 80px 20px;
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-lg);
    color: rgb(var(--color-text-muted, 171, 174, 177));
  }

  /* ── Mobile Filter Drawer ── */
  .filter-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
  }

  .filter-drawer--open {
    display: block;
  }

  .filter-drawer__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    animation: filter-overlay-in 0.25s ease forwards;
  }

  @keyframes filter-overlay-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .filter-drawer__panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(320px, 90vw);
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    animation: filter-slide-in 0.3s ease forwards;
    overflow: hidden;
  }

  @keyframes filter-slide-in {
    from { transform: translateX(-100%); }
    to   { transform: translateX(0); }
  }

  .filter-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgb(var(--color-border, 230, 230, 230));
    flex-shrink: 0;
  }

  .filter-drawer__title {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-weight: var(--font-heading-primary--weight, 700);
    font-size: var(--font-size-body-lg);
    color: rgb(var(--color-foreground));
  }

  .filter-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgb(var(--color-foreground));
    border-radius: 50%;
    transition: background-color 0.15s ease;
  }

  .filter-drawer__close:hover {
    background-color: rgb(var(--color-background-alt, 243, 242, 241));
  }

  .filter-drawer__close:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  .filter-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 20px;
    scrollbar-width: thin;
  }

  /* Scroll lock */
  body.filter-drawer-lock {
    overflow: hidden;
  }

  /* ── Responsive ── tablet ── */
  @media (max-width: 989px) {
    .collection-grid__sidebar {
      display: none;
    }

    .collection-grid__main {
      width: 100%;
    }

    .collection-grid__filter-btn {
      display: inline-flex;
    }

    .collection-grid__products {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }

  /* ── Responsive ── mobile ── */
  @media (max-width: 639px) {
    .collection-grid {
      padding: 0 0 32px;
    }

    .collection-grid__inner {
      padding-top: 16px;
    }

    .collection-grid__toolbar {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }

    .collection-grid__toolbar-left {
      justify-content: space-between;
    }

    .collection-grid__sort {
      width: 100%;
      justify-content: space-between;
    }

    .collection-grid__sort-wrap {
      flex: 1;
    }

    .collection-grid__sort-select {
      width: 100%;
    }

    .collection-grid__products {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .filter-drawer__overlay,
    .filter-drawer__panel {
      animation: none;
    }
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:11) */
/* ── Page Header ── */
  .collections-page__header {
    background-color: rgb(var(--color-primary));
    padding: 20px 0;
  }

  .collections-page__header-inner {
    text-align: center;
  }

  .collections-page__heading {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-weight: var(--font-heading-primary--weight, 700);
    font-size: var(--font-size-heading-xl);
    line-height: 1.2;
    color: rgb(255, 255, 255);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .collections-page__subheading {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-md);
    line-height: var(--line-height-body);
    color: rgba(255, 255, 255, 0.8);
    margin: 12px 0 0;
  }

  /* ── Body ── */
  .collections-page__body {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  /* ── Grid ── */
  .collections-page__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 4), 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .collections-page__item {
    margin: 0;
  }

  /* ── Empty state ── */
  .collections-page__empty {
    text-align: center;
    padding: 64px 0;
  }

  .collections-page__empty-text {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-lg);
    color: rgb(var(--color-text-muted));
    margin: 0;
  }

  /* ── Responsive ── tablet ── */
  @media (max-width: 989px) {
    .collections-page__heading {
      font-size: var(--font-size-heading-lg);
    }

    .collections-page__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }

  /* ── Responsive ── mobile ── */
  @media (max-width: 639px) {
    .collections-page__header {
      padding: 32px 0;
    }

    .collections-page__heading {
      font-size: var(--font-size-heading-md);
    }

    .collections-page__body {
      padding-top: 24px;
      padding-bottom: 40px;
    }

    .collections-page__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  }
/* END_SECTION:collections */

/* START_SECTION:contact-form (INDEX:12) */
.contact-form {
    padding: 40px 0;
  }

  .contact-form__inner {
    max-width: 706px !important;
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }

  /* ── Heading ── */
  .contact-form__heading {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-size: clamp(40px,5vw,67px);
    line-height: clamp(80px,5vw,161px);
    color: #CD1E2C;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    margin: 0 0 24px;
  }

  /* ── Body ── */
  .contact-form__body {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgb(var(--color-foreground));
    margin-bottom: 32px;
  }

  .contact-form__body p {
    margin: 0 0 12px;
  }

  .contact-form__body p:last-child {
    margin-bottom: 0;
  }

  .contact-form__body strong {
    font-weight: 400;
    color: #000;
  }

  .contact-form__body ul,
  .contact-form__body ol {
    padding-left: 24px;
    margin: 8px 0 12px;
  }

  .contact-form__body li {
    margin-bottom: 4px;
  }

  /* ── Card ── */
  .contact-form__card {
    background-color: #F3F2F1;
    border: 0px solid rgb(var(--color-border, 200, 200, 200));
    border-radius: 0px;
    padding: 32px 24px;
  }

  .contact-form__card-heading {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: rgb(var(--color-foreground));
    text-align: center;
    margin: 0px;
  }

  /* ── Success / Error ── */
  .contact-form__success {
    background-color: rgb(209, 231, 221);
    color: rgb(15, 81, 50);
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .contact-form__errors {
    background-color: rgb(248, 215, 218);
    color: rgb(132, 32, 41);
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .contact-form__errors ul {
    margin: 8px 0 0;
    padding-left: 20px;
  }

  .contact-form__errors a {
    color: rgb(132, 32, 41);
    text-decoration: underline;
  }

  /* ── Fields ── */
  .contact-form__row {
    margin-bottom: 16px;
  }

  .contact-form__row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-form__label {
    display: block;
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgb(var(--color-foreground));
    margin-bottom: 4px;
  }

  .contact-form__required {
    color: rgb(var(--color-accent, 205, 25, 46));
    margin-left: 2px;
  }

  .contact-form__input,
  .contact-form__textarea {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 15px;
    color: rgb(var(--color-foreground));
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(206, 212, 218);
    border-radius: 4px;
    transition: border-color 0.15s ease;
  }

  .contact-form__input:focus,
  .contact-form__textarea:focus {
    border-color: rgb(var(--color-primary));
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: -2px;
  }

  .contact-form__textarea {
    resize: vertical;
    min-height: 118px;
  }

  /* ── Submit ── */
  .contact-form__submit-row {
    text-align: center;
    margin-top: 24px;
  }

  .contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 198px;
    height: 40px;
    padding: 0 32px;
    background-color: rgb(var(--color-cta, 205, 25, 46));
    color: rgb(255, 255, 255);
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .contact-form__submit:hover {
    opacity: 0.9;
  }

  .contact-form__submit:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  /* ── Responsive ── */
  @media (max-width: 639px) {
    .contact-form {
      padding: 24px 0;
    }

    .contact-form__heading {
      font-size: 36px;
    }

    .contact-form__row--half {
      grid-template-columns: 1fr;
    }

    .contact-form__card {
      padding: 24px 16px;
    }
  }
/* END_SECTION:contact-form */

/* START_SECTION:custom-section (INDEX:13) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:faq (INDEX:14) */
.faq {
    padding: 40px 0 60px;
  }

  .faq__inner {
  }

  /* ── Heading ── */
  .faq__heading {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(var(--color-primary));
    margin: 0 0 32px;
  }

  /* ── List ── */
  .faq__list {
    border-top: 1px solid rgb(var(--color-border, 222, 226, 230));
  }

  /* ── Item ── */
  .faq__item {
    border-bottom: 1px solid rgb(var(--color-border, 222, 226, 230));
  }

  /* ── Question (summary) ── */
  .faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
  }

  .faq__question::-webkit-details-marker {
    display: none;
  }

  .faq__question::marker {
    content: '';
  }

  .faq__question-text {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: rgb(var(--color-primary));
  }

  .faq__question:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
    border-radius: 2px;
  }

  /* ── +/- Icon ── */
  .faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
  }

  .faq__icon::before,
  .faq__icon::after {
    content: '';
    position: absolute;
    background-color: rgb(var(--color-primary));
    transition: transform 0.2s ease;
  }

  /* Horizontal bar (always visible) */
  .faq__icon::before {
    top: 50%;
    left: 4px;
    right: 4px;
    height: 2px;
    transform: translateY(-50%);
  }

  /* Vertical bar (hidden when open) */
  .faq__icon::after {
    left: 50%;
    top: 4px;
    bottom: 4px;
    width: 2px;
    transform: translateX(-50%);
  }

  .faq__item[open] .faq__icon::after {
    transform: translateX(-50%) scaleY(0);
  }

  /* ── Answer ── */
  .faq__answer {
    padding: 0 0 20px;
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgb(var(--color-foreground));
  }

  .faq__answer p {
    margin: 0 0 12px;
  }

  .faq__answer p:last-child {
    margin-bottom: 0;
  }

  .faq__answer a {
    color: rgb(var(--color-primary));
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .faq__answer a:hover {
    text-decoration-thickness: 2px;
  }

  .faq__answer a:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
    border-radius: 2px;
  }

  .faq__answer ul,
  .faq__answer ol {
    padding-left: 24px;
    margin: 0 0 12px;
  }

  .faq__answer li {
    margin-bottom: 4px;
  }

  .faq__answer strong {
    font-weight: 700;
  }

  /* ── App Block ── */
  .faq__app-block {
    padding: 16px 0;
    border-bottom: 1px solid rgb(var(--color-border, 222, 226, 230));
  }

  /* ── Responsive ── */
  @media (max-width: 639px) {
    .faq {
      padding: 24px 0 40px;
    }

    .faq__heading {
      font-size: 22px;
      margin-bottom: 24px;
    }

    .faq__question {
      padding: 16px 0;
    }

    .faq__question-text {
      font-size: 16px;
    }

    .faq__answer {
      font-size: 14px;
    }
  }
/* END_SECTION:faq */

/* START_SECTION:featured-categories (INDEX:15) */
.featured-categories {
    padding: var(--spacing-section-padding, 40px) 0 var(--spacing-section-padding-bottom, 60px);
  }

  .featured-categories__heading {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-weight: var(--font-heading-primary--weight, 700);
    font-size: var(--font-size-heading-lg);
    line-height: 1.3;
    color: rgb(var(--color-secondary));
    text-align: center;
    margin: 0 0 40px;
  }

  .featured-categories__track-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .featured-categories__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0;
  }

  .featured-categories__track::-webkit-scrollbar {
    display: none;
  }

  .featured-categories__card {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - 80px) / 5);
    border: 1px solid rgb(var(--color-border, 222, 226, 230));
    border-radius: var(--radius-card, 4px);
    background-color: rgb(255, 255, 255);
    text-decoration: none;
    overflow: hidden;
    scroll-snap-align: start;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .featured-categories__card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(var(--color-border, 222, 226, 230));
    border-radius: var(--radius-card, 4px);
    background-color: rgb(255, 255, 255);
    text-decoration: none;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    justify-content: space-around;
  }

  .featured-categories__card:hover {
    border-color: rgb(var(--color-border));
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  .featured-categories__card:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  /* ── Image ── */
  .featured-categories__image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: rgb(var(--color-background-alt, 243, 242, 241));
  }

  .featured-categories__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
  }

  .featured-categories__card:hover .featured-categories__image {
    transform: scale(1.03);
  }

  /* ── Body ── */
  .featured-categories__body {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 20px 16px;
  }

  .featured-categories__icon {
    display: block;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: rgb(var(--color-accent, 203, 96, 21));
  }

  .featured-categories__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .featured-categories__icon--fallback svg {
    width: 100%;
    height: 100%;
  }

  .featured-categories__text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
  }

  .featured-categories__title {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.3;
    color: rgb(var(--color-primary));
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 4px;
  }

  .featured-categories__desc {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: rgb(var(--color-text-muted, 119, 119, 119));
    margin: 0;
  }

  .featured-categories__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgb(var(--color-border));
    border-radius: 50%;
    font-size: 13px;
    color: rgb(var(--color-accent, 203, 96, 21));
    transition: background-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
  }

  .featured-categories__card:hover .featured-categories__arrow {
    background-color: rgb(var(--color-accent, 203, 96, 21));
    color: rgb(255, 255, 255);
    border-color: rgb(var(--color-accent, 203, 96, 21));
  }

  .featured-categories__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgb(var(--color-border));
    border-radius: 50%;
    background: rgb(255, 255, 255);
    color: rgb(var(--color-accent, 203, 96, 21));
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .featured-categories__nav:hover {
    background-color: rgb(var(--color-accent, 203, 96, 21));
    color: rgb(255, 255, 255);
    border-color: rgb(var(--color-accent, 203, 96, 21));
  }

  .featured-categories__dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }

  .featured-categories__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgb(var(--color-border));
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .featured-categories__dot.is-active {
    background: rgb(var(--color-accent, 203, 96, 21));
  }

  .featured-categories__nav[hidden] {
    display: none;
  }

  @media (max-width: 1199px) {
    .featured-categories__text {
      text-align: center;
    }
    .featured-categories__body {
      flex-direction: column;
      align-items: center;
    }
    .featured-categories__arrow {
      margin-top: 8px;
    }
  }

  @media (max-width: 989px) {
    .featured-categories__card {
      flex: 0 0 calc((100% - 40px) / 3);
    }
      .featured-categories__dots {
      display: flex;
    }
     .featured-categories__nav {
      display: none !important;
    }
  }

 

  @media (max-width: 639px) {
    .featured-categories__card {
      flex: 0 0 calc((100% - 12px) / 2);
    }

    .featured-categories__body {
      padding: 14px 16px 14px;
      flex-direction: row;
      align-items: flex-start;
    }

    .featured-categories__heading {
      font-size: var(--font-size-heading-md);
      margin-bottom: 24px;
    }
  }

  @media (max-width: 479px) {
    .featured-categories__card {
      flex: 0 0 100%;
    }

    .featured-categories__body {
      padding: 12px 14px;
      gap: 10px;
    }

    .featured-categories__icon {
      width: 28px;
      height: 28px;
    }

    .featured-categories__title {
      font-size: 12px;
    }

    .featured-categories__desc {
      font-size: 11px;
      line-height: 1.35;
    }

    .featured-categories__arrow {
      width: 24px;
      height: 24px;
      font-size: 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .featured-categories__card,
    .featured-categories__arrow,
    .featured-categories__image {
      transition: none;
    }
  }
/* END_SECTION:featured-categories */

/* START_SECTION:footer (INDEX:16) */
.footer {
    background-color: rgb(var(--color-primary));
    color: rgb(255, 255, 255);
  }

  .footer__main {
    padding: 36px 0;
    background: #082E52;
  }

  .footer__inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }

  /* ── Logo ── */
  .footer__logo-col {
    flex-shrink: 0;
    padding-top: 14px;
  }

  .footer__logo-link {
    display: inline-flex;
    text-decoration: none;
  }

  .footer__logo-img {
    max-width: 182px;
    height: auto;
  }

  .footer__logo-text {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-weight: var(--font-heading-primary--weight, 700);
    font-size: var(--font-size-heading-lg);
    color: rgb(255, 255, 255);
  }

  /* ── Nav Columns ── */
  .footer__nav-columns {
    display: flex;
    flex: 1;
    gap: 0;
    justify-content: space-between;
  }

  .footer__nav-col {
    flex: 1 1 0;
    min-width: 0;
  }

  .footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer__nav-item {
    margin: 0;
  }

  .footer__col-heading {
    margin: 0;
    padding: 13px 20px;
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-weight: 800;
    font-size: var(--font-size-body-lg);
    line-height: 20px;
    color: rgb(255, 255, 255);
  }

  .footer__nav-link {
    display: block;
    padding: 13px 20px;
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-lg);
    line-height: 20px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: nowrap;
  }

  .footer__nav-link:hover {
    text-decoration: underline;
  }

  /* ── Copyright Bar ── */
  .footer__copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: #082E52;
  }

  .footer__copyright-inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .footer__copyright-text {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    line-height: var(--line-height-body);
    color: rgb(255, 255, 255);
    text-align: center;
    margin: 0;
  }

  /* ── Responsive ── tablet ── */
  @media (max-width: 989px) {
    .footer__inner {
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer__logo-col {
      width: 100%;
      display: flex;
      justify-content: center;
      padding-top: 0;
    }

    .footer__nav-columns {
      width: 100%;
    }
  }

  /* ── Responsive ── mobile ── */
  @media (max-width: 639px) {
    .footer__main {
      padding: 24px 0;
    }

    .footer__nav-columns {
      flex-direction: row !important;
      flex-wrap: wrap;
    }

    .footer__nav-col {
      flex: 0 0 calc(50% - 8px) !important;
      min-width: 0 !important;
      margin-bottom: 20px;
    }

    .footer__nav-col:nth-child(odd) {
      margin-right: 16px;
    }

    .footer__col-heading {
      padding: 0 0 6px 0;
    }

    .footer__nav-link {
      font-size: var(--font-size-body-sm);
      padding: 5px 0;
      white-space: normal;
      line-height: 1.4;
    }

    .footer__copyright-text {
      font-size: 12px;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:17) */
/* ── Header wrapper ── */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgb(var(--color-background));
  }

  /* ── Logo Bar ── */
  .header__logo-bar {
    border-bottom: 1px solid rgb(var(--color-border-dark));
    box-shadow: var(--shadow-header);
  }

  .header__logo-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 98px;
  }

  .header__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }

  .header__logo-img {
    max-width: 200px;
    height: auto;
  }

  .header__logo-text {
    font-family: var(--font-heading-primary);
    font-weight: var(--font-heading-primary--weight, 700);
    font-size: var(--font-size-heading-lg);
    color: rgb(var(--color-primary));
    text-decoration: none;
  }

  /* ── Search ── */
  .header__search {
    display: flex;
    align-items: center;
    max-width: 406px;
    width: 100%;
    margin: 0 20px;
  }

  .header__search-input {
    flex: 1;
    height: 40px;
    padding: 0 var(--spacing-input-padding, 15px);
    background-color: rgb(var(--color-input-bg));
    border: 1px solid rgb(var(--color-border));
    border-radius: var(--radius-input) 0 0 var(--radius-input);
    font-family: var(--font-body);
    font-size: var(--font-size-body-xs);
    color: rgb(var(--color-text-body));
    outline: none;
  }

  .header__search-input::placeholder {
    color: rgb(var(--color-text-placeholder));
  }

  .header__search-input:focus {
    border-color: rgb(var(--color-primary));
  }

  .header__search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgb(var(--color-search-button));
    border: none;
    border-radius: 0 var(--radius-input) var(--radius-input) 0;
    color: rgb(255, 255, 255);
    cursor: pointer;
    flex-shrink: 0;
  }

  .header__search-btn:hover {
    opacity: 0.9;
  }

  .header__search-icon {
    width: 18px;
    height: 18px;
  }

  /* ── Utility Nav ── */
  .header__utility-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .header__utility-list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__utility-link {
    display: block;
    padding: 13px 20px;
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: var(--font-size-body-lg);
    line-height: 20px;
    color: #082E52;
    text-decoration: none;
    white-space: nowrap;
  }

  .header__utility-link:hover {
    text-decoration: underline;
  }

  .header__utility-link--highlight {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-weight: var(--font-heading-primary--weight, 700);
    color: rgb(var(--color-accent));
  }

  /* ── Cart Icon ── */
  .header__cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: rgb(var(--color-primary));
    text-decoration: none;
  }

  .header__cart-icon {
    width: 18px;
    height: 18px;
  }

  .header__cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background-color: rgb(var(--color-accent));
    border-radius: var(--radius-badge);
    font-family: var(--font-body);
    font-size: var(--font-size-badge);
    line-height: 1;
    color: rgb(255, 255, 255);
  }

  /* ── Main Nav Bar ── */
  .header__nav {
        background: #082E52;
  }

  .header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
  }

  .header__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  .header__nav-item {
    position: relative;
  }

  .header__nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: var(--font-size-body-sm);
    line-height: var(--line-height-nav);
    letter-spacing: var(--letter-spacing-nav);
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
  }

  .header__nav-link:hover,
  .header__nav-link:focus-visible {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .header__nav-chevron {
    width: 10px;
    height: 10px;
    transition: transform 0.2s ease;
  }

  .header__nav-link--toggle[aria-expanded="true"] .header__nav-chevron {
    transform: rotate(180deg);
  }

  /* ── Dropdown ── */
  .header__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; 
    min-width: 200px;
    background-color: rgb(var(--color-background));    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 110;
    background: #082E52;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.15);
  }

  .header__nav-item--has-dropdown:hover .header__dropdown,
  .header__nav-link--toggle[aria-expanded="true"] + .header__dropdown {
    display: block;
  }

  .header__dropdown-link {
    display: block;
    padding: 8px 25px;
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    line-height: var(--line-height-body);
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
  }



  .header__dropdown-sub {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__dropdown-sublink {
    display: block;
    padding: 8px 40px;
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    line-height: var(--line-height-body);
    color: rgb(var(--color-text-body));
    text-decoration: none;
    font-weight: 400;
  }

  .header__dropdown-sublink:hover {
    background-color: rgb(var(--color-background-alt));
  }

  /* ── Mobile Toggle ── */
  .header__mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }

  .header__close-icon {
    display: none;
  }

  .header__mobile-toggle[aria-expanded="true"] .header__hamburger-icon {
    display: none;
  }

  .header__mobile-toggle[aria-expanded="true"] .header__close-icon {
    display: block;
  }

  /* ── Mobile Drawer ── */
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    animation: overlay-fade-in 0.25s ease forwards;
  }

  @keyframes overlay-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .mobile-nav__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(320px, 85vw);
    height: 100%;
    background-color: rgb(var(--color-background));
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    animation: panel-slide-in 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  }

  @keyframes panel-slide-in {
    from { transform: translateX(-100%); }
    to   { transform: translateX(0); }
  }

  .mobile-nav.is-closing .mobile-nav__overlay {
    animation: overlay-fade-out 0.25s ease forwards;
  }

  .mobile-nav.is-closing .mobile-nav__panel {
    animation: panel-slide-out 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes overlay-fade-out {
    from { opacity: 1; }
    to   { opacity: 0; }
  }

  @keyframes panel-slide-out {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
  }

  .mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgb(var(--color-border));
    background-color: rgb(var(--color-background));
    flex-shrink: 0;
  }

  .mobile-nav__logo-img {
    max-width: 150px;
    height: auto;
  }

  .mobile-nav__logo-text {
    font-family: var(--font-heading-primary);
    font-weight: var(--font-heading-primary--weight, 700);
    font-size: var(--font-size-heading-sm);
    color: rgb(var(--color-primary));
  }

  .mobile-nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: rgb(var(--color-primary));
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-nav__close:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  .mobile-nav__menu {
    flex: 1;
    padding: 8px 0;
  }

  .mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav__item {
    border-bottom: 1px solid rgb(var(--color-border));
  }

  .mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: var(--font-size-body-md);
    font-weight: 500;
    color: rgb(var(--color-primary));
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-nav);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
  }

  .mobile-nav__link:hover {
    background-color: rgb(var(--color-background-alt));
  }

  .mobile-nav__link:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: -2px;
  }

  .mobile-nav__chevron {
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .mobile-nav__link--toggle[aria-expanded="true"] .mobile-nav__chevron {
    transform: rotate(180deg);
  }

  .mobile-nav__sub {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: rgb(var(--color-background-alt));
    border-top: 1px solid rgb(var(--color-border));
  }

  .mobile-nav__sub[hidden] {
    display: none;
  }

  .mobile-nav__sub-link {
    display: block;
    padding: 12px 20px 12px 32px;
    font-family: var(--font-body);
    font-size: var(--font-size-body-sm);
    color: rgb(var(--color-text-body));
    text-decoration: none;
  }

  .mobile-nav__sub-link:hover {
    background-color: rgb(var(--color-border));
    color: rgb(var(--color-primary));
  }

  .mobile-nav__sub--deep {
    background-color: rgb(var(--color-background));
    border-top: none;
  }

  .mobile-nav__sub-link--deep {
    padding-left: 44px;
    font-size: var(--font-size-body-xs);
    color: rgb(var(--color-secondary));
  }

  .mobile-nav__utility {
    padding: 16px 0;
    border-top: 2px solid rgb(var(--color-border));
  }

  .mobile-nav__utility-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav__utility-link {
    display: block;
    padding: 10px 20px;
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    color: rgb(var(--color-primary));
    text-decoration: none;
  }

  .mobile-nav__utility-link:hover {
    text-decoration: underline;
  }

  .mobile-nav__utility-link--highlight {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-weight: var(--font-heading-primary--weight, 700);
    color: rgb(var(--color-accent));
  }

  .mobile-nav__cart {
    padding: 16px 20px;
    border-top: 1px solid rgb(var(--color-border));
    flex-shrink: 0;
  }

  .mobile-nav__cart-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 20px;
    background-color: rgb(var(--color-primary));
    color: rgb(255, 255, 255);
    font-family: var(--font-heading-primary);
    font-weight: 700;
    font-size: var(--font-size-body-sm);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.6px;
    border-radius: var(--radius-cta, 50px);
    width: 100%;
    justify-content: center;
  }

  .mobile-nav__cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background-color: rgb(var(--color-accent));
    border-radius: 9px;
    font-size: var(--font-size-badge);
    color: rgb(255, 255, 255);
  }

  @media (prefers-reduced-motion: reduce) {
    .mobile-nav__overlay,
    .mobile-nav__panel {
      animation: none;
    }
  }

  /* ── Visually Hidden ── */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* Sticky Header */
  {%- if section.settings.sticky_header -%}
    .header {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header.is-sticky {
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Add space for sticky header */
    .shopify-section-header {
      position: relative;
    }

    .shopify-section-header::after {
      content: '';
      display: block;
      height: 0;
      transition: height 0.3s ease;
    }

    .shopify-section-header.is-sticky::after {
      height: 140px; /* Approximate header height */
    }

    @media (max-width: 749px) {
      .shopify-section-header.is-sticky::after {
        height: 110px; /* Mobile header height */
      }
    }
  {%- endif -%}

  /* ── Responsive ── */
  @media (min-width: 990px) {
    /* Desktop - ensure original layout is preserved */
    .header__logo-bar {
      display: block;
      border-bottom: 1px solid rgb(var(--color-border-dark));
      box-shadow: var(--shadow-header);
    }

    .header__logo-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 10px;
      padding-bottom: 10px;
      min-height: 98px;
      position: relative;
    }

    .header__logo-link {
      position: absolute;
      left: 20px;
      z-index: 2;
    }

    .header__search {
      position: absolute;
      left: 46%;
      transform: translateX(-50%);
      display: flex;
      max-width: 406px;
      width: 100%;
      z-index: 1;
      margin:0px;
    }

    .header__utility-nav {
      position: absolute;
      right: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      z-index: 2;
    }

    .header__nav {      
      min-height: 42px;
    }

    .header__nav-list {
      display: flex;
      align-items: center;
      justify-content: center;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 0;
    }

    .header__mobile-toggle,
    .header__mobile-logo,
    .header__mobile-icons,
    .header__mobile-search,
    .header__mobile-account {
      display: none !important;
    }

    .mobile-search-overlay {
      display: none !important;
    }
  }
  @media (min-width: 990px) and (max-width:1100px) {
      .header__utility-link {
        padding: 13px 10px;
      }
      .header__search{
        left: 43%;
        max-width: 390px;     
      }
  }
  @media (max-width: 989px) {
    /* Tablet adjustments - minimal changes */
    .header__search {
      max-width: 250px;
    }

    .header__utility-link {
      font-size: var(--font-size-body-sm);
      padding: 10px 12px;
    }
    /* Mobile Search Overlay */
    .mobile-search-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 300;
      background-color: rgba(0, 0, 0, 0.5);
    }
    .header__mobile-icons, a.header__mobile-logo {
    display: none;
}
  }

  @media (max-width: 991px) {
    /* Mobile and small tablet - full mobile header implementation */
    /* Keep logo bar visible on mobile but adjust layout */
    .header__logo-bar {
      border-bottom: none;
      box-shadow: none;
    }

    .header__logo-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 16px;
      min-height: auto;
    }

    /* Hide desktop search and utility on mobile */
    .header__search {
      display: none;
    }

    .header__utility-nav {
      display: none;
    }

    /* Create blue navigation bar below logo */
    .header__nav {      
      min-height: 50px;
      box-shadow: none;
      border-bottom: none;
    }

    .header__nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      min-height: 50px;
      width: 100%;
    }

    /* Hide desktop navigation list */
    .header__nav-list {
      display: none;
    }

    /* Hide mobile logo (it's in the white header area now) */
    .header__mobile-logo {
      display: none;
    }

    /* Mobile hamburger on left */
    .header__mobile-toggle {
      display: flex;
      background: none;
      border: none;
      color: #ffffff;
    }

    .header__mobile-toggle .header__hamburger-icon,
    .header__mobile-toggle .header__close-icon {
      color: #ffffff;
      stroke: #ffffff;
    }

    /* Mobile right icons container */
    .header__mobile-icons {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Mobile search icon on right */
    .header__mobile-search {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: none;
      border: none;
      color: #ffffff;
      cursor: pointer;
      padding: 0;
      stroke: #ffffff;
    }

    /* Mobile account icon on right */
    .header__mobile-account {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 44px;
      background: none;
      border: none;
      color: #ffffff;
      cursor: pointer;
      padding: 0;
      text-decoration: none;
      stroke: #ffffff;
      position:relative;
    }

    .header__mobile-account svg {
      stroke: #ffffff;
    }

    .header__mobile-search svg {
      stroke: #ffffff;
    }

    

    .mobile-search-overlay.is-open {
      display: block;
    }

    .mobile-search-overlay__backdrop {
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .mobile-search-overlay__content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      background-color: #ffffff;
      padding: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .mobile-search-overlay__header {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .mobile-search-overlay__form {
      flex: 1;
      display: flex;
      align-items: center;
      background-color: #f5f5f5;
      border-radius: 8px;
      padding: 0 16px;
      min-height: 48px;
    }

    .mobile-search-overlay__input {
      flex: 1;
      border: none;
      background: none;
      outline: none;
      font-family: var(--font-body);
      font-size: 16px;
      color: #333333;
      padding: 0;
      height: 100%;
    }

    .mobile-search-overlay__input::placeholder {
      color: #999999;
    }

    .mobile-search-overlay__submit {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: none;
      border: none;
      color: #666666;
      cursor: pointer;
      padding: 0;
    }

    .mobile-search-overlay__close {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: none;
      border: none;
      color: #666666;
      cursor: pointer;
      padding: 0;
      border-radius: 50%;
    }

    .mobile-search-overlay__close:hover {
      background-color: #f5f5f5;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:18) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero-banner (INDEX:19) */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .hero-banner__slides {
    position: relative;
    height: var(--hero-height, 650px);
  }

  .hero-banner__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
  }

  .hero-banner__slide--active {
    opacity: 1;
    z-index: 2;
  }

  .hero-banner__image-wrapper {
    position: absolute;
    inset: 0;
  }

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

  .hero-banner__image-placeholder {
    position: absolute;
    inset: 0;
    background-color: rgb(var(--color-secondary));
  }

  .hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.05) 70%, transparent 100%);
    z-index: 3;
    pointer-events: none;
  }

  .hero-banner__content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    max-width: 480px;
    padding: var(--spacing-section-padding, 50px) 48px;
    text-align: left;
  }

  .hero-banner__heading {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: clamp(24px, 2.6vw, 42px);
    line-height: 1.1;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    letter-spacing: -0.3px;
    margin: 0 0 16px;
  }

  .hero-banner__subheading {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.6;
    color: rgb(255, 255, 255);
    text-transform: none;
    margin: 0 0 28px;
    max-width: 340px;
    opacity: 0.92;
  }

  .hero-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    height: 50px;
    padding: 0 28px;
    background: #B8963E;
    color: rgb(255, 255, 255);
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .hero-banner__cta::after {
    content: '\2192';
    font-size: 16px;
  }

  .hero-banner__cta:hover {
    background: #9a7c32;
  }

  /* ── Slide Controls ── */
  .hero-banner__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
  }

  .hero-banner__prev,
  .hero-banner__next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 50%;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .hero-banner__prev:hover,
  .hero-banner__next:hover {
    background-color: rgba(0, 0, 0, 0.6);
  }

  .hero-banner__dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .hero-banner__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease;
  }

  .hero-banner__dot--active {
    background-color: rgb(255, 255, 255);
  }

  /* ── Responsive ── */
  @media (max-width: 989px) {
    .hero-banner__slides {
      height: 450px;
    }

    .hero-banner__content {
      padding: 40px 32px;
      max-width: 420px;
    }
  }

  @media (max-width: 639px) {
    .hero-banner__slides {
      height: 380px;
    }

    .hero-banner__content {
      padding: 32px 20px;
      max-width: 100%;
    }

    .hero-banner__subheading {
      max-width: 100%;
    }

    .hero-banner__cta {
      min-width: 180px;
      height: 46px;
      font-size: 13px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-banner__slide {
      transition: none;
    }
  }
/* END_SECTION:hero-banner */

/* START_SECTION:image-with-text (INDEX:20) */
.image-with-text {
    padding: 24px 0;
  }

  .image-with-text__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  /* ── Reversed: image on right ── */
  .image-with-text--reversed .image-with-text__inner {
    direction: rtl;
  }

  .image-with-text--reversed .image-with-text__inner > * {
    direction: ltr;
  }

  /* ── Media ── */
  .image-with-text__media {
    position: relative;
    aspect-ratio: 730 / 432;
    overflow: hidden;
    border-radius: 4px;
    background-color: rgb(var(--color-background-alt, 243, 242, 241));
  }

  .image-with-text__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .image-with-text__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-with-text__placeholder-svg {
    width: 60%;
    height: 60%;
    opacity: 0.4;
  }

  /* ── Content ── */
  .image-with-text__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .image-with-text__heading {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: rgb(var(--color-primary));
    margin: 0 0 16px;
  }

  .image-with-text__body {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
  }

  .image-with-text__body p {
    margin: 0 0 12px;
  }

  .image-with-text__body p:last-child {
    margin-bottom: 0;
  }

  .image-with-text__body strong {
    font-weight: 700;
    color: rgb(var(--color-primary));
  }

  .image-with-text__cta {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgb(var(--color-primary));
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .image-with-text__cta:hover {
    text-decoration-thickness: 2px;
  }

  .image-with-text__cta:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
    border-radius: 2px;
  }

  /* ── Responsive ── */
  @media (max-width: 989px) {
    .image-with-text__inner {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    /* Reset direction on mobile — always image on top */
    .image-with-text--reversed .image-with-text__inner {
      direction: ltr;
    }

    .image-with-text__media {
      max-width: 600px;
      margin: 0 auto;
      width: 100%;
    }
  }

  @media (max-width: 639px) {
    .image-with-text {
      padding: 16px 0;
    }

    .image-with-text__heading {
      font-size: 20px;
    }

    .image-with-text__body {
      font-size: 14px;
    }
  }
/* END_SECTION:image-with-text */

/* START_SECTION:main-account (INDEX:21) */
.customer-account {
    padding: 48px 20px 80px;
  }

  .customer-account__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .customer-account__title {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: rgb(var(--color-primary));
    margin: 0;
  }

  .customer-account__logout {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 14px;
    color: rgb(var(--color-accent));
    text-decoration: none;
    font-weight: 600;
  }

  .customer-account__logout:hover {
    text-decoration: underline;
  }

  .customer-account__layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: flex-start;
  }

  .customer-account__section-title {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #495057;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d1d7da;
  }

  .customer-account__empty {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 15px;
    color: #777;
  }

  .customer-account__orders-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 14px;
  }

  .customer-account__orders-table th {
    text-align: left;
    padding: 10px 12px;
    background: #f6f7f8;
    color: #495057;
    font-weight: 600;
    border-bottom: 1px solid #d1d7da;
  }

  .customer-account__orders-table td {
    padding: 12px 12px;
    border-bottom: 1px solid #eee;
    color: #333;
    vertical-align: middle;
  }

  .customer-account__order-link {
    color: rgb(var(--color-primary));
    font-weight: 600;
    text-decoration: none;
  }

  .customer-account__order-link:hover {
    text-decoration: underline;
  }

  .customer-account__name {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px;
  }

  .customer-account__email {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 14px;
    color: #777;
    margin: 0 0 16px;
  }

  .customer-account__address {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 14px;
    color: #495057;
    line-height: 1.7;
    font-style: normal;
    margin-bottom: 16px;
  }

  .customer-account__manage-link {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 14px;
    color: rgb(var(--color-primary));
    font-weight: 600;
    text-decoration: none;
  }

  .customer-account__manage-link:hover {
    text-decoration: underline;
  }

  @media (max-width: 749px) {
    .customer-account__layout {
      grid-template-columns: 1fr;
    }

    .customer-account__orders-table thead {
      display: none;
    }

    .customer-account__orders-table tr {
      display: block;
      border-bottom: 1px solid #eee;
      padding: 12px 0;
    }

    .customer-account__orders-table td {
      display: flex;
      justify-content: space-between;
      border: none;
      padding: 4px 0;
      font-size: 13px;
    }

    .customer-account__orders-table td::before {
      content: attr(data-label);
      font-weight: 600;
      color: #495057;
    }
  }
/* END_SECTION:main-account */

/* START_SECTION:main-addresses (INDEX:22) */
.customer-addresses {
    padding: 48px 20px 80px;
    max-width: 720px;
  }

  .customer-addresses__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .customer-addresses__back {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 14px;
    color: rgb(var(--color-primary));
    text-decoration: none;
  }

  .customer-addresses__back:hover {
    text-decoration: underline;
  }

  .customer-addresses__section {
    margin-bottom: 48px;
  }

  .customer-addresses__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .customer-addresses__item {
    border: 1px solid #d1d7da;
    border-radius: 4px;
    padding: 20px;
  }

  .customer-addresses__default-badge {
    display: inline-block;
    background: rgb(var(--color-primary));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    margin-bottom: 10px;
  }

  .customer-addresses__actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
  }

  .customer-addresses__edit-btn {
    background: none;
    border: 1px solid rgb(var(--color-primary));
    color: rgb(var(--color-primary));
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 3px;
    cursor: pointer;
  }

  .customer-addresses__edit-btn:hover {
    background: rgb(var(--color-primary));
    color: #fff;
  }

  .customer-addresses__delete-btn {
    background: none;
    border: 1px solid #d1d7da;
    color: #777;
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 3px;
    cursor: pointer;
  }

  .customer-addresses__delete-btn:hover {
    border-color: #cd192e;
    color: #cd192e;
  }

  .customer-addresses__edit-form {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }

  .customer-addresses__form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
  }

  .customer-page__btn--inline {
    width: auto;
    display: inline-block;
    margin-bottom: 0;
  }

  .customer-addresses__cancel {
    background: none;
    border: none;
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 14px;
    color: #777;
    cursor: pointer;
    text-decoration: underline;
  }
/* END_SECTION:main-addresses */

/* START_SECTION:main-login (INDEX:23) */
.customer-page {
    padding: 60px 20px 80px;
    display: flex;
    justify-content: center;
  }

  .customer-page__box {
    width: 100%;
    max-width: 480px;
  }

  .customer-page__title {
    font-family: var(--font-heading, 'Libre Bodoni', Georgia, serif);
    font-size: 28px;
    font-weight: 400;
    color: rgb(var(--color-primary));
    margin: 0 0 28px;
  }

  .customer-page__field {
    margin-bottom: 20px;
  }

  .customer-page__label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 6px;
  }

  .customer-page__input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cdcdcd;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #333;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
  }

  .customer-page__input:focus {
    border-color: rgb(var(--color-primary));
    outline: none;
  }

  .customer-page__forgot {
    text-align: right;
    margin-bottom: 24px;
    font-size: 13px;
  }

  .customer-page__forgot a {
    color: rgb(var(--color-primary));
    text-decoration: none;
  }

  .customer-page__forgot a:hover {
    text-decoration: underline;
  }

  .customer-page__btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: rgb(var(--color-accent));
    color: #fff;
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.15s ease;
    margin-bottom: 20px;
  }

  .customer-page__btn:hover {
    opacity: 0.88;
  }

  .customer-page__alt-link {
    font-family: var(--font-body);
    font-size: 14px;
    color: #495057;
    text-align: center;
    margin: 0;
  }

  .customer-page__alt-link a {
    color: rgb(var(--color-primary));
    font-weight: 600;
    text-decoration: none;
  }

  .customer-page__alt-link a:hover {
    text-decoration: underline;
  }

  .customer-page__success {
    color: #28a745;
    font-size: 14px;
    margin-bottom: 16px;
  }
/* END_SECTION:main-login */

/* START_SECTION:page (INDEX:25) */
.page-content {
    padding: 40px 0 60px;
  }

  .page-content__inner {
  }

  /* ── Heading ── */
  .page-content__heading {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(var(--color-primary));
    margin: 0 0 24px;
  }

  /* ── Width Variants ── */
  .page-content__prose--narrow {
    max-width: 800px;
  }

  .page-content__prose--medium {
    max-width: 1200px;
  }

  .page-content__prose--wide {
    max-width: 1495px;
  }

  /* ── Truncated state ── */
  .page-content__prose--truncated {
    max-height: 1200px;
    overflow: hidden;
    position: relative;
  }

  .page-content__prose--truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
    pointer-events: none;
  }

  .page-content__prose--expanded {
    max-height: none;
    overflow: visible;
  }

  .page-content__prose--expanded::after {
    display: none;
  }

  /* ── Prose Typography ── */
  .page-content__prose h2 {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: rgb(var(--color-primary));
    margin: 32px 0 12px;
  }

  .page-content__prose h2:first-child {
    margin-top: 0;
  }

  .page-content__prose h3 {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: rgb(var(--color-primary));
    margin: 24px 0 8px;
  }

  .page-content__prose p {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgb(var(--color-foreground));
    margin: 0 0 12px;
  }

  .page-content__prose p:last-child {
    margin-bottom: 0;
  }

  .page-content__prose ul,
  .page-content__prose ol {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgb(var(--color-foreground));
    padding-left: 24px;
    margin: 0 0 16px;
  }

  .page-content__prose li {
    margin-bottom: 4px;
  }

  .page-content__prose a {
    color: rgb(var(--color-primary));
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .page-content__prose a:hover {
    text-decoration-thickness: 2px;
  }

  .page-content__prose a:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
    border-radius: 2px;
  }

  .page-content__prose strong {
    font-weight: 700;
  }

  .page-content__prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
  }

  .page-content__prose th,
  .page-content__prose td {
    padding: 8px 12px;
    border: 1px solid rgb(var(--color-border, 200, 200, 200));
    text-align: left;
  }

  .page-content__prose th {
    background-color: rgb(var(--color-background-alt, 243, 242, 241));
    font-weight: 700;
  }

  /* ── Load More ── */
  .page-content__load-more {
    text-align: center;
    margin-top: 24px;
  }

  .page-content__load-more--hidden {
    display: none;
  }

  .page-content__load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 198px;
    height: 44px;
    padding: 0 32px;
    background-color: rgb(var(--color-accent, 205, 25, 46));
    color: rgb(255, 255, 255);
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .page-content__load-more-btn:hover {
    opacity: 0.9;
  }

  .page-content__load-more-btn:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  /* ── Responsive ── */
  @media (max-width: 639px) {
    .page-content {
      padding: 24px 0 40px;
    }

    .page-content__heading {
      font-size: 22px;
    }

    .page-content__prose h2 {
      font-size: 20px;
    }

    .page-content__prose h3 {
      font-size: 18px;
    }

    .page-content__prose p,
    .page-content__prose ul,
    .page-content__prose ol {
      font-size: 14px;
    }
  }
/* END_SECTION:page */

/* START_SECTION:password (INDEX:26) */
.password-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f8f6;
    padding: 40px 20px;
  }

  .password-page__inner {
    width: 100%;
    max-width: 440px;
    text-align: center;
  }

  /* ── Logo ── */
  .password-page__logo {
    margin-bottom: 36px;
  }

  .password-page__logo-img {
    max-width: 180px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .password-page__logo-text {
    font-family: var(--font-heading, 'Libre Bodoni', Georgia, serif);
    font-size: 28px;
    font-weight: 400;
    color: rgb(var(--color-primary));
    letter-spacing: 0.02em;
  }

  /* ── Heading ── */
  .password-page__title {
    font-family: var(--font-heading, 'Libre Bodoni', Georgia, serif);
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 400;
    color: rgb(var(--color-primary));
    margin: 0 0 12px;
    line-height: 1.3;
  }

  .password-page__message {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: #777;
    margin: 0 0 32px;
  }

  /* ── Form ── */
  .password-page__form-wrap {
    margin-bottom: 28px;
  }

  .password-page__error {
    background: #fff3f3;
    border: 1px solid #f5c6cb;
    border-radius: 3px;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #cd192e;
    margin-bottom: 16px;
    text-align: left;
  }

  .password-page__input-row {
    display: flex;
    border: 1px solid #cdcdcd;
    border-radius: 3px;
    overflow: hidden;
    transition: border-color 0.15s ease;
  }

  .password-page__input-row:focus-within {
    border-color: rgb(var(--color-primary));
    box-shadow: 0 0 0 1px rgb(var(--color-primary));
  }

  .password-page__input {
    flex: 1;
    height: 48px;
    padding: 0 16px;
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 15px;
    color: #333;
    background: #fff;
    border: none;
    outline: none;
  }

  .password-page__input::placeholder {
    color: #aaa;
  }

  .password-page__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 22px;
    background: rgb(var(--color-primary));
    color: #fff;
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.15s ease;
  }

  .password-page__btn:hover {
    opacity: 0.85;
  }

  .password-page__btn:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  /* ── Footer ── */
  .password-page__footer {
    font-family: var(--font-body);
    font-size: 12px;
    color: #aaa;
    margin: 0;
  }

  .password-page__shopify-link {
    color: #aaa;
    text-decoration: underline;
  }

  .password-page__shopify-link:hover {
    color: #777;
  }

  /* ── Visually hidden ── */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ── Mobile ── */
  @media (max-width: 639px) {
    .password-page {
      padding: 32px 16px;
    }
  }
/* END_SECTION:password */

/* START_SECTION:policy (INDEX:27) */
.policy-content {
    padding: 40px 0 60px;
  }

  /* ── Heading ── */
  .policy-content__heading {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(var(--color-primary));
    margin: 0 0 24px;
  }

  /* ── Width Variants ── */
  .policy-content__prose--narrow {
    max-width: 800px;
  }

  .policy-content__prose--medium {
    max-width: 1200px;
  }

  .policy-content__prose--wide {
    max-width: 1495px;
  }

  /* ── Prose Typography ── */
  .policy-content__prose h2 {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: rgb(var(--color-primary));
    margin: 32px 0 12px;
  }

  .policy-content__prose h2:first-child {
    margin-top: 0;
  }

  .policy-content__prose h3 {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: rgb(var(--color-primary));
    margin: 24px 0 8px;
  }

  .policy-content__prose p {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgb(var(--color-foreground));
    margin: 0 0 14px;
  }

  .policy-content__prose p:last-child {
    margin-bottom: 0;
  }

  .policy-content__prose ul,
  .policy-content__prose ol {
    font-family: 'Helvetica-Normal', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgb(var(--color-foreground));
    padding-left: 24px;
    margin: 0 0 16px;
  }

  .policy-content__prose li {
    margin-bottom: 4px;
  }

  .policy-content__prose a {
    color: rgb(var(--color-primary));
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .policy-content__prose a:hover {
    text-decoration-thickness: 2px;
  }

  .policy-content__prose a:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
    border-radius: 2px;
  }

  .policy-content__prose strong,
  .policy-content__prose b {
    font-weight: 700;
  }

  /* ── Responsive ── */
  @media (max-width: 639px) {
    .policy-content {
      padding: 24px 0 40px;
    }

    .policy-content__heading {
      font-size: 22px;
    }

    .policy-content__prose h2 {
      font-size: 18px;
    }

    .policy-content__prose h3 {
      font-size: 16px;
    }

    .policy-content__prose p,
    .policy-content__prose ul,
    .policy-content__prose ol {
      font-size: 14px;
    }
  }
/* END_SECTION:policy */

/* START_SECTION:product-recommendations (INDEX:28) */
.product-recommendations {
    padding: 40px 0;
  }

  .product-recommendations__inner {
  }

  .product-recommendations__heading {
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    color: rgb(var(--color-primary));
    margin: 0 0 24px;
  }

  .product-recommendations__grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns, 4), 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .product-recommendations__item {
    margin: 0;
  }

  /* ── Responsive ── */
  @media (max-width: 989px) {
    .product-recommendations__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }

  @media (max-width: 639px) {
    .product-recommendations {
      padding: 24px 0;
    }

    .product-recommendations__heading {
      font-size: 20px;
    }

    .product-recommendations__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
  }

  @media (max-width: 480px) {    
    .product-recommendations__grid {
      grid-template-columns: repeat(1, 1fr);      
    }
  }
/* END_SECTION:product-recommendations */

/* START_SECTION:product (INDEX:29) */
/* ══════ Layout ══════ */
  
  .product-main__breadcrumb {
    display: flex;    
    margin-bottom: 8px;
  }

  .product-main__layout {
    display: grid;
    grid-template-columns: 46fr 54fr;
    gap: 48px;
    align-items: flex-start;  
  }

  /* ══════ Media — vertical gallery ══════ */
  .product-main__media {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  /* Vertical thumbnail strip */
  .product-main__thumbnails {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    width: 90px;
    max-height: 520px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-border, 230, 230, 230)) transparent;
  }

  .product-main__thumbnails::-webkit-scrollbar { width: 3px; }
  .product-main__thumbnails::-webkit-scrollbar-thumb {
    background: rgb(var(--color-border, 230, 230, 230));
    border-radius: 3px;
  }

  /* Hide horizontal scrollbar on desktop webkit */
  .product-main__thumbnails::-webkit-scrollbar:horizontal { display: none; }

  .product-main__thumbnail {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border: 2px solid #bebbbb;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: border-color 0.15s ease;
  }

  .product-main__thumbnail--active {
    border-color: rgb(var(--color-primary));
  }

  .product-main__thumbnail:hover {
    border-color: rgb(var(--color-primary));
    opacity: 0.85;
  }

  .product-main__thumbnail:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  .product-main__thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Main image */
  .product-main__media-main {
    flex: 1;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    background-color: rgb(var(--color-background-alt, 243, 242, 241));
  }

  .product-main__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.2s ease;
  }

  .product-main__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-main__placeholder-svg {
    width: 60%;
    height: 60%;
    opacity: 0.4;
  }

  /* ══════ Mobile image slider (hidden on desktop) ══════ */
  .product-main__slider {
    display: none;
  }

  .product-main__slider-arrow {
    display: none;
  }

  /* ══════ Info ══════ */
  .product-main__title {
    font-family: var(--font-heading, 'Libre Bodoni', Georgia, serif);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000;
    margin: 0 0 8px;
  }

  .product-main__price {
    font-family: var(--font-body);
    font-size: 26px;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .product-main__divider {
    width: 100%;
    margin: 0 0 20px;
    display: inline-block;
    border: none;
}

  .product-main__price-compare {
    color: rgb(var(--color-text-muted, 171, 174, 177));
    text-decoration: line-through;
    margin-right: 6px;
  }

  .product-main__price-sale {
    color: rgb(var(--color-accent, 205, 25, 46));
    font-weight: 400;
  }

  .product-main__price-regular {
    color: rgb(var(--color-foreground));
  }

  .product-main__short-description {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
  }

  .product-main__short-description-text {
    max-height: none;
    overflow: visible;
    transition: max-height 0.2s ease-out;
  }

  .product-main__read-more-btn {
    display: none;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #24394e;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 8px;
  }

  .product-main__read-less-label {
    display: none;
  }

  .product-main__short-description--expanded .product-main__read-less-label {
    display: inline;
  }

  .product-main__short-description--expanded .product-main__read-more-label {
    display: none;
  }

  /* ══════ Options ══════ */
  .product-main__option {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 26px;
    align-items: start;
  }

  .product-main__option > *:not(.product-main__option-label) {
    grid-column: 2;
  }

  .product-main__option.product-main__option--logo {
    display: block;
        border-top: 1px solid #d1d7da;
  }
  .product-main__option.product-main__option--logo span.product-main__option-label {
    padding-top: 22px;
}

  .product-main__option:not(.product-main__option--logo) .product-main__option-label {
    margin-bottom: 0;    
  }

  .product-main__option-label {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #495057;
    margin-bottom: 10px;
  }

  .product-main__option-selected {
    font-weight: 400;
    color: rgb(var(--color-text-muted, 171, 174, 177));
  }

  /* ── Color Swatches ── */
  .product-main__color-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .product-main__color-swatch {
    position: relative;
    width: 85px;
    height: 85px;
    border: 2px solid #d1d7da;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.15s ease;
    background: #fff;
  }

  .product-main__color-swatch--active {
    border-color: #062331;
    border-width: 2px;
  }

  .product-main__color-swatch:focus-within {
    outline: 2px solid #062331;
    outline-offset: 2px;
  }

  .product-main__swatch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-main__swatch-color {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* ── Size Chips ── */
  .product-main__size-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .product-main__size-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 47px;
    height: 47px;
    padding: 0 12px;
    border: 1px solid #d1d7da;
    border-radius: 4px;
    cursor: pointer;
    background-color: #fff;
    transition: border-color 0.15s ease, border-width 0.15s ease;
        margin-bottom: 10px;
  }

  .product-main__size-chip--active {
    border-color: #062331;
    border-width: 2px;
  }

  .product-main__size-chip:focus-within {
    outline: 2px solid #062331;
    outline-offset: 2px;
  }

  .product-main__size-chip-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: #495057;
  }

  .product-main__size-clear {
    display: block;
    margin-top: 0px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    color: #c3c3c3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
  }

  /* ── Logo Cards ── */
  .product-main__logo-cards {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
  }

  .product-main__logo-card {
    width: 200px;
    height: 83px;
    border: 1px solid #d1d7da;
    border-radius: 4px;
    cursor: pointer;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
  }

  .product-main__logo-card:hover {
    border-color: #062331;
  }

  .product-main__logo-card--active {
    border: 2px solid #062331;
  }

  .product-main__logo-card--active:hover {
    border-color: #062331;
  }

  .product-main__logo-card:focus-within {
    outline: 2px solid #062331;
    outline-offset: 2px;
  }

  .product-main__logo-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 14px;
    box-sizing: border-box;
  }

  .product-main__logo-card-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #495057;
    white-space: nowrap;
    text-align: center;
  }

  .product-main__logo-card-img {
    max-width: 120px;
    max-height: 36px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .product-main__logo-card-wordmark {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    color: #082e52;
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1;
  }

  .product-main__logo-card-wordmark strong {
    font-weight: 700;
  }

  .product-main__logo-disclaimer {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    color: #777777;
    margin: 10px 0 6px;
    line-height: 1.6;
  }

  .product-main__logo-notice {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #cd192e;
    margin: 6px 0 0;
    line-height: 1.4;
  }

  /* ── Generic Select ── */
  .product-main__select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-width: 300px;
    width: 100%;
  }

  .product-main__select {
    width: 100%;
    height: 44px;
    padding: 0 36px 0 12px;
    border: 1px solid rgb(var(--color-border-dark, 118, 118, 118));
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgb(var(--color-foreground));
    background-color: rgb(255, 255, 255);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
  }

  .product-main__select:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  .product-main__select-chevron {
    position: absolute;
    right: 10px;
    pointer-events: none;
    color: rgb(var(--color-foreground));
  }

  /* ══════ Actions ══════ */
  .product-main__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
  }

  .product-main__quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d1d7da;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
    width: fit-content;
  }

  .product-main__qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 37px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 400;
    color: #cd192e;
    cursor: pointer;
    transition: background-color 0.15s ease;
  }

  .product-main__qty-btn:hover {
    background-color: rgb(var(--color-background-alt, 243, 242, 241));
  }

  .product-main__qty-btn:focus-visible {
    outline: 2px solid #cd192e;
    outline-offset: -2px;
  }

  .product-main__qty-input {
    width: 42px;
    height: 37px;
    text-align: center;
    border: none;
    border-left: 1px solid #d1d7da;
    border-right: 1px solid #d1d7da;
    font-family: var(--font-body);
    font-size: 16px;
    color: #495057;
    -moz-appearance: textfield;
  }

  .product-main__qty-input::-webkit-inner-spin-button,
  .product-main__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .product-main__add-to-cart {
    flex: 0 0 auto;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    background-color: #cd192e;
    color: #ffffff;
    font-family: 'Helvetica-Condensed', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
  }

  .product-main__add-to-cart:hover:not([disabled]) {
    background-color: #b81729;
  }

  .product-main__add-to-cart:focus-visible {
    outline: 2px solid #cd192e;
    outline-offset: 2px;
  }

  .product-main__add-to-cart[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
  }

  .product-main__add-to-cart[data-loading] {
    opacity: 0.7;
    cursor: wait;
  }

  /* ── ATC status feedback ── */
  .product-main__atc-status {    
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.4;
  }

  .product-main__atc-status--success {
    color: rgb(22, 163, 74);
  }

  .product-main__atc-status--error {
    color: rgb(var(--color-accent, 205, 25, 46));
  }

  /* ══════ Accordion ══════ */

  .product-main__accordion-header {
    display: block;
    padding: 38px 0 0;
    cursor: pointer;
    list-style: none;
    text-decoration: none;
  }

  .product-main__accordion-header::-webkit-details-marker { display: none; }

  .product-main__accordion-header:focus-visible {
    outline: 2px solid #495057;
    outline-offset: 2px;
  }

  .product-main__accordion-label {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #495057;
    padding-bottom: 10px;
    border-bottom: 1px solid #d1d7da;
}

  .product-main__accordion-bar {
    display: block;
    width: 87px;
    height: 3px;
    background-color: #cd1e2c;
    margin-bottom: 14px;
  }

  .product-main__accordion-body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #495057;
    padding-bottom: 20px;
  }

  /* ══════ App blocks ══════ */
  .product-main__app-block {
    margin-top: 16px;
  }

  /* ══════ Visually Hidden ══════ */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ══════ Mobile Sticky ATC ══════ */
  .product-main__sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgb(255, 255, 255);
    border-top: 1px solid rgb(var(--color-border, 230, 230, 230));
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .product-main__sticky--visible {
    transform: translateY(0);
  }

  .product-main__sticky-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .product-main__sticky-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .product-main__sticky-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: rgb(var(--color-foreground));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-main__sticky-price {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgb(var(--color-foreground));
  }

  .product-main__sticky-atc {
    flex: 0 0 auto;
    max-width: 180px;
  }

  /* ══════ Responsive ══════ */
  @media (max-width: 989px) {
    .product-main__layout {
      grid-template-columns: 1fr;
      gap: 28px;
      padding-top: {{ section.settings.padding_top | default: 0 | times: 0.75 | round }}px;
      padding-bottom: {{ section.settings.padding_bottom | default: 0 | times: 0.75 | round }}px;
    }

    .product-main__media {
      max-width: 640px;
      margin: 0 auto;
      width: 100%;
      flex-direction: column-reverse;
    }

    .product-main__media-main,
    .product-main__thumbnails {
      display: none;
    }

    .product-main__slider {
      display: flex;
      width: 100%;
      gap: 0;
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: none;
      -ms-overflow-style: none;
      scroll-snap-type: x mandatory;
      overscroll-behavior-x: contain;
    }

    .product-main__slider::-webkit-scrollbar {
      display: none;
    }

    .product-main__slider-slide {
      flex: 0 0 100%;
      width: 100%;
      scroll-snap-align: start;
      scroll-snap-stop: always;
      aspect-ratio: 1 / 1;
      overflow: hidden;
    }

    .product-main__slider-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .product-main__media {
      position: relative;
    }

    .product-main__slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.9);
      color: #24394e;
      cursor: pointer;
      z-index: 10;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: background 0.15s ease, box-shadow 0.15s ease;
      padding: 0;
    }

    .product-main__slider-arrow:hover {
      background: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .product-main__slider-arrow:active {
      transform: translateY(-50%) scale(0.95);
    }

    .product-main__slider-arrow:focus-visible {
      outline: 2px solid rgb(var(--color-primary));
      outline-offset: 2px;
    }

    .product-main__slider-arrow--prev {
      left: 8px;
    }

    .product-main__slider-arrow--next {
      right: 8px;
    }

    .product-main__slider-arrow--disabled {
      opacity: 0.5;
      pointer-events: none;
    }
  }

  @media (max-width: 639px) {
    .product-main {
      padding: 0 0 0px;
    }

    .product-main__title {
      font-size: 20px;
    }

    .product-main__actions {
      flex-direction: column;
      align-items: stretch;
    }

    .product-main__quantity {
      justify-content: center;
    }

    .product-main__add-to-cart {
      width: 100%;
    }

    .product-main__sticky-info {
      display: none;
    }

    .product-main__sticky-atc {
      max-width: none;
      flex: 1;
    }

    .product-main__short-description-text {
      max-height: 60px;
      overflow: hidden;
    }

    .product-main__short-description--expanded .product-main__short-description-text {
      max-height: none;
    }

    .product-main__read-more-btn {
      display: block;
    }

    .product-main__logo-card {
      width: calc(50% - 5px);
      height: 70px;
      padding: 8px;
    }

    .product-main__logo-card-inner {
      padding: 0 8px;
    }

    .product-main__logo-card-text {
      font-size: 12px;
    }

    .product-main__logo-card-img {
      max-width: 80px;
      max-height: 28px;
    }

    .product-main__logo-card-wordmark {
      font-size: 14px;
    }

    .product-main__qty-btn {
      width: 36px;
      height: 36px;
    }

    .product-main__qty-input {
      width: 38px;
      height: 36px;
      font-size: 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .product-main__accordion-icon,
    .product-main__sticky,
    .product-main__image {
      transition: none;
    }
  }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:30) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .search-page__hero {
    background-color: rgb(var(--color-primary));
    padding: 48px 0 52px;
  }

  .search-page__hero-inner {
    text-align: center;
  }

  .search-page__title {
    font-family: 'Arimo', Arial, sans-serif;
    font-style: italic;
    font-weight: var(--font-heading-display--weight, 400);
    font-size: 52px;
    line-height: 1.2;
    color: rgb(255, 255, 255);
    margin: 0 0 28px;
  }

  .search-page__form {
    max-width: 680px;
    margin: 0 auto;
  }

  .search-page__input-wrap {
    display: flex;
    align-items: stretch;
    height: 54px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  }

  .search-page__input {
    flex: 1;
    height: 100%;
    padding: 0 20px;
    font-family: 'Arimo', Arial, sans-serif;
    font-size: var(--font-size-body-md);
    color: rgb(var(--color-primary));
    background-color: rgb(255, 255, 255);
    border: none;
    outline: none;
    min-width: 0;
  }

  .search-page__input::placeholder {
    color: rgb(var(--color-text-placeholder, 81, 89, 98));
  }

  .search-page__input:focus {
    outline: none;
  }

  .search-page__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 100%;
    flex-shrink: 0;
    background-color: rgb(var(--color-accent));
    color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .search-page__submit:hover {
    opacity: 0.85;
  }

  .search-page__submit:focus-visible {
    outline: 2px solid rgb(255, 255, 255);
    outline-offset: 2px;
  }

  .search-page__body {
    padding-top: 36px;
    padding-bottom: 60px;
  }

  .search-page__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgb(var(--color-border));
    padding-bottom: 20px;
  }

  .search-page__count {
    font-family: 'Arimo', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    color: rgb(var(--color-text-muted, 119, 119, 119));
    margin: 0;
  }

  .search-page__count strong {
    color: rgb(var(--color-primary));
    font-weight: 700;
  }

  .search-page__tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
  }

  .search-page__tab {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 16px;
    font-family: 'Arimo', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    font-weight: 500;
    color: rgb(var(--color-secondary));
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 4px;
    white-space: nowrap;
    transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
  }

  .search-page__tab:hover {
    border-color: rgb(var(--color-border));
    color: rgb(var(--color-primary));
  }

  .search-page__tab--active {
    background-color: rgb(var(--color-primary));
    color: rgb(255, 255, 255);
    border-color: rgb(var(--color-primary));
  }

  .search-page__tab--active:hover {
    color: rgb(255, 255, 255);
  }

  .search-page__grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns, 3), 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .search-page__grid-item {
    min-width: 0;
  }

  .search-page__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    gap: 16px;
  }

  .search-page__empty-icon {
    color: rgb(var(--color-border));
    flex-shrink: 0;
  }

  .search-page__empty-heading {
    font-family: 'Arimo', Arial, sans-serif;
    font-size: var(--font-size-heading-md);
    font-weight: 700;
    color: rgb(var(--color-primary));
    text-transform: uppercase;
    margin: 0;
  }

  .search-page__empty-body {
    font-family: 'Arimo', Arial, sans-serif;
    font-size: var(--font-size-body-md);
    color: rgb(var(--color-text-muted, 119, 119, 119));
    margin: 0;
    max-width: 420px;
  }

  .search-page__cta {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 28px;
    background-color: rgb(var(--color-primary));
    color: rgb(255, 255, 255);
    font-family: 'Arimo', Arial, sans-serif;
    font-weight: 700;
    font-size: var(--font-size-body-sm);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.6px;
    border-radius: var(--radius-cta, 50px);
    transition: opacity 0.2s ease;
    margin-top: 8px;
  }

  .search-page__cta:hover {
    opacity: 0.85;
  }

  .search-article-card {
    border: 1px solid rgb(var(--color-border));
    border-radius: 0;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.2s ease;
  }

  .search-article-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .search-article-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
  }

  .search-article-card__link:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  .search-article-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: rgb(var(--color-background-alt));
    flex-shrink: 0;
  }

  .search-article-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .search-article-card:hover .search-article-card__image {
    transform: scale(1.03);
  }

  .search-article-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-article-card__placeholder-svg {
    width: 60%;
    height: 60%;
    opacity: 0.3;
  }

  .search-article-card__type-badge,
  .search-page-card__type-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    background-color: rgb(var(--color-secondary));
    color: rgb(255, 255, 255);
    font-family: 'Arimo', Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-radius: 3px;
  }

  .search-article-card__body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .search-article-card__title {
    font-family: 'Arimo', Arial, sans-serif;
    font-size: var(--font-size-body-lg);
    font-weight: 600;
    line-height: 1.4;
    color: rgb(var(--color-primary));
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .search-article-card__date {
    font-family: 'Arimo', Arial, sans-serif;
    font-size: var(--font-size-body-xs);
    color: rgb(var(--color-text-muted, 119, 119, 119));
    display: block;
  }

  .search-article-card__excerpt {
    font-family: 'Arimo', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    line-height: 1.55;
    color: rgb(var(--color-text-body));
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .search-page-card {
    border: 1px solid rgb(var(--color-border));
    background-color: rgb(255, 255, 255);
    height: 100%;
    transition: box-shadow 0.2s ease;
  }

  .search-page-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .search-page-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px 22px 22px;
    text-decoration: none;
    color: inherit;
    position: relative;
    gap: 10px;
  }

  .search-page-card__link:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  .search-page-card__type-badge {
    position: static;
    align-self: flex-start;
  }

  .search-page-card__title {
    font-family: 'Arimo', Arial, sans-serif;
    font-size: var(--font-size-heading-sm);
    font-weight: 700;
    line-height: 1.3;
    color: rgb(var(--color-primary));
    text-transform: uppercase;
    margin: 0;
  }

  .search-page-card__excerpt {
    font-family: 'Arimo', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    line-height: 1.55;
    color: rgb(var(--color-text-body));
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .search-page-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Arimo', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    color: rgb(var(--color-accent));
    margin-top: auto;
  }

  .search-page__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
  }

  .search-page__page-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 16px;
    font-family: 'Arimo', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    color: rgb(var(--color-primary));
    text-decoration: none;
    border: 1px solid rgb(var(--color-border));
    border-radius: 4px;
    transition: border-color 0.15s ease, background-color 0.15s ease;
  }

  .search-page__page-btn:hover {
    border-color: rgb(var(--color-primary));
    background-color: rgb(var(--color-background-alt));
  }

  .search-page__page-btn:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  .search-page__page-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .search-page__page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    font-family: 'Arimo', Arial, sans-serif;
    font-size: var(--font-size-body-sm);
    color: rgb(var(--color-primary));
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: border-color 0.15s ease, background-color 0.15s ease;
  }

  a.search-page__page-num:hover {
    border-color: rgb(var(--color-border));
    background-color: rgb(var(--color-background-alt));
  }

  a.search-page__page-num:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  .search-page__page-num--current {
    background-color: rgb(var(--color-primary));
    color: rgb(255, 255, 255);
    border-color: rgb(var(--color-primary));
    font-weight: 700;
  }

  .search-page__page-num--ellipsis {
    color: rgb(var(--color-text-muted, 119, 119, 119));
    cursor: default;
  }

  @media (max-width: 989px) {
    .search-page__grid {
      --grid-columns: 2;
    }

    .search-page__title {
      font-size: 40px;
    }

    .search-page__meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
  }

  @media (max-width: 639px) {
    .search-page__hero {
      padding: 32px 0 36px;
    }

    .search-page__title {
      font-size: 32px;
      margin-bottom: 20px;
    }

    .search-page__input-wrap {
      height: 48px;
    }

    .search-page__input {
      font-size: var(--font-size-body-sm);
      padding: 0 14px;
    }

    .search-page__submit {
      width: 48px;
    }

    .search-page__body {
      padding-top: 24px;
      padding-bottom: 40px;
    }

    .search-page__grid {
      --grid-columns: 1;
      gap: 16px;
    }

    .search-page__tabs {
      gap: 6px;
    }

    .search-page__tab {
      height: 30px;
      padding: 0 12px;
      font-size: 12px;
    }

    .search-page__page-btn span {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .search-article-card__image,
    .search-page-card,
    .search-article-card,
    .search-page__submit,
    .search-page__tab,
    .search-page__page-btn,
    .search-page__page-num {
      transition: none;
    }
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:31) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:32) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:address-form (INDEX:33) */
.customer-page__field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .customer-page__select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
  }

  .customer-page__field--checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .customer-page__label--inline {
    margin: 0;
    font-weight: 400;
  }

  @media (max-width: 480px) {
    .customer-page__field-row {
      grid-template-columns: 1fr;
    }
  }
/* END_SNIPPET:address-form */

/* START_SNIPPET:collection-filters (INDEX:37) */
.facets__form {
    width: 100%;
  }

  .facets {
    position: sticky;
    top: 20px;
  }

  
  .facets__summary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    cursor: pointer;
    list-style: none;
    user-select: none;
  }

  .facets__summary::-webkit-details-marker {
    display: none;
  }

  .facets__summary-label {
    flex: 1;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--font-size-body-md);
    line-height: 1.3;    
    color: #556B82;
    font-size: 22px;
  }

  .facets__active-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgb(var(--color-primary));
    flex-shrink: 0;
  }

  .facets__chevron {
    flex-shrink: 0;
    color: rgb(var(--color-foreground));
    transition: transform 0.2s ease;
  }

  .facets__details[open] .facets__chevron {
    transform: rotate(180deg);
  }

  .facets__body {
    padding-bottom: 16px;
  }

  .facets__list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-border, 230, 230, 230)) transparent;
  }

  .facets__list::-webkit-scrollbar {
    width: 4px;
  }

  .facets__list::-webkit-scrollbar-thumb {
    background: rgb(var(--color-border, 230, 230, 230));
    border-radius: 4px;
  }

  .facets__item {
    margin: 0;
  }

  .facets__label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--font-size-body-sm);
    line-height: 1.5;
    color: #495057;
    font-size: 16px;
  }

  .facets__label--disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .facets__label:not(.facets__label--disabled):hover .facets__label-text {
    color: rgb(var(--color-primary));
  }

  .facets__checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    border: 1.5px solid rgb(var(--color-border-dark, 73, 80, 87));
    border-radius: 2px;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    position: relative;
    transition: background-color 0.15s ease, border-color 0.15s ease;
  }

  .facets__checkbox:checked {
    background-color: rgb(var(--color-primary));
    border-color: rgb(var(--color-primary));
  }

  .facets__checkbox:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 3px;
    width: 5px;
    height: 8px;
    border: solid rgb(255, 255, 255);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .facets__checkbox:focus-visible {
    outline: 2px solid rgb(var(--color-primary));
    outline-offset: 2px;
  }

  .facets__label-text {
    flex: 1;
  }

  .facets__count {
    font-size: var(--font-size-body-xs);
    color: rgb(var(--color-text-muted, 171, 174, 177));
  }

  .facets__clear-group {
    display: inline-block;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: var(--font-size-body-xs);
    color: rgb(var(--color-primary));
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .facets__clear-group:hover {
    text-decoration: none;
  }

  .facets__price-range {
    display: flex;
    align-items: flex-end;
    gap: 8px;
  }

  .facets__price-field {
    flex: 1;
  }

  .facets__price-label {
    display: block;
    font-family: var(--font-body);
    font-size: var(--font-size-body-xs);
    color: rgb(var(--color-text-muted, 171, 174, 177));
    margin-bottom: 4px;
  }

  .facets__price-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid rgb(var(--color-border, 230, 230, 230));
    border-radius: var(--radius-input, 5px);
    overflow: hidden;
    background: rgb(255, 255, 255);
  }

  .facets__currency {
    padding: 0 6px;
    font-family: var(--font-body);
    font-size: var(--font-size-body-sm);
    color: rgb(var(--color-text-muted, 171, 174, 177));
    background: rgb(var(--color-background-alt, 243, 242, 241));
    align-self: stretch;
    display: flex;
    align-items: center;
  }

  .facets__price-input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 8px;
    font-family: var(--font-body);
    font-size: var(--font-size-body-sm);
    color: rgb(var(--color-foreground));
    background: transparent;
    width: 100%;
  }

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

  .facets__price-sep {
    font-size: var(--font-size-body-md);
    color: rgb(var(--color-text-muted, 171, 174, 177));
    padding-bottom: 10px;
    flex-shrink: 0;
  }

  @media (max-width: 989px) {
    .facets {
      position: static;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .facets__chevron {
      transition: none;
    }
  }
/* END_SNIPPET:collection-filters */

/* START_SNIPPET:image (INDEX:39) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */