/** Shopify CDN: Minification failed

Line 1711:13 Unexpected "{"
Line 1711:22 Expected ":"
Line 1711:29 Unexpected "{"
Line 1716:15 Unexpected "{"
Line 1716:24 Expected ":"
Line 1720:15 Unexpected "{"
Line 1720:24 Expected ":"
Line 1729:15 Unexpected "{"
Line 1729:24 Expected ":"
Line 1734:15 Unexpected "{"
... and 33 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:brand-gateway (INDEX:3) */
.brand-gateway {
    background: #070707;
    color: var(--brand-gateway-text);
    padding: clamp(28px, 5vw, 56px) 0 clamp(42px, 6vw, 72px);
  }

  .brand-gateway__container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    gap: clamp(18px, 2.4vw, 28px);
  }

  .brand-gateway__header {
    display: grid;
    gap: 14px;
  }

  .brand-gateway__eyebrow {
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--brand-gateway-accent);
  }

  .brand-gateway__headline-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
  }

  .brand-gateway__logo-wrap {
    width: min(220px, 30vw);
  }

  .brand-gateway__logo {
    width: 100%;
    height: auto;
    display: block;
  }

  .brand-gateway__title {
    margin: 0;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: #f7f4ee;
  }

  .brand-gateway__intro {
    margin: 10px 0 0;
    max-width: 64ch;
    color: rgba(242, 239, 232, 0.8);
    line-height: 1.5;
  }

  .brand-gateway__media-block {
    display: grid;
    gap: 9px;
  }

  .brand-gateway__media {
    position: relative;
    min-height: var(--brand-gateway-media-height-desktop);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: var(--brand-gateway-surface);
  }

  .brand-gateway__media video,
  .brand-gateway__media-image {
    width: 100%;
    height: 100%;
    min-height: var(--brand-gateway-media-height-desktop);
    object-fit: cover;
    display: block;
  }

  .brand-gateway__media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.14), rgba(8, 8, 8, var(--brand-gateway-media-overlay-opacity)));
    pointer-events: none;
  }

  .brand-gateway--overlay-mode .brand-gateway__media-overlay {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.26), rgba(8, 8, 8, 0.5));
  }

  .brand-gateway__media-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-content: center;
    justify-items: center;
    text-align: center;
    padding: clamp(18px, 4vw, 36px);
    gap: 10px;
    color: #ffffff;
  }

  .brand-gateway__media-eyebrow {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
  }

  .brand-gateway__media-title {
    margin: 0;
    font-size: clamp(34px, 5.4vw, 56px);
    line-height: 1.02;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
  }

  .brand-gateway__media-intro {
    margin: 0;
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
  }

  .brand-gateway__media-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2px;
  }

  .brand-gateway__media-button {
    min-width: 150px;
    min-height: 40px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.95);
    color: #111111;
    text-decoration: none;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .brand-gateway__media-button:hover {
    background: transparent;
    color: #ffffff;
  }

  .brand-gateway__media-button--disabled {
    opacity: 0.6;
    pointer-events: none;
  }

  .brand-gateway__media-caption {
    margin: 0;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    color: rgba(242, 239, 232, 0.72);
  }

  .brand-gateway__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 22px);
  }

  .brand-gateway__card {
    position: relative;
    display: block;
    min-height: var(--brand-gateway-card-height-desktop);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: var(--brand-gateway-card-text);
    isolation: isolate;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
  }

  .brand-gateway__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.34);
  }

  .brand-gateway__card:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
  }

  .brand-gateway__card-media {
    position: absolute;
    inset: 0;
    background: #111111;
  }

  .brand-gateway__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .brand-gateway__card:hover .brand-gateway__card-image {
    transform: scale(1.03);
  }

  .brand-gateway__card-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, calc(var(--brand-gateway-card-overlay-opacity) * 0.36)),
      rgba(8, 8, 8, var(--brand-gateway-card-overlay-opacity))
    );
    pointer-events: none;
    z-index: 1;
  }

  .brand-gateway__card-content {
    position: relative;
    z-index: 2;
    min-height: var(--brand-gateway-card-height-desktop);
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 10px;
    padding: clamp(18px, 2.4vw, 30px);
    text-align: center;
  }

  .brand-gateway__card-eyebrow {
    margin: 0;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.88);
  }

  .brand-gateway__card-title {
    margin: 0;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.02;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-gateway-card-text);
  }

  .brand-gateway__card-subline {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
  }

  .brand-gateway__card-cta {
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    background: var(--brand-gateway-card-button-bg);
    color: var(--brand-gateway-card-button-text);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .brand-gateway__card:hover .brand-gateway__card-cta {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.88);
  }

  .brand-gateway__setup-note {
    margin-top: 4px;
    border: 1px dashed rgba(212, 175, 55, 0.45);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.9rem;
    color: rgba(242, 239, 232, 0.86);
  }

  .brand-gateway__setup-note code {
    color: #f5e4aa;
  }

  .brand-gateway__placeholder {
    opacity: 0.62;
  }

  @media (max-width: 989px) {
    .brand-gateway__cards {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 749px) {
    .brand-gateway__container {
      width: calc(100% - 24px);
    }

    .brand-gateway__headline-row {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .brand-gateway__logo-wrap {
      width: min(180px, 46vw);
    }

    .brand-gateway__media {
      min-height: var(--brand-gateway-media-height-mobile);
      border-radius: 14px;
    }

    .brand-gateway__media video,
    .brand-gateway__media-image {
      min-height: var(--brand-gateway-media-height-mobile);
    }

    .brand-gateway__card-media,
    .brand-gateway__card-content {
      min-height: var(--brand-gateway-card-height-mobile);
    }

    .brand-gateway__card-content {
      padding: 16px;
      gap: 8px;
    }

    .brand-gateway__card-title {
      font-size: clamp(26px, 7.2vw, 36px);
    }

    .brand-gateway__card-subline {
      font-size: 0.92rem;
    }

    .brand-gateway__media-title {
      font-size: clamp(28px, 10vw, 42px);
    }

    .brand-gateway__media-intro {
      font-size: 0.92rem;
      max-width: 34ch;
    }
  }
/* END_SECTION:brand-gateway */

/* START_SECTION:custom-brand-circles (INDEX:12) */
.section-custom-brand-circles .brand-circles {
    position: relative;
    overflow: hidden;
    margin-top: calc(min(var(--lift-up-desktop), 20px) * -1);
    z-index: 14;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.22) 22%, rgba(0, 0, 0, 0) 56%),
      radial-gradient(120% 140% at 50% -10%, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0)),
      var(--section-bg);
    color: var(--text-color);
    padding-top: calc(var(--pad-top) + 20px);
    padding-bottom: var(--pad-bottom);
  }

  .section-custom-brand-circles .brand-circles::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 124px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0));
    pointer-events: none;
  }

  .section-custom-brand-circles .brand-circles__divider {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto 34px;
    border-top: 1px solid rgba(212, 175, 55, 0.42);
    box-shadow: 0 1px 0 rgba(212, 175, 55, 0.12);
    position: relative;
    z-index: 1;
  }

  .section-custom-brand-circles .brand-circles__container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
  }

  .section-custom-brand-circles .brand-circles__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }

  .section-custom-brand-circles .brand-circles--align-left .brand-circles__header {
    text-align: left;
    margin-left: 0;
  }

  .section-custom-brand-circles .brand-circles--align-right .brand-circles__header {
    text-align: right;
    margin-right: 0;
  }

  .section-custom-brand-circles .brand-circles__eyebrow {
    margin: 0 0 8px;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-color);
  }

  .section-custom-brand-circles .brand-circles__title {
    margin: 0;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: 0.02em;
  }

  .section-custom-brand-circles .brand-circles__subheading {
    margin-top: 8px;
    opacity: 0.82;
    line-height: 1.5;
  }

  .section-custom-brand-circles .brand-circles__subheading p {
    margin: 0;
  }

  .section-custom-brand-circles .brand-circles__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--grid-gap);
    align-items: stretch;
  }

  .section-custom-brand-circles .brand-circles__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-custom-brand-circles .brand-circles__grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section-custom-brand-circles .brand-circles__grid--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .section-custom-brand-circles .brand-circles__grid--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .section-custom-brand-circles .brand-circles__item {
    min-width: 0;
    display: flex;
  }

  .section-custom-brand-circles .brand-circles__link {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
  }

  .section-custom-brand-circles .brand-circles__tile {
    width: 100%;
    height: var(--tile-height);
    min-height: var(--tile-height);
    border-radius: 16px;
    border: var(--tile-border-width) solid var(--tile-border);
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95), rgba(14, 14, 14, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  }

  .section-custom-brand-circles .brand-circles__logo-frame {
    width: min(88%, var(--logo-max-width));
    height: clamp(52px, 7vw, 88px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-custom-brand-circles .brand-circles__logo-frame--isik {
    width: min(96%, calc(var(--logo-max-width) * 1.5));
  }

  .section-custom-brand-circles .brand-circles__logo {
    --logo-scale: 1;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transform: scale(var(--logo-scale));
    opacity: 0.96;
    filter: brightness(1.55) contrast(1.24);
    transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
  }

  .section-custom-brand-circles .brand-circles__logo--boost {
    --logo-scale: 1.14;
    filter: invert(1) brightness(1.36) contrast(1.14);
  }

  .section-custom-brand-circles .brand-circles__logo--default {
    position: relative;
    z-index: 1;
  }

  .section-custom-brand-circles .brand-circles__logo--isik-default {
    filter: brightness(0) saturate(0) invert(1) contrast(1.08);
  }

  .section-custom-brand-circles .brand-circles__logo--hover {
    --hover-logo-scale: 1.06;
    --hover-logo-shift-y: 0px;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transform: translateY(var(--hover-logo-shift-y)) scale(calc(var(--logo-scale) * 0.98));
  }

  .section-custom-brand-circles .brand-circles__logo--hover-scale-gstar {
    --hover-logo-scale: 1.34;
    --hover-logo-shift-y: 4px;
  }

  .section-custom-brand-circles .brand-circles__logo--hover-scale-replay {
    --hover-logo-scale: 1.42;
  }

  .section-custom-brand-circles .brand-circles__logo--hover-scale-isik {
    --hover-logo-scale: 1.34;
    --hover-logo-shift-y: 4px;
  }

  .section-custom-brand-circles .brand-circles__placeholder {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    opacity: 0.58;
  }

  .section-custom-brand-circles .brand-circles__label-wrap {
    text-align: center;
    display: grid;
    gap: 0;
  }

  .section-custom-brand-circles .brand-circles__label {
    font-size: 0.86rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f2efe8;
    transition: color 0.25s ease, transform 0.25s ease;
  }

  .section-custom-brand-circles .brand-circles__link:hover .brand-circles__tile {
    border-color: var(--accent-color);
    transform: translateY(-5px) scale(1.01);
    background: linear-gradient(180deg, rgba(40, 40, 40, 0.97), rgba(19, 19, 19, 0.97));
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42), 0 0 26px rgba(212, 175, 55, 0.18), inset 0 0 0 1px rgba(212, 175, 55, 0.35);
  }

  .section-custom-brand-circles .brand-circles__logo--isik-size {
    --logo-scale: 1.58;
    width: 100%;
    max-width: 100%;
  }

  .section-custom-brand-circles .brand-circles__link:hover .brand-circles__logo-frame:not(.brand-circles__logo-frame--has-hover) .brand-circles__logo,
  .section-custom-brand-circles .brand-circles__link:focus-visible .brand-circles__logo-frame:not(.brand-circles__logo-frame--has-hover) .brand-circles__logo {
    transform: scale(calc(var(--logo-scale) * 1.06));
    filter: brightness(1.62) contrast(1.26);
  }

  .section-custom-brand-circles .brand-circles__link:hover .brand-circles__logo-frame--has-hover .brand-circles__logo--default,
  .section-custom-brand-circles .brand-circles__link:focus-visible .brand-circles__logo-frame--has-hover .brand-circles__logo--default {
    opacity: 0;
    transform: scale(calc(var(--logo-scale) * 1.01));
  }

  .section-custom-brand-circles .brand-circles__link:hover .brand-circles__logo-frame--has-hover .brand-circles__logo--hover,
  .section-custom-brand-circles .brand-circles__link:focus-visible .brand-circles__logo-frame--has-hover .brand-circles__logo--hover {
    opacity: 1;
    transform: translateY(var(--hover-logo-shift-y)) scale(calc(var(--logo-scale) * var(--hover-logo-scale)));
    filter:
      drop-shadow(0 0 10px rgba(212, 175, 55, 0.66))
      drop-shadow(0 0 22px rgba(212, 175, 55, 0.4));
  }

  .section-custom-brand-circles .brand-circles__link:hover .brand-circles__label {
    color: #ffffff;
    transform: translateY(-1px);
  }

  .section-custom-brand-circles .brand-circles__link:active .brand-circles__tile {
    transform: translateY(-2px) scale(1.005);
  }

  .section-custom-brand-circles .brand-circles__footer {
    display: flex;
    justify-content: center;
  }

  .section-custom-brand-circles .brand-circles--align-left .brand-circles__footer {
    justify-content: flex-start;
  }

  .section-custom-brand-circles .brand-circles--align-right .brand-circles__footer {
    justify-content: flex-end;
  }

  .section-custom-brand-circles .brand-circles__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--accent-color);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 999px;
    padding: 10px 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 11px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
  }

  .section-custom-brand-circles .brand-circles__cta:hover {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.12);
  }

  @media (max-width: 989px) {
    .section-custom-brand-circles .brand-circles__divider {
      width: min(1200px, calc(100% - 32px));
      margin-bottom: 28px;
    }

    .section-custom-brand-circles .brand-circles__container {
      width: min(1200px, calc(100% - 32px));
    }

    .section-custom-brand-circles .brand-circles__tile {
      height: min(var(--tile-height), 168px);
      min-height: min(var(--tile-height), 168px);
      padding: 16px;
    }
  }

  @media (max-width: 749px) {
    .section-custom-brand-circles .brand-circles {
      margin-top: calc(min(var(--lift-up-mobile), 12px) * -1);
    }

    .section-custom-brand-circles .brand-circles__grid {
      gap: 14px;
    }

    .section-custom-brand-circles .brand-circles__grid--m-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .section-custom-brand-circles .brand-circles__grid--m-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-custom-brand-circles .brand-circles__grid--m-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .section-custom-brand-circles .brand-circles__tile {
      height: min(var(--tile-height), 148px);
      min-height: min(var(--tile-height), 148px);
      border-radius: 14px;
    }

    .section-custom-brand-circles .brand-circles__logo-frame {
      height: clamp(46px, 12vw, 72px);
    }

    .section-custom-brand-circles .brand-circles__label {
      font-size: 0.8rem;
      letter-spacing: 0.1em;
    }

  }

  @media (max-width: 479px) {
    .section-custom-brand-circles .brand-circles::before {
      height: 96px;
    }

    .section-custom-brand-circles .brand-circles__divider {
      width: calc(100% - 24px);
      margin-bottom: 24px;
    }

    .section-custom-brand-circles .brand-circles__container {
      width: calc(100% - 24px);
    }

    .section-custom-brand-circles .brand-circles__tile {
      height: min(var(--tile-height), 132px);
      min-height: min(var(--tile-height), 132px);
      padding: 14px;
    }
  }
/* END_SECTION:custom-brand-circles */

/* START_SECTION:custom-category-tiles (INDEX:13) */
.section-custom-category-tiles .category-tiles {
    background: var(--category-bg);
    color: var(--category-text);
    padding-top: var(--category-pad-top);
    padding-bottom: var(--category-pad-bottom);
  }

  .section-custom-category-tiles .category-tiles__container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    gap: clamp(14px, 2vw, 24px);
  }

  .section-custom-category-tiles .category-tiles__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }

  .section-custom-category-tiles .category-tiles--align-left .category-tiles__header {
    text-align: left;
    margin-left: 0;
  }

  .section-custom-category-tiles .category-tiles--align-right .category-tiles__header {
    text-align: right;
    margin-right: 0;
  }

  .section-custom-category-tiles .category-tiles__eyebrow {
    margin: 0 0 8px;
    font-size: clamp(24px, 3.2vw, 42px);
    letter-spacing: 0.2em;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: var(--category-accent);
  }

  .section-custom-category-tiles .category-tiles__title {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: 0.01em;
  }

  .section-custom-category-tiles .category-tiles__subheading {
    margin-top: 10px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(0.95rem, 1.15vw, 1.08rem);
    line-height: 1.5;
    color: rgba(230, 225, 216, 0.84);
    opacity: 1;
  }

  .section-custom-category-tiles .category-tiles__subheading p {
    margin: 0;
  }

  .section-custom-category-tiles .category-tiles--align-left .category-tiles__subheading {
    margin-left: 0;
    margin-right: auto;
  }

  .section-custom-category-tiles .category-tiles--align-right .category-tiles__subheading {
    margin-left: auto;
    margin-right: 0;
  }

  .section-custom-category-tiles .category-tiles__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--category-gap);
  }

  .section-custom-category-tiles .category-tiles__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-custom-category-tiles .category-tiles__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-custom-category-tiles .category-tiles__grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section-custom-category-tiles .category-tiles__grid--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .section-custom-category-tiles .category-tiles__item {
    min-width: 0;
    display: flex;
  }

  .section-custom-category-tiles .category-tiles__tile {
    position: relative;
    display: block;
    height: clamp(250px, 27vw, 340px);
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--category-tile-border);
    perspective: 1300px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .section-custom-category-tiles .category-tiles__tile--featured {
    border-color: rgba(212, 175, 55, 0.62);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42), 0 0 20px rgba(212, 175, 55, 0.12);
  }

  .section-custom-category-tiles .category-tiles__flip {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
  }

  .section-custom-category-tiles .category-tiles__face {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.72s cubic-bezier(0.2, 0.64, 0.2, 1), opacity 0.34s ease;
  }

  .section-custom-category-tiles .category-tiles__face--front {
    transform: rotateY(0deg);
    z-index: 2;
    opacity: 1;
    display: grid;
    grid-template-rows: 1fr auto;
    background:
      linear-gradient(170deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)),
      linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(10, 10, 10, 0.99)),
      var(--category-tile-bg);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.08);
  }

  .section-custom-category-tiles .category-tiles__face--back {
    transform: rotateY(180deg);
    z-index: 1;
    opacity: 0;
    background: #111111;
  }

  .section-custom-category-tiles .category-tiles__media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #121212;
  }

  .section-custom-category-tiles .category-tiles__media-image,
  .section-custom-category-tiles .category-tiles__media-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: var(--category-media-fit);
    object-position: center center;
    padding: var(--category-media-padding);
  }

  .section-custom-category-tiles .category-tiles__media-image {
    transform: scale(var(--category-media-scale));
    filter: saturate(1.05) contrast(1.08);
    transition: transform 0.32s ease, filter 0.32s ease;
  }

  .section-custom-category-tiles .category-tiles__back-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.76) 100%);
    opacity: var(--category-media-overlay-opacity);
    pointer-events: none;
  }

  .section-custom-category-tiles .category-tiles__back-content {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 1;
    display: grid;
    gap: 4px;
  }

  .section-custom-category-tiles .category-tiles__back-title {
    font-size: 0.96rem;
    letter-spacing: 0.14em;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
  }

  .section-custom-category-tiles .category-tiles__back-cta {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--category-accent);
  }

  .section-custom-category-tiles .category-tiles__content {
    padding: 18px 18px 8px;
    display: grid;
    align-content: start;
    gap: 7px;
  }

  .section-custom-category-tiles .category-tiles__tile-title {
    font-size: clamp(0.94rem, 0.72rem + 0.4vw, 1.08rem);
    letter-spacing: 0.14em;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    color: #f5f2ea;
    transition: color 0.25s ease;
  }

  .section-custom-category-tiles .category-tiles__tile-subline {
    font-size: 0.82rem;
    line-height: 1.35;
    color: #cec4b4;
  }

  .section-custom-category-tiles .category-tiles__tile-cta {
    margin-top: 2px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--category-accent);
  }

  .section-custom-category-tiles .category-tiles__meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    padding: 0 18px 14px;
  }

  .section-custom-category-tiles .category-tiles__icon {
    width: 20px;
    height: 20px;
    color: rgba(236, 231, 223, 0.88);
    flex-shrink: 0;
  }

  .section-custom-category-tiles .category-tiles__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: block;
  }

  .section-custom-category-tiles .category-tiles__icon--empty {
    opacity: 0;
  }

  .section-custom-category-tiles .category-tiles__stamp {
    max-width: 120px;
    min-height: 18px;
    opacity: var(--category-stamp-opacity);
    justify-self: end;
  }

  .section-custom-category-tiles .category-tiles__stamp-image {
    width: auto;
    max-width: 100%;
    height: 16px;
    object-fit: contain;
    display: block;
    filter: saturate(0.84) contrast(1.03);
  }

  .section-custom-category-tiles .category-tiles__stamp-text {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d4af37;
  }

  .section-custom-category-tiles .category-tiles__tile:hover {
    transform: translateY(-5px);
    border-color: var(--category-accent);
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.44),
      0 0 24px rgba(212, 175, 55, 0.18);
  }

  .section-custom-category-tiles .category-tiles__tile:hover .category-tiles__face--front,
  .section-custom-category-tiles .category-tiles__tile:focus-visible .category-tiles__face--front {
    transform: rotateY(-180deg);
    opacity: 0;
  }

  .section-custom-category-tiles .category-tiles__tile:hover .category-tiles__face--back,
  .section-custom-category-tiles .category-tiles__tile:focus-visible .category-tiles__face--back {
    transform: rotateY(0deg);
    opacity: 1;
  }

  .section-custom-category-tiles .category-tiles__tile:hover .category-tiles__media-image {
    transform: scale(calc(var(--category-media-scale) + 0.05));
    filter: saturate(1.1) contrast(1.12);
  }

  .section-custom-category-tiles .category-tiles__tile:focus-visible {
    outline: 2px solid var(--category-accent);
    outline-offset: 2px;
  }

  @media (max-width: 989px) {
    .section-custom-category-tiles .category-tiles__container {
      width: min(1240px, calc(100% - 32px));
    }

    .section-custom-category-tiles .category-tiles__tile {
      height: 268px;
    }
  }

  @media (max-width: 749px) {
    .section-custom-category-tiles .category-tiles__grid {
      gap: 12px;
    }

    .section-custom-category-tiles .category-tiles__grid--m-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .section-custom-category-tiles .category-tiles__grid--m-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-custom-category-tiles .category-tiles__tile {
      height: 236px;
    }

    .section-custom-category-tiles .category-tiles__face--back {
      display: none;
    }

    .section-custom-category-tiles .category-tiles__face--front {
      position: relative;
    }

    .section-custom-category-tiles .category-tiles__content {
      padding: 13px 13px 7px;
      gap: 5px;
    }

    .section-custom-category-tiles .category-tiles__tile-title {
      font-size: 0.86rem;
      letter-spacing: 0.11em;
    }

    .section-custom-category-tiles .category-tiles__tile-subline {
      font-size: 0.74rem;
    }

    .section-custom-category-tiles .category-tiles__tile-cta {
      font-size: 0.66rem;
      letter-spacing: 0.1em;
    }

    .section-custom-category-tiles .category-tiles__meta {
      padding: 0 13px 11px;
    }

    .section-custom-category-tiles .category-tiles__icon {
      width: 18px;
      height: 18px;
    }

    .section-custom-category-tiles .category-tiles__stamp-image {
      height: 14px;
    }
  }

  @media (max-width: 479px) {
    .section-custom-category-tiles .category-tiles__container {
      width: calc(100% - 24px);
    }
  }
/* END_SECTION:custom-category-tiles */

/* START_SECTION:premium-fullscreen-hero (INDEX:56) */
.premium-hero {
    position: relative;
    background: var(--section-bg);
    color: var(--text-color);
    overflow: hidden;
    padding-top: var(--pad-top);
    padding-bottom: var(--pad-bottom);
    isolation: isolate;
  }

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

  .premium-hero__image {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .premium-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .premium-hero__video {
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .premium-hero__video-element,
  .premium-hero__video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .premium-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-color);
    opacity: var(--overlay-opacity);
    z-index: 3;
  }

  .premium-hero__glow {
    position: absolute;
    inset: -10% 0 0;
    background: radial-gradient(60% 45% at 60% 35%, var(--accent-glow), transparent 70%);
    z-index: 4;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .premium-hero--glow .premium-hero__glow {
    opacity: 1;
  }

  .premium-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 5;
    background-image: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 3px
    );
    opacity: 0.25;
    mix-blend-mode: soft-light;
  }

  .premium-hero__inner {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    padding-inline: clamp(20px, 6vw, 96px);
  }

  .premium-hero--height-screen .premium-hero__inner {
    min-height: calc(75vh - var(--pad-top) - var(--pad-bottom));
  }

  @supports (height: 100svh) {
    .premium-hero--height-screen .premium-hero__inner {
      min-height: calc(75svh - var(--pad-top) - var(--pad-bottom));
    }
  }

  .premium-hero--height-large .premium-hero__inner {
    min-height: calc(80vh - var(--pad-top) - var(--pad-bottom));
  }

  .premium-hero--height-medium .premium-hero__inner {
    min-height: calc(65vh - var(--pad-top) - var(--pad-bottom));
  }

  .premium-hero--height-compact .premium-hero__inner {
    min-height: calc(54vh - var(--pad-top) - var(--pad-bottom));
  }

  @supports (height: 100svh) {
    .premium-hero--height-compact .premium-hero__inner {
      min-height: calc(54svh - var(--pad-top) - var(--pad-bottom));
    }
  }

  .premium-hero--height-compact.premium-hero--v-center .premium-hero__inner {
    align-items: flex-start;
    padding-top: clamp(44px, 7vh, 88px);
  }

  .premium-hero--height-compact .premium-hero__content {
    max-width: min(var(--content-max), 680px);
    padding: clamp(16px, 2.4vw, 30px);
  }

  .premium-hero--height-compact .premium-hero__heading {
    font-size: clamp(29px, 4vw, 50px);
  }

  .premium-hero--height-compact .premium-hero__rule {
    margin: 14px 0;
  }

  .premium-hero--h-left .premium-hero__inner {
    justify-content: flex-start;
  }

  .premium-hero--h-center .premium-hero__inner {
    justify-content: center;
  }

  .premium-hero--h-right .premium-hero__inner {
    justify-content: flex-end;
  }

  .premium-hero--v-top .premium-hero__inner {
    align-items: flex-start;
  }

  .premium-hero--v-center .premium-hero__inner {
    align-items: center;
  }

  .premium-hero--v-bottom .premium-hero__inner {
    align-items: flex-end;
  }

  .premium-hero__content {
    position: relative;
    max-width: var(--content-max);
    width: min(100%, var(--content-max));
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: clamp(22px, 3.6vw, 48px);
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
  }

  .premium-hero--text-center .premium-hero__content {
    text-align: center;
  }

  .premium-hero--text-right .premium-hero__content {
    text-align: right;
  }

  .premium-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid var(--content-border);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 10px;
    font-weight: 600;
  }

  .premium-hero__kicker {
    margin: 18px 0 0;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.75;
  }

  .premium-hero__heading {
    margin: 16px 0 0;
    color: var(--heading-color);
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }

  .premium-hero__rule {
    width: 64px;
    height: 2px;
    background: var(--accent);
    margin: 20px 0;
  }

  .premium-hero--text-center .premium-hero__rule {
    margin-left: auto;
    margin-right: auto;
  }

  .premium-hero--text-right .premium-hero__rule {
    margin-left: auto;
    margin-right: 0;
  }

  .premium-hero__subheading {
    margin-top: 16px;
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.6;
  }

  .premium-hero__subheading p {
    margin: 0;
  }

  .premium-hero__subheading p + p {
    margin-top: 10px;
  }

  .premium-hero__note {
    margin-top: 18px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.65;
  }

  .premium-hero__buttons {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .premium-hero--text-center .premium-hero__buttons {
    justify-content: center;
  }

  .premium-hero--text-right .premium-hero__buttons {
    justify-content: flex-end;
  }

  .premium-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .premium-hero__button--solid {
    background: var(--accent);
    color: var(--accent-text);
    border: 1px solid var(--accent);
  }

  .premium-hero__button--outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
  }

  .premium-hero__button--ghost {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .premium-hero__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }

  @media (max-width: 749px) {
    .premium-hero--height-compact .premium-hero__inner {
      min-height: calc(48svh - var(--pad-top) - var(--pad-bottom));
    }

    .premium-hero--height-compact.premium-hero--v-center .premium-hero__inner {
      padding-top: clamp(28px, 5vh, 48px);
    }

    .premium-hero--height-compact .premium-hero__content {
      padding: clamp(14px, 4vw, 24px);
    }

    .premium-hero--height-compact .premium-hero__heading {
      font-size: clamp(28px, 7.5vw, 40px);
      line-height: 1.08;
    }

    .premium-hero__content {
      width: 100%;
    }

    .premium-hero__buttons {
      flex-direction: column;
      align-items: stretch;
    }

    .premium-hero__button {
      width: 100%;
    }

    .premium-hero--video-mobile .premium-hero__video {
      display: block;
    }

    .premium-hero__video {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .premium-hero__video {
      display: none;
    }

    .premium-hero__button {
      transition: none;
    }
  }
/* END_SECTION:premium-fullscreen-hero */

/* START_SECTION:premium-promo-banner (INDEX:57) */
.premium-promo {
    background: var(--section-bg);
    color: var(--text-color);
    padding-top: var(--pad-top);
    padding-bottom: var(--pad-bottom);
  }

  .premium-promo__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(20px, 4vw, 52px);
    align-items: center;
  }

  .premium-promo--right .premium-promo__content {
    order: 1;
  }

  .premium-promo--right .premium-promo__media {
    order: 2;
  }

  .premium-promo--left .premium-promo__content {
    order: 2;
  }

  .premium-promo--left .premium-promo__media {
    order: 1;
  }

  .premium-promo__content {
    max-width: var(--content-max);
  }

  .premium-promo--align-center .premium-promo__content {
    text-align: center;
    margin: 0 auto;
  }

  .premium-promo--align-right .premium-promo__content {
    text-align: right;
    margin-left: auto;
  }

  .premium-promo__eyebrow {
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 14px;
  }

  .premium-promo__heading {
    color: var(--heading-color);
    margin: 0 0 14px;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.1;
  }

  .premium-promo__subheading {
    line-height: 1.7;
    opacity: 0.8;
  }

  .premium-promo__subheading p {
    margin: 0;
  }

  .premium-promo__subheading p + p {
    margin-top: 12px;
  }

  .premium-promo__micro {
    margin: 14px 0 0;
    font-size: 0.86rem;
    letter-spacing: 0.03em;
    opacity: 0.78;
  }

  .premium-promo__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
  }

  .premium-promo__buttons--single .premium-promo__button {
    min-width: clamp(240px, 22vw, 340px);
  }

  .premium-promo__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.16em;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .premium-promo__button--solid {
    background: var(--accent);
    color: var(--accent-text);
    border: 1px solid var(--accent);
  }

  .premium-promo__button--outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
  }

  .premium-promo__button--ghost {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.24);
  }

  .premium-promo__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }

  .premium-promo__media {
    position: relative;
  }

  .premium-promo__media-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .premium-promo__image,
  .premium-promo__placeholder {
    display: block;
    border-radius: var(--image-radius);
    overflow: hidden;
    background: #111111;
  }

  .premium-promo__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.35s ease;
  }

  .premium-promo__media-link:hover .premium-promo__img {
    transform: scale(1.02);
  }

  .premium-promo__placeholder {
    aspect-ratio: 4 / 3;
  }

  @media (max-width: 989px) {
    .premium-promo__inner {
      grid-template-columns: minmax(0, 1fr);
    }

    .premium-promo--left .premium-promo__content,
    .premium-promo--right .premium-promo__content,
    .premium-promo--left .premium-promo__media,
    .premium-promo--right .premium-promo__media {
      order: unset;
    }

    .premium-promo__content {
      max-width: none;
    }

    .premium-promo__buttons {
      width: 100%;
    }

    .premium-promo__button {
      flex: 1 1 auto;
      text-align: center;
    }
  }
/* END_SECTION:premium-promo-banner */

/* START_SECTION:product-list (INDEX:58) */
.section-id-{{ section.id }} {
    --card-radius: 12px;
    --accent: #d4af37;
  }

  .section-id-{{ section.id }} .product-grid {
    gap: clamp(16px, 3vw, 28px);
  }

  .section-id-{{ section.id }} .product-block .block-inner {
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--card-radius);
    box-shadow: none;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
  }

  .section-id-{{ section.id }} .product-block:hover .block-inner {
    border-color: #d4af37;
    transform: translateY(-3px);
  }

  .section-id-{{ section.id }} .product-block .image-cont {
    background: #000000;
    --aspect-ratio: 0.75;
  }

  .section-id-{{ section.id }} .product-block .image-cont .img-ar::before {
    padding-top: calc(100% / 0.75);
  }

  .section-id-{{ section.id }} .product-block__detail .inner {
    padding: 18px 18px 22px;
  }

  .section-id-{{ section.id }} .product-block__title {
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
  }

  .section-id-{{ section.id }} .product-price {
    font-size: 1rem;
    color: #d4af37;
  }

  .section-id-{{ section.id }} .product-block__subtitle,
  .section-id-{{ section.id }} .vendor {
    opacity: 0.75;
  }

  .section-id-{{ section.id }} .product-label {
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(0, 0, 0, 0.85);
    color: #d4af37;
    letter-spacing: 1px;
  }

  @media (max-width: 749px) {
    .section-id-{{ section.id }} .product-grid {
      gap: 16px;
    }

    .section-id-{{ section.id }} .product-block__detail .inner {
      padding: 14px 14px 18px;
    }

    .section-id-{{ section.id }} .product-block__title {
      font-size: 0.9rem;
      letter-spacing: 0.8px;
    }
  }
/* END_SECTION:product-list */

/* START_SECTION:related-products (INDEX:60) */
.related-products .fully-spaced-row {
    margin-top: clamp(26px, 4vw, 42px);
    margin-bottom: clamp(32px, 4vw, 54px);
  }

  .related-products--style-carousel .hometitle {
    margin: 0;
    text-align: start;
  }

  .related-products--style-carousel .collection-listing.related-collection {
    margin-top: 6px;
  }

  .related-products--style-carousel .product-grid {
    --gutter: clamp(10px, 1.5vw, 16px);
  }

  .related-products--style-carousel .slider__item {
    border: 1px solid rgba(17, 17, 17, 0.16);
    border-radius: 10px;
    background: #ffffff;
    padding: 12px 12px 10px;
    min-height: 100%;
  }

  .related-products--style-carousel .product-block,
  .related-products--style-carousel .product-block .block-inner {
    height: 100%;
  }

  .related-products--style-carousel .product-block .image-cont {
    border-radius: 8px;
    background: #ffffff;
  }

  .related-products--style-carousel .product-block .image-cont .img-ar::before {
    padding-top: calc(100% / max(var(--aspect-ratio), 0.82));
  }

  .related-products--style-carousel .product-grid .product-block__detail {
    margin-bottom: 4px;
    margin-top: 8px;
  }

  .related-products--style-carousel .product-grid .product-block__title {
    font-size: 0.95rem;
    line-height: 1.32;
    min-height: 2.55em;
  }

  .related-products--style-carousel .product-grid .product-price--block {
    font-size: 0.96rem;
  }

  .related-products--style-carousel .product-grid .product-block-options {
    margin-top: 2px;
  }

  @media (max-width: 767.98px) {
    .related-products .fully-spaced-row {
      margin-top: 20px;
      margin-bottom: 28px;
    }

    .related-products--style-carousel .hometitle {
      font-size: 1.65rem;
      text-align: center;
      width: 100%;
    }

    .related-products--style-carousel .slider-nav {
      display: none;
    }

    .related-products--style-carousel .product-grid {
      --gutter: 10px;
    }

    .related-products--style-carousel .slider__item {
      padding: 9px 9px 8px;
      border-radius: 9px;
    }

    .related-products--style-carousel .product-grid .product-block__detail {
      margin-bottom: 6px;
    }

    .related-products--style-carousel .product-grid .product-block__title {
      font-size: 0.9rem;
    }
  }
/* END_SECTION:related-products */

/* START_SECTION:rich-text (INDEX:61) */
#section-id-{{ section.id }} .majortitle {
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  #section-id-{{ section.id }} .rte {
    opacity: 0.85;
    line-height: 1.8;
  }

  #section-id-{{ section.id }} .spaced-column {
    gap: 18px;
  }

  #section-id-{{ section.id }} .rte strong {
    color: rgb(var(--text-color));
  }

  #section-id-{{ section.id }} .rte p + p {
    margin-top: 16px;
  }

  #section-id-{{ section.id }} .rte {
    max-width: 720px;
    margin: 0 auto;
  }

  .section-rich-text .rich-text-map {
    width: min(100%, 920px);
    margin: 8px auto 0;
    border: 1px solid rgba(var(--text-color), 0.18);
    border-radius: 14px;
    overflow: hidden;
  }

  .section-rich-text .rich-text-map iframe {
    display: block;
    width: 100%;
    height: max(240px, var(--map-height));
    border: 0;
  }

  .section-rich-text .rich-text--with-map {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #0b0b0b;
  }

  .section-rich-text .rich-text--with-map::before {
    content: none;
  }

  .section-rich-text .rich-text--with-map::after {
    content: none;
  }

  .section-rich-text .rich-text--with-map > .container {
    position: relative;
    z-index: 2;
  }

  .section-rich-text .rich-text--with-map .spaced-column {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 480px) minmax(420px, 600px);
    gap: 16px clamp(24px, 4vw, 52px);
    align-items: start;
    justify-content: center;
    max-width: 1140px;
    margin: 0 auto;
  }

  .section-rich-text .rich-text--with-map .spaced-column::before {
    content: '';
    position: absolute;
    top: -12px;
    bottom: -12px;
    left: -16px;
    right: 52%;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.3));
    pointer-events: none;
    z-index: 0;
  }

  .section-rich-text .rich-text--with-map .spaced-column > * {
    position: relative;
    z-index: 1;
  }

  .section-rich-text .rich-text--with-map .majortitle,
  .section-rich-text .rich-text--with-map .subheading {
    grid-column: 1;
    margin-bottom: 4px;
    text-align: left;
  }

  .section-rich-text .rich-text--with-map .rte {
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .section-rich-text .rich-text--with-map .rte a[href^='tel:'] {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.2em;
    text-decoration: none;
  }

  .section-rich-text .rich-text--with-map .rte a[href^='tel:']:hover {
    text-decoration: underline;
  }

  .section-rich-text .rich-text--with-map .rte em {
    font-size: 0.9em;
    font-style: italic;
    opacity: 0.72;
  }

  .section-rich-text .rich-text--with-map .rich-text-map {
    grid-column: 2;
    grid-row: 1 / span 6;
    width: 100%;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(var(--text-color), 0.16);
    background: rgba(8, 8, 8, 0.88);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.52);
  }

  .section-rich-text .rich-text--with-map .rich-text-map iframe {
    min-height: 460px;
    border-radius: 10px;
  }

  .section-rich-text .rich-text--with-map .rich-text-map__media-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
  }

  .section-rich-text .rich-text--with-map .rich-text-map__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .section-rich-text .rich-text--with-map .rich-text-map__caption {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.4;
    opacity: 0.82;
  }

  .section-rich-text .rich-text--with-map .button-row {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
  }

  .section-rich-text .rich-text--with-map .button-row .button-row__btn {
    margin: 0;
    min-width: 236px;
  }

  @media (max-width: 1120px) {
    .section-rich-text .rich-text--with-map .spaced-column::before {
      left: -10px;
      right: -10px;
      top: -10px;
      bottom: auto;
      height: 54%;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.3));
    }

    .section-rich-text .rich-text--with-map .spaced-column {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .section-rich-text .rich-text--with-map .majortitle,
    .section-rich-text .rich-text--with-map .subheading,
    .section-rich-text .rich-text--with-map .button-row,
    .section-rich-text .rich-text--with-map .rich-text-map {
      grid-column: auto;
      grid-row: auto;
    }

    .section-rich-text .rich-text--with-map .rich-text-map {
      padding: 8px;
    }

    .section-rich-text .rich-text--with-map .rich-text-map iframe {
      min-height: 320px;
    }

    .section-rich-text .rich-text--with-map .button-row .button-row__btn {
      min-width: 0;
      width: 100%;
    }
  }
/* END_SECTION:rich-text */