/** Shopify CDN: Minification failed

Line 249:14 Unexpected "{"
Line 249:23 Expected ":"
Line 249:30 Unexpected "{"
Line 250:14 Unexpected "{"
Line 250:23 Expected ":"
Line 254:14 Unexpected "{"
Line 254:23 Expected ":"
Line 257:14 Unexpected "{"
Line 257:23 Expected ":"
Line 258:14 Unexpected "{"
... and 356 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-anniversary-story (INDEX:12) */
.anniv-story {
    background-color: var(--anniv-bg);
    padding: var(--anniv-pad-top-d) var(--anniv-pad-x) var(--anniv-pad-bottom-d);
    box-sizing: border-box;
    width: 100%;
  }

  .anniv-story__container {
    max-width: var(--anniv-max-width);
    margin: 0 auto;
  }

  .anniv-story__media {
    position: relative;
    aspect-ratio: var(--anniv-img-aspect);
    overflow: hidden;
    background-color: #F5F5F5;
    margin-bottom: var(--anniv-gap-image-text);
  }

  .anniv-story__img,
  .anniv-story__img--placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .anniv-story__title-wrap {
    position: absolute;
    top: var(--anniv-title-y);
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 2;
  }

  .anniv-story__title {
    font-family: var(--font-heading-family), serif;
    font-size: var(--anniv-title-size-d);
    font-weight: var(--anniv-title-weight);
    font-style: var(--anniv-title-style);
    color: var(--anniv-title-color);
    line-height: var(--anniv-title-lh);
    margin: 0;
  }

  .anniv-story__text {
    text-align: center;
  }

  .anniv-story__paragraph {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--anniv-text-size-d);
    line-height: var(--anniv-text-lh);
    color: var(--anniv-text-color);
    margin: 0 0 var(--anniv-gap-paragraphs) 0;
  }

  .anniv-story__paragraph:last-child {
    margin-bottom: 0;
  }

  .anniv-story__signature {
    text-align: center;
    font-family: 'Great Vibes', var(--font-heading-family), cursive;
    font-size: var(--anniv-sig-size);
    font-style: var(--anniv-sig-style);
    color: var(--anniv-sig-color);
    margin: var(--anniv-gap-text-signature) 0 0 0;
    font-weight: 400;
    line-height: 1.1;
  }

  @media (max-width: 749px) {
    .anniv-story {
      padding: var(--anniv-pad-top-m) var(--anniv-pad-x) var(--anniv-pad-bottom-m);
    }
    .anniv-story__title {
      font-size: var(--anniv-title-size-m);
    }
    .anniv-story__paragraph {
      font-size: var(--anniv-text-size-m);
    }
  }
/* END_SECTION:custom-anniversary-story */

/* START_SECTION:custom-announcement-bar (INDEX:13) */
.announcement-bar {
    background-color: var(--ab-bg);
    color: var(--ab-text);
    padding: var(--ab-padding-v) var(--ab-padding-h);
    box-sizing: border-box;
    width: 100%;
  }

  .announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--ab-gap-desktop);
    text-decoration: none;
    color: inherit;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .announcement-bar__inner--link {
    transition: opacity 0.2s ease;
  }

  .announcement-bar__inner--link:hover {
    opacity: 0.8;
  }

  .announcement-bar__primary,
  .announcement-bar__secondary {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--ab-size-desktop);
    letter-spacing: var(--ab-spacing);
    text-transform: var(--ab-transform);
    line-height: 1.4;
    color: var(--ab-text);
  }

  .announcement-bar__primary {
    font-weight: var(--ab-weight-primary);
  }

  .announcement-bar__secondary {
    font-weight: var(--ab-weight-secondary);
  }

  @media (max-width: 749px) {
    .announcement-bar__inner {
      flex-direction: column;
      gap: var(--ab-gap-mobile);
    }
    .announcement-bar__primary,
    .announcement-bar__secondary {
      font-size: var(--ab-size-mobile);
    }
  }
/* END_SECTION:custom-announcement-bar */

/* START_SECTION:custom-collection-chips (INDEX:14) */
.collection-chips {
    background-color: var(--chips-bg);
    padding: var(--chips-pad-top) var(--chips-pad-x) var(--chips-pad-bottom);
    box-sizing: border-box;
    width: 100%;
  }

  .collection-chips__container {
    max-width: var(--chips-max-width);
    margin: 0 auto;
  }

  .collection-chips__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--chips-gap-desktop);
  }

  .collection-chips__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--chip-bg);
    color: var(--chip-text);
    border: var(--chip-border-width) solid var(--chip-border);
    border-radius: var(--chip-radius);
    padding: var(--chip-pad-v) var(--chip-pad-h);
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--chip-font-size);
    font-weight: var(--chip-font-weight);
    letter-spacing: var(--chip-spacing);
    text-transform: var(--chip-transform);
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
    cursor: pointer;
  }

  .collection-chips__chip:hover,
  .collection-chips__chip:focus-visible {
    background-color: var(--chip-bg-hover);
    color: var(--chip-text-hover);
  }

  @media (max-width: 749px) {
    .collection-chips__grid {
      justify-content: flex-start;
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      gap: var(--chips-gap-mobile);
      padding: 4px var(--chips-pad-x);
      margin: -4px calc(-1 * var(--chips-pad-x));
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .collection-chips__grid::-webkit-scrollbar {
      display: none;
    }

    .collection-chips__chip {
      flex-shrink: 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .collection-chips__chip {
      transition: none;
    }
  }
/* END_SECTION:custom-collection-chips */

/* START_SECTION:custom-collection-list (INDEX:16) */
.rh-colllist-{{ section.id }} { max-width: 122rem; margin: 0 auto; padding: 4rem 2rem; }
.rh-colllist-{{ section.id }} .rh-colllist__heading {
  font-family: var(--font-heading-family); font-weight: 400;
  font-size: 3rem; letter-spacing: 0.08em; text-align: center; margin: 0 0 3rem;
}
.rh-colllist-{{ section.id }} .rh-colllist__grid {
  display: grid; grid-template-columns: repeat({{ section.settings.columns_desktop }}, 1fr); gap: 1.8rem;
}
.rh-colllist-{{ section.id }} .rh-colllist__card { display: block; text-decoration: none; color: inherit; }
.rh-colllist-{{ section.id }} .rh-colllist__media {
  position: relative; aspect-ratio: {{ section.settings.image_ratio }};
  overflow: hidden; background: #ececec; display: flex; align-items: center; justify-content: center;
}
.rh-colllist-{{ section.id }} .rh-colllist__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.rh-colllist-{{ section.id }} .rh-colllist__card:hover .rh-colllist__img { transform: scale(1.04); }
.rh-colllist-{{ section.id }} .rh-colllist__label {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: {{ section.settings.label_bg }}; color: {{ section.settings.label_text }};
  font-family: var(--font-body-family); font-size: 1.6rem; line-height: 1.3;
  padding: 0.8rem 1.8rem; text-align: center; max-width: 82%; white-space: nowrap;
}
.rh-colllist-{{ section.id }} .rh-colllist__title-below {
  display: block; padding-top: 1.2rem; text-align: center;
  font-family: var(--font-body-family); font-size: 1.6rem; color: #1a1a1a;
}
.rh-colllist-{{ section.id }} .rh-colllist__card:hover .rh-colllist__title-below { text-decoration: underline; }

@media (max-width: 749px) {
  .rh-colllist-{{ section.id }} { padding: 3rem 1.5rem; }
  .rh-colllist-{{ section.id }} .rh-colllist__heading { font-size: 2.2rem; margin-bottom: 2.4rem; }
  .rh-colllist-{{ section.id }} .rh-colllist__grid {
    grid-template-columns: repeat({{ section.settings.columns_mobile }}, 1fr); gap: 1.6rem;
  }
  .rh-colllist-{{ section.id }} .rh-colllist__label { font-size: 1.4rem; white-space: normal; padding: 0.7rem 1.3rem; }
}
/* END_SECTION:custom-collection-list */

/* START_SECTION:custom-collection-selector (INDEX:17) */
.collection-selector {
    background-color: var(--sel-bg);
    padding: var(--sel-pad-top-d) var(--sel-pad-x) var(--sel-pad-bottom-d);
    box-sizing: border-box;
    width: 100%;
  }

  .collection-selector__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .collection-selector__title {
    font-family: var(--font-heading-family), serif;
    font-size: var(--sel-title-size-d);
    font-weight: var(--sel-title-weight);
    letter-spacing: var(--sel-title-spacing);
    text-transform: var(--sel-title-transform);
    color: var(--sel-title-color);
    text-align: center;
    margin: 0 0 32px 0;
    line-height: 1.2;
  }

  .collection-selector__grid {
    display: grid;
    grid-template-columns: repeat(var(--sel-cols-desktop), 1fr);
    gap: var(--sel-card-gap);
  }

  .collection-selector__card {
    display: block;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
  }

  .collection-selector__card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .collection-selector__card:nth-child(2) { transition-delay: 0.1s; }
  .collection-selector__card:nth-child(3) { transition-delay: 0.2s; }
  .collection-selector__card:nth-child(4) { transition-delay: 0.3s; }
  .collection-selector__card:nth-child(5) { transition-delay: 0.4s; }

  .collection-selector--no-animation .collection-selector__card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  @media (prefers-reduced-motion: reduce) {
    .collection-selector__card {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  .collection-selector__card:hover .collection-selector__image {
    transform: scale(1.03);
  }

  .collection-selector__media {
    position: relative;
    aspect-ratio: var(--sel-aspect);
    overflow: hidden;
    background-color: #F5F5F5;
  }

  .collection-selector__image,
  .collection-selector__image--placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .collection-selector__label {
    position: absolute;
    top: var(--sel-label-y);
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--sel-label-bg);
    color: var(--sel-label-text);
    padding: var(--sel-label-pad-v) var(--sel-label-pad-h);
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--sel-label-size);
    font-weight: var(--sel-label-weight);
    text-transform: var(--sel-label-transform);
    line-height: 1.3;
    white-space: nowrap;
    max-width: calc(100% - 24px);
    text-align: center;
    box-sizing: border-box;
  }

  @media (max-width: 749px) {
    .collection-selector {
      padding: var(--sel-pad-top-m) var(--sel-pad-x) var(--sel-pad-bottom-m);
    }
    .collection-selector__title {
      font-size: var(--sel-title-size-m);
    }
    .collection-selector__grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .collection-selector__label {
      font-size: calc(var(--sel-label-size) - 1px);
      padding: calc(var(--sel-label-pad-v) - 2px) calc(var(--sel-label-pad-h) - 4px);
      white-space: normal;
    }
  }
/* END_SECTION:custom-collection-selector */

/* START_SECTION:custom-collection-showcase (INDEX:18) */
.collection-showcase {
    background-color: var(--cs-bg);
    padding: var(--cs-pad-top-d) var(--cs-pad-x) var(--cs-pad-bottom-d);
    box-sizing: border-box;
    width: 100%;
  }

  .collection-showcase__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .collection-showcase__title {
    font-family: var(--font-heading-family), serif;
    font-size: var(--cs-title-size-d);
    font-weight: var(--cs-title-weight);
    letter-spacing: var(--cs-title-spacing);
    text-transform: var(--cs-title-transform);
    color: var(--cs-title-color);
    text-align: center;
    margin: 0 0 32px 0;
    line-height: 1.2;
  }

  .collection-showcase__grid {
    display: grid;
    grid-template-columns: repeat(var(--cs-cols-desktop), 1fr);
    gap: var(--cs-card-gap);
  }

  .collection-showcase__card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
  }

  .collection-showcase__card:hover {
    opacity: 0.85;
  }

  .collection-showcase__media {
    position: relative;
    aspect-ratio: var(--cs-aspect);
    overflow: hidden;
    background-color: #F5F5F5;
    margin-bottom: 12px;
  }

  .collection-showcase__image,
  .collection-showcase__image--placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .collection-showcase__badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--cs-badge-bg);
    color: var(--cs-badge-text);
    padding: 4px 12px;
    font-family: var(--font-body-family), sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 2;
    line-height: 1.4;
  }

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

  .collection-showcase__product-title {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--cs-product-title-size);
    font-weight: var(--cs-product-title-weight);
    color: var(--cs-product-title-color);
    margin: 0 0 6px 0;
    line-height: 1.3;
  }

  .collection-showcase__prices {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--cs-price-size);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .collection-showcase__price {
    color: var(--cs-price-color);
    font-weight: 500;
  }

  .collection-showcase__price-sale {
    color: var(--cs-price-sale-color);
    font-weight: 600;
  }

  .collection-showcase__price-compare {
    color: var(--cs-price-compare-color);
    text-decoration: line-through;
    font-weight: 400;
  }

  .collection-showcase__cta {
    text-align: center;
    margin-top: 40px;
  }

  .collection-showcase__button {
    display: inline-block;
    background-color: var(--cs-btn-bg);
    color: var(--cs-btn-text);
    padding: 14px 40px;
    font-family: var(--font-body-family), sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .collection-showcase__button:hover {
    opacity: 0.85;
  }

  @media (max-width: 749px) {
    .collection-showcase {
      padding: var(--cs-pad-top-m) 0 var(--cs-pad-bottom-m);
    }

    .collection-showcase__container {
      padding: 0;
    }

    .collection-showcase__title {
      font-size: var(--cs-title-size-m);
      margin: 0 var(--cs-pad-x) 24px;
    }

    .collection-showcase__grid {
      display: flex;
      grid-template-columns: none;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 0 var(--cs-pad-x);
      gap: var(--cs-card-gap);
    }

    .collection-showcase__grid::-webkit-scrollbar {
      display: none;
    }

    .collection-showcase__card {
      flex: 0 0 auto;
      width: min(65vw, 280px);
      scroll-snap-align: start;
    }

    .collection-showcase__cta {
      margin: 32px var(--cs-pad-x) 0;
    }
  }
/* END_SECTION:custom-collection-showcase */

/* START_SECTION:custom-countdown-bar (INDEX:19) */
.countdown-bar {
    background-color: var(--cb-bg);
    color: var(--cb-text);
    padding: var(--cb-pad-v) var(--cb-pad-h);
    box-sizing: border-box;
    width: 100%;
  }

  .countdown-bar__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
  }

  .countdown-bar__label {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--cb-font-size);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cb-text);
    line-height: 1.4;
  }

  .countdown-bar__timer {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--cb-font-size);
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    color: var(--cb-text);
    white-space: nowrap;
  }

  .countdown-bar__timer strong {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
  }

  .countdown-bar__unit {
    font-size: calc(var(--cb-font-size) * 0.72);
    opacity: 0.7;
    color: var(--cb-accent);
  }

  .countdown-bar__sep {
    font-weight: 700;
    opacity: 0.9;
  }

  @media (max-width: 749px) {
    .countdown-bar__inner {
      gap: 8px;
    }
    .countdown-bar__label,
    .countdown-bar__timer {
      font-size: calc(var(--cb-font-size) * 0.9);
    }
  }
/* END_SECTION:custom-countdown-bar */

/* START_SECTION:custom-faq (INDEX:20) */
.faq-section {
    background-color: var(--faq-bg);
    padding: var(--faq-pad-top-d) var(--faq-pad-x) var(--faq-pad-bottom-d);
    box-sizing: border-box;
    width: 100%;
  }

  .faq-section__container {
    max-width: var(--faq-max-width);
    margin: 0 auto;
  }

  .faq-section__title {
    font-family: var(--font-heading-family), serif;
    font-size: var(--faq-title-size-d);
    font-weight: var(--faq-title-weight);
    color: var(--faq-title-color);
    text-align: center;
    margin: 0 0 32px 0;
    line-height: 1.2;
  }

  .faq-section__list {
    border-top: 1px solid var(--faq-border);
  }

  .faq-section__item {
    border-bottom: 1px solid var(--faq-border);
  }

  .faq-section__question-wrap {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
  }

  .faq-section__toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: var(--faq-item-pad-v) var(--faq-item-pad-h);
    background: transparent;
    border: none;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
  }

  .faq-section__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--faq-icon-color);
  }

  .faq-section__icon svg {
    width: 100%;
    height: 100%;
  }

  .faq-section__question {
    flex: 1;
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--faq-question-size);
    font-weight: var(--faq-question-weight);
    color: var(--faq-text);
    line-height: 1.4;
  }

  .faq-section__chevron {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--faq-chevron-color);
    transition: transform 0.3s ease;
  }

  .faq-section__chevron svg {
    width: 100%;
    height: 100%;
  }

  .faq-section__item[data-expanded="true"] .faq-section__chevron {
    transform: rotate(180deg);
  }

  .faq-section__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
  }

  .faq-section__content-inner {
    min-height: 0;
    overflow: hidden;
  }

  .faq-section__item[data-expanded="true"] .faq-section__content {
    grid-template-rows: 1fr;
  }

  .faq-section__content-inner {
    padding: 0 var(--faq-item-pad-h);
  }

  .faq-section__item[data-expanded="true"] .faq-section__content-inner {
    padding-bottom: var(--faq-item-pad-v);
  }

  .faq-section__content-inner p {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--faq-answer-size);
    line-height: var(--faq-answer-lh);
    color: var(--faq-answer-color);
    margin: 0 0 14px 0;
  }

  .faq-section__content-inner p:last-child {
    margin-bottom: 0;
  }

  .faq-section__content-inner strong {
    font-weight: 700;
  }

  .faq-section__content-inner a {
    color: inherit;
    text-decoration: underline;
  }

  @media (max-width: 749px) {
    .faq-section {
      padding: var(--faq-pad-top-m) var(--faq-pad-x) var(--faq-pad-bottom-m);
    }
    .faq-section__title {
      font-size: var(--faq-title-size-m);
      margin-bottom: 24px;
    }
    .faq-section__toggle {
      gap: 10px;
      padding: calc(var(--faq-item-pad-v) - 2px) 4px;
    }
    .faq-section__content-inner {
      padding: 0 4px;
    }
    .faq-section__item[data-expanded="true"] .faq-section__content-inner {
      padding-bottom: calc(var(--faq-item-pad-v) - 2px);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .faq-section__content,
    .faq-section__chevron {
      transition: none;
    }
  }
/* END_SECTION:custom-faq */

/* START_SECTION:custom-featured-products (INDEX:21) */
.rh-featprod-{{ section.id }} { max-width: 122rem; margin: 0 auto; padding: 4rem 2rem; }
.rh-featprod-{{ section.id }} .rh-featprod__heading {
  font-family: var(--font-heading-family); font-weight: 400;
  font-size: 3rem; letter-spacing: 0.08em; text-align: center; margin: 0 0 2rem;
}
.rh-featprod-{{ section.id }} .rh-featprod__topbtn { text-align: center; margin: 0 0 3rem; }
.rh-featprod-{{ section.id }} .rh-featprod__grid {
  display: grid; grid-template-columns: repeat({{ section.settings.columns_desktop }}, 1fr); gap: 2.6rem 1.8rem;
}
.rh-featprod-{{ section.id }} .rh-featprod__card { position: relative; }
.rh-featprod-{{ section.id }} .rh-featprod__media-link { display: block; text-decoration: none; }
.rh-featprod-{{ section.id }} .rh-featprod__media {
  position: relative; aspect-ratio: {{ section.settings.image_ratio }};
  overflow: hidden; background: #ececec;
}
.rh-featprod-{{ section.id }} .rh-featprod__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: opacity 0.3s ease;
}
.rh-featprod-{{ section.id }} .rh-featprod__img--secondary { opacity: 0; }
.rh-featprod-{{ section.id }} .rh-featprod__card:hover .rh-featprod__img--secondary { opacity: 1; }
.rh-featprod-{{ section.id }} .rh-featprod__badge {
  position: absolute; top: 0; right: 0; z-index: 2;
  background: {{ section.settings.badge_bg }}; color: {{ section.settings.badge_text_color }};
  font-family: var(--font-body-family); font-size: 1.3rem;
  padding: 0.5rem 1.1rem; line-height: 1;
}
.rh-featprod-{{ section.id }} .rh-featprod__info { padding-top: 1.4rem; text-align: {{ section.settings.text_alignment }}; }
.rh-featprod-{{ section.id }} .rh-featprod__title {
  display: block; font-family: var(--font-body-family); font-size: 1.6rem;
  line-height: 1.4; color: #2a2a3a; text-decoration: none; margin-bottom: 0.6rem;
}
.rh-featprod-{{ section.id }} .rh-featprod__title:hover { text-decoration: underline; }
.rh-featprod-{{ section.id }} .rh-featprod__prices {
  display: flex; gap: 0.9rem; justify-content: {{ section.settings.text_alignment }};
  align-items: baseline; font-size: 1.5rem;
}
.rh-featprod-{{ section.id }} .rh-featprod__price--compare { color: #8a8a8a; }
.rh-featprod-{{ section.id }} .rh-featprod__price--sale { color: {{ section.settings.sale_price_color }}; font-weight: 600; }
.rh-featprod-{{ section.id }} .rh-featprod__footer { text-align: center; margin-top: 3.5rem; }
.rh-featprod-{{ section.id }} .rh-featprod__viewall {
  display: inline-block; padding: 1.3rem 4rem; font-family: var(--font-body-family);
  font-size: 1.4rem; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.rh-featprod-{{ section.id }} .rh-featprod__viewall--filled { background: #111; color: #fff; }
.rh-featprod-{{ section.id }} .rh-featprod__viewall--filled:hover { opacity: 0.85; }
.rh-featprod-{{ section.id }} .rh-featprod__viewall--outline { border: 1px solid #111; color: #111; padding-top: 1rem; padding-bottom: 1rem; }
.rh-featprod-{{ section.id }} .rh-featprod__viewall--outline:hover { background: #111; color: #fff; }

@media (max-width: 749px) {
  .rh-featprod-{{ section.id }} { padding: 3rem 1.5rem; }
  .rh-featprod-{{ section.id }} .rh-featprod__heading { font-size: 2.2rem; margin-bottom: 1.6rem; }
  .rh-featprod-{{ section.id }} .rh-featprod__grid {
    grid-template-columns: repeat({{ section.settings.columns_mobile }}, 1fr); gap: 2rem 1.2rem;
  }
  .rh-featprod-{{ section.id }} .rh-featprod__title, .rh-featprod-{{ section.id }} .rh-featprod__prices { font-size: 1.4rem; }
}
/* END_SECTION:custom-featured-products */

/* START_SECTION:custom-footer-nico (INDEX:22) */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: var(--footer-pad-top) var(--footer-pad-x) var(--footer-pad-bottom);
    box-sizing: border-box;
    width: 100%;
    font-family: var(--font-body-family), sans-serif;
  }

  .site-footer__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .site-footer__columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--footer-col-gap);
  }

  .site-footer__column {
    color: var(--footer-text);
  }

  /* Contact column */
  .site-footer__schedule {
    margin: 0 0 12px 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .site-footer__schedule strong {
    font-weight: 700;
  }

  .site-footer__message {
    margin: 20px 0 20px 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .site-footer__contact-item {
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
  }

  .site-footer__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .site-footer__contact-icon svg {
    width: 100%;
    height: 100%;
  }

  .site-footer__contact-item a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .site-footer__contact-item a:hover {
    color: var(--footer-link-hover);
  }

  /* Column heading (accordion header on mobile, plain title on desktop) */
  .site-footer__column-heading {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-size: inherit;
  }

  .site-footer__toggle {
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: default;
    pointer-events: none;
    position: relative;
    display: block;
    margin: 0 0 24px 0;
  }

  .site-footer__column-title {
    font-family: var(--font-heading-family), serif;
    font-size: var(--footer-title-size);
    font-weight: var(--footer-title-weight);
    letter-spacing: var(--footer-title-spacing);
    text-transform: var(--footer-title-transform);
    color: var(--footer-title-color);
    display: inline-block;
    line-height: 1.3;
  }

  .site-footer__chevron {
    display: none;
  }

  /* Menu list */
  .site-footer__accordion-content {
    display: block;
  }

  .site-footer__accordion-inner {
    /* no padding on desktop, gap comes from toggle margin-bottom */
  }

  .site-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .site-footer__menu li {
    margin-bottom: 14px;
  }

  .site-footer__menu li:last-child {
    margin-bottom: 0;
  }

  .site-footer__menu a {
    color: var(--footer-link);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
  }

  .site-footer__menu a:hover {
    color: var(--footer-link-hover);
  }

  .site-footer__menu-empty {
    color: var(--footer-text);
    opacity: 0.5;
    font-size: 14px;
    font-style: italic;
  }

  .site-footer__about-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
  }

  /* Bottom: payments + copyright */
  .site-footer__bottom {
    margin-top: var(--footer-content-bottom-gap);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .site-footer__payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .site-footer__payment-icon {
    display: inline-flex;
  }

  .site-footer__payment-svg {
    width: 38px;
    height: auto;
    display: block;
  }

  .site-footer__copyright {
    margin: 0;
    font-size: 14px;
    color: var(--footer-text);
    text-align: center;
  }

  /* MOBILE */
  @media (max-width: 749px) {
    .site-footer__columns {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .site-footer__column {
      text-align: center;
    }

    .site-footer__column--contact {
      padding-bottom: 24px;
    }

    .site-footer__contact-item {
      justify-content: center;
    }

    /* Accordion behavior */
    .site-footer__column--accordion {
      border-top: 1px solid var(--footer-border);
    }

    .site-footer__toggle {
      padding: 20px 30px;
      text-align: center;
      cursor: pointer;
      pointer-events: auto;
      margin: 0;
    }

    .site-footer__chevron {
      display: block;
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--footer-text);
      transition: transform 0.3s ease;
    }

    .site-footer__column[data-expanded="true"] .site-footer__chevron {
      transform: translateY(-50%) rotate(180deg);
    }

    .site-footer__accordion-content {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.35s ease;
    }

    .site-footer__accordion-inner {
      min-height: 0;
      overflow: hidden;
    }

    .site-footer__column[data-expanded="true"] .site-footer__accordion-content {
      grid-template-rows: 1fr;
    }

    .site-footer__column[data-expanded="true"] .site-footer__accordion-inner {
      padding-bottom: 24px;
    }

    .site-footer__menu li {
      margin-bottom: 12px;
    }

    /* Bottom on mobile: same block, add top border */
    .site-footer__bottom {
      padding-top: 32px;
      border-top: 1px solid var(--footer-border);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .site-footer__accordion-content,
    .site-footer__chevron,
    .site-footer__menu a,
    .site-footer__contact-item a {
      transition: none;
    }
  }
/* END_SECTION:custom-footer-nico */

/* START_SECTION:custom-footer (INDEX:23) */
.rh-footer-{{ section.id }} { padding: 5rem 2rem 2.5rem; }
.rh-footer-{{ section.id }} .rh-footer__inner {
  max-width: 122rem; margin: 0 auto;
  display: grid; grid-template-columns: repeat({{ section.blocks.size }}, 1fr);
  gap: 4rem; padding-bottom: 3.5rem;
}
.rh-footer-{{ section.id }} .rh-footer__title {
  font-family: var(--font-heading-family); font-weight: 400;
  font-size: 1.5rem; letter-spacing: 0.22em; text-transform: uppercase;
  margin: 0 0 1.8rem; color: inherit; background: none; border: none;
  padding: 0; text-align: left; width: 100%; cursor: default;
  display: flex; align-items: center; justify-content: space-between;
}
.rh-footer-{{ section.id }} .rh-footer__chev { display: none; }
.rh-footer-{{ section.id }} .rh-footer__body { display: block; }
.rh-footer-{{ section.id }} .rh-footer__menu { list-style: none; margin: 0; padding: 0; }
.rh-footer-{{ section.id }} .rh-footer__menu li { margin-bottom: 1rem; }
.rh-footer-{{ section.id }} .rh-footer__link { color: inherit; font-size: 1.4rem; text-decoration: none; opacity: 0.9; }
.rh-footer-{{ section.id }} .rh-footer__link:hover { opacity: 1; text-decoration: underline; }
.rh-footer-{{ section.id }} .rh-footer__rich { font-family: var(--font-body-family); font-size: 1.4rem; line-height: 1.75; opacity: 0.92; }
.rh-footer-{{ section.id }} .rh-footer__rich p { margin: 0 0 1.2rem; }
.rh-footer-{{ section.id }} .rh-footer__rich a { color: inherit; }
.rh-footer-{{ section.id }} .rh-footer__bottom {
  max-width: 122rem; margin: 0 auto; border-top: 1px solid rgba(160,160,160,0.28);
  padding-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
}
.rh-footer-{{ section.id }} .rh-footer__payments { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.rh-footer-{{ section.id }} .rh-footer__payment-icon { width: 3.8rem; height: 2.4rem; display: block; }
.rh-footer-{{ section.id }} .rh-footer__copyright { font-size: 1.2rem; opacity: 0.7; margin: 0; text-align: center; }

@media (max-width: 749px) {
  .rh-footer-{{ section.id }} { padding: 3.5rem 1.8rem 2rem; }
  .rh-footer-{{ section.id }} .rh-footer__inner { grid-template-columns: 1fr; gap: 0; padding-bottom: 2.5rem; text-align: center; }
  .rh-footer-{{ section.id }} .rh-footer__col--collapsible {
    border-top: 1px solid rgba(160,160,160,0.28); text-align: left;
  }
  .rh-footer-{{ section.id }} .rh-footer__col--collapsible .rh-footer__title {
    cursor: pointer; justify-content: center; position: relative;
    padding: 1.8rem 2.4rem 1.8rem 0; margin: 0; letter-spacing: 0.18em;
  }
  .rh-footer-{{ section.id }} .rh-footer__col--collapsible .rh-footer__chev {
    display: block; position: absolute; right: 0.2rem; top: 50%;
    width: 0.9rem; height: 0.9rem; border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor; transform: translateY(-70%) rotate(45deg);
    transition: transform 0.25s ease;
  }
  .rh-footer-{{ section.id }} .rh-footer__col--collapsible.is-open .rh-footer__chev { transform: translateY(-30%) rotate(-135deg); }
  .rh-footer-{{ section.id }} .rh-footer__col--collapsible .rh-footer__body {
    display: none; padding-bottom: 1.8rem; text-align: center;
  }
  .rh-footer-{{ section.id }} .rh-footer__col--collapsible.is-open .rh-footer__body { display: block; }
  .rh-footer-{{ section.id }} .rh-footer__col:not(.rh-footer__col--collapsible) { padding: 0 0 2.6rem; }
  .rh-footer-{{ section.id }} .rh-footer__col:not(.rh-footer__col--collapsible) .rh-footer__title { justify-content: center; }
}
/* END_SECTION:custom-footer */

/* START_SECTION:custom-hero-overlay (INDEX:24) */
.hero-overlay {
    position: relative;
    width: 100%;
    min-height: var(--hero-height-desktop);
    padding-top: var(--hero-padding-top);
    padding-bottom: var(--hero-padding-bottom);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: var(--hero-fallback-bg);
    background-image:
      linear-gradient(var(--hero-tint), var(--hero-tint)),
      var(--hero-image-desktop);
    background-size: cover, cover;
    background-position: center center, var(--hero-image-pos-desktop) center;
    background-repeat: no-repeat, no-repeat;
  }

  .hero-overlay__content {
    position: relative;
    text-align: var(--hero-text-align);
    color: var(--hero-text-color);
    padding: 0 24px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-overlay__title {
    font-family: var(--font-heading-family), serif;
    font-size: var(--hero-title-size-desktop);
    font-weight: var(--hero-title-weight);
    letter-spacing: var(--hero-title-spacing);
    color: var(--hero-text-color);
    margin: 0 0 18px 0;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .hero-overlay__subtitle {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--hero-subtitle-size-desktop);
    color: var(--hero-text-color);
    margin: 0 0 32px 0;
    font-weight: 400;
    letter-spacing: 0.5px;
  }

  .hero-overlay__button {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body-family), sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
    box-sizing: border-box;
  }

  .hero-overlay__button--filled {
    background-color: var(--hero-btn-bg);
    color: var(--hero-btn-text);
    border: 1px solid var(--hero-btn-border);
  }

  .hero-overlay__button--outlined {
    background-color: transparent;
    color: var(--hero-btn-text);
    border: 1px solid var(--hero-btn-border);
  }

  .hero-overlay__button--underline {
    background-color: transparent;
    color: var(--hero-btn-text);
    border: none;
    border-bottom: 1px solid var(--hero-btn-border);
    padding: 8px 4px;
  }

  .hero-overlay__button:hover {
    opacity: 0.8;
  }

  @media (max-width: 749px) {
    .hero-overlay {
      min-height: var(--hero-height-mobile);
      background-image:
        linear-gradient(var(--hero-tint), var(--hero-tint)),
        var(--hero-image-mobile);
      background-position: center center, var(--hero-image-pos-mobile) center;
    }
    .hero-overlay__title {
      font-size: var(--hero-title-size-mobile);
      margin-bottom: 14px;
    }
    .hero-overlay__subtitle {
      font-size: var(--hero-subtitle-size-mobile);
      margin-bottom: 24px;
    }
    .hero-overlay__button {
      padding: 12px 26px;
      font-size: 12px;
    }
  }
/* END_SECTION:custom-hero-overlay */

/* START_SECTION:custom-hero-slideshow (INDEX:25) */
.rh-hero-{{ section.id }} { position: relative; overflow: hidden; }
.rh-hero-{{ section.id }} .rh-hero__track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.rh-hero-{{ section.id }} .rh-hero__track::-webkit-scrollbar { display: none; }
.rh-hero-{{ section.id }} .rh-hero__slide {
  position: relative; flex: 0 0 100%; scroll-snap-align: start;
  display: flex; align-items: center; min-height: {{ section.settings.height_desktop }}px;
}
.rh-hero-{{ section.id }} .rh-hero__media { position: absolute; inset: 0; }
.rh-hero-{{ section.id }} .rh-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rh-hero-{{ section.id }} .rh-hero__img--mobile { display: none; }
.rh-hero-{{ section.id }} .rh-hero__overlay { position: absolute; inset: 0; background: #000; }
.rh-hero-{{ section.id }} .rh-hero__content {
  position: relative; z-index: 2; width: 100%; max-width: 120rem;
  margin: 0 auto; padding: 4rem 5rem;
}
.rh-hero-{{ section.id }} .rh-hero__slide--left .rh-hero__content { text-align: left; }
.rh-hero-{{ section.id }} .rh-hero__slide--center .rh-hero__content { text-align: center; }
.rh-hero-{{ section.id }} .rh-hero__slide--right .rh-hero__content { text-align: right; }
.rh-hero-{{ section.id }} .rh-hero__heading {
  font-family: var(--font-heading-family); font-weight: 400;
  font-size: 6.4rem; line-height: 1.05; letter-spacing: 0.06em;
  text-transform: uppercase; margin: 0 0 1.4rem;
}
.rh-hero-{{ section.id }} .rh-hero__subheading {
  font-family: var(--font-body-family); font-size: 2rem;
  letter-spacing: 0.02em; margin: 0 0 2.8rem;
}
.rh-hero-{{ section.id }} .rh-hero__button {
  display: inline-block; padding: 1.3rem 3.2rem;
  background: {{ section.settings.button_bg }}; color: {{ section.settings.button_text }};
  font-family: var(--font-body-family); font-size: 1.4rem;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  transition: opacity 0.2s ease;
}
.rh-hero-{{ section.id }} .rh-hero__button:hover { opacity: 0.85; }
.rh-hero-{{ section.id }} .rh-hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(255,255,255,0.85); border: none; width: 4.4rem; height: 4.4rem;
  border-radius: 50%; cursor: pointer; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
}
.rh-hero-{{ section.id }} .rh-hero__arrow--prev { left: 1.5rem; }
.rh-hero-{{ section.id }} .rh-hero__arrow--next { right: 1.5rem; }
.rh-hero-{{ section.id }} .rh-hero__dots {
  position: absolute; bottom: 1.6rem; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; gap: 0.8rem;
}
.rh-hero-{{ section.id }} .rh-hero__dot {
  width: 1rem; height: 1rem; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.5); cursor: pointer; padding: 0;
}
.rh-hero-{{ section.id }} .rh-hero__dot.is-active { background: #fff; }
.rh-hero-{{ section.id }} .rh-hero__placeholder { background: #e8e8e8; }

@media (max-width: 749px) {
  .rh-hero-{{ section.id }} .rh-hero__img--desktop { display: none; }
  .rh-hero-{{ section.id }} .rh-hero__img--mobile { display: block; }
  .rh-hero-{{ section.id }} .rh-hero__slide { min-height: {{ section.settings.height_mobile }}px; }
  .rh-hero-{{ section.id }} .rh-hero__content { padding: 3rem 2rem; }
  .rh-hero-{{ section.id }} .rh-hero__heading { font-size: 3.6rem; }
  .rh-hero-{{ section.id }} .rh-hero__subheading { font-size: 1.6rem; margin-bottom: 2rem; }
  .rh-hero-{{ section.id }} .rh-hero__button { padding: 1.1rem 2.6rem; font-size: 1.3rem; }
  .rh-hero-{{ section.id }} .rh-hero__arrow { display: none; }
}
/* END_SECTION:custom-hero-slideshow */

/* START_SECTION:custom-image-reviews-slider (INDEX:26) */
.ig-reviews {
    background-color: var(--ig-bg);
    padding: var(--ig-pad-top-d) var(--ig-pad-x) var(--ig-pad-bottom-d);
    box-sizing: border-box;
    width: 100%;
  }

  .ig-reviews__container {
    max-width: 1600px;
    margin: 0 auto;
  }

  .ig-reviews__title {
    font-family: var(--font-heading-family), serif;
    font-size: var(--ig-title-size-d);
    font-weight: var(--ig-title-weight);
    letter-spacing: var(--ig-title-spacing);
    text-transform: var(--ig-title-transform);
    color: var(--ig-title-color);
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.2;
  }

  .ig-reviews__viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .ig-reviews__track {
    display: flex;
    will-change: transform;
    transition: transform var(--ig-transition) ease;
  }

  .ig-reviews__slide {
    flex: 0 0 calc(100% / var(--ig-slides-visible, 5));
    padding: 0 calc(var(--ig-card-gap) / 2);
    box-sizing: border-box;
    opacity: var(--ig-side-opacity);
    transition: opacity var(--ig-transition) ease;
  }

  .ig-reviews__slide.is-active {
    opacity: 1;
  }

  .ig-reviews__card {
    background-color: var(--ig-card-bg);
    border: var(--ig-card-border-width) solid var(--ig-card-border);
    border-radius: var(--ig-card-radius);
    overflow: hidden;
    max-width: var(--ig-card-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
  }

  .ig-reviews__media {
    aspect-ratio: var(--ig-aspect);
    overflow: hidden;
    background-color: #F5F5F5;
    flex-shrink: 0;
  }

  .ig-reviews__image,
  .ig-reviews__image--placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .ig-reviews__body {
    padding: var(--ig-card-pad);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }

  .ig-reviews__stars {
    color: var(--ig-stars-color);
    font-size: var(--ig-stars-size);
    letter-spacing: 3px;
    margin-bottom: 14px;
    line-height: 1;
  }

  .ig-reviews__text {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--ig-review-size);
    line-height: 1.5;
    color: var(--ig-review-color);
    margin: 0 0 16px 0;
    flex: 1;
  }

  .ig-reviews__handle {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--ig-handle-size);
    font-weight: var(--ig-handle-weight);
    color: var(--ig-handle-color);
    margin: 0;
  }

  .ig-reviews__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    flex-wrap: wrap;
  }

  .ig-reviews__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background-color: var(--ig-dots-color);
    opacity: 0.3;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  }

  .ig-reviews__dot.is-active {
    background-color: var(--ig-dots-active);
    opacity: 1;
    transform: scale(1.3);
  }

  .ig-reviews__dot:hover {
    opacity: 0.7;
  }

  @media (max-width: 749px) {
    .ig-reviews {
      padding: var(--ig-pad-top-m) var(--ig-pad-x) var(--ig-pad-bottom-m);
    }
    .ig-reviews__title {
      font-size: var(--ig-title-size-m);
      margin-bottom: 24px;
    }
    .ig-reviews__slide {
      flex: 0 0 var(--ig-mobile-slide-width);
      padding: 0 8px;
    }
    .ig-reviews__text {
      font-size: calc(var(--ig-review-size) - 1px);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ig-reviews__track,
    .ig-reviews__slide,
    .ig-reviews__dot {
      transition: none;
    }
  }
/* END_SECTION:custom-image-reviews-slider */

/* START_SECTION:custom-quantity-discount (INDEX:28) */
.promo-tiers {
    background-color: var(--pt-bg);
    padding: var(--pt-pad-top-d) var(--pt-pad-x) var(--pt-pad-bottom-d);
    box-sizing: border-box;
    width: 100%;
  }

  .promo-tiers__container {
    max-width: var(--pt-max-width);
    margin: 0 auto;
    text-align: center;
  }

  .promo-tiers__subtitle {
    color: var(--pt-accent);
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--pt-subtitle-size);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 0 20px 0;
  }

  .promo-tiers__title {
    color: var(--pt-text);
    font-family: var(--font-heading-family), serif;
    font-size: var(--pt-title-size-d);
    font-weight: 400;
    font-style: var(--pt-title-style);
    margin: 0 0 16px 0;
    line-height: 1.2;
  }

  .promo-tiers__description {
    color: var(--pt-text);
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--pt-description-size);
    line-height: 1.5;
    margin: 0 0 36px 0;
    opacity: 0.9;
  }

  .promo-tiers__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--pt-card-gap);
    margin-bottom: 32px;
  }

  .promo-tiers__card {
    padding: var(--pt-card-pad-v) var(--pt-card-pad-h);
    border: var(--pt-card-border-width) solid var(--pt-card-border-regular);
    border-radius: var(--pt-card-border-radius);
    background-color: var(--pt-card-bg);
    color: var(--pt-text);
    box-sizing: border-box;
    text-align: center;
  }

  .promo-tiers__card--highlighted {
    border-color: var(--pt-accent);
  }

  .promo-tiers__label {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--pt-label-size);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 0 12px 0;
    color: var(--pt-text);
    opacity: 0.85;
  }

  .promo-tiers__percentage {
    font-family: var(--font-heading-family), serif;
    font-size: var(--pt-percent-size-d);
    font-weight: 400;
    font-style: var(--pt-percent-style);
    margin: 0 0 6px 0;
    line-height: 1;
    color: var(--pt-text);
  }

  .promo-tiers__after {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--pt-after-size);
    margin: 0;
    color: var(--pt-text);
    opacity: 0.85;
  }

  .promo-tiers__disclaimer {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--pt-disclaimer-size);
    color: var(--pt-text);
    opacity: 0.75;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 420px;
  }

  @media (max-width: 749px) {
    .promo-tiers {
      padding: var(--pt-pad-top-m) var(--pt-pad-x) var(--pt-pad-bottom-m);
    }
    .promo-tiers__title {
      font-size: var(--pt-title-size-m);
    }
    .promo-tiers__percentage {
      font-size: var(--pt-percent-size-m);
    }
    .promo-tiers__card {
      padding: calc(var(--pt-card-pad-v) - 4px) calc(var(--pt-card-pad-h) - 4px);
    }
    .promo-tiers__cards {
      gap: calc(var(--pt-card-gap) - 4px);
    }
  }
/* END_SECTION:custom-quantity-discount */

/* START_SECTION:custom-rich-text (INDEX:29) */
.rh-richtext-{{ section.id }} { padding: {{ section.settings.padding_top }}px 2rem {{ section.settings.padding_bottom }}px; }
.rh-richtext-{{ section.id }} .rh-richtext__inner { max-width: {{ section.settings.content_width }}rem; margin: 0 auto; }
.rh-richtext-{{ section.id }} .rh-richtext__inner--left { text-align: left; }
.rh-richtext-{{ section.id }} .rh-richtext__inner--center { text-align: center; }
.rh-richtext-{{ section.id }} .rh-richtext__inner--right { text-align: right; }
.rh-richtext-{{ section.id }} .rh-richtext__heading {
  font-family: var(--font-heading-family); font-weight: 400;
  font-size: 3.2rem; line-height: 1.2; letter-spacing: 0.1em;
  text-transform: {{ section.settings.heading_transform }}; margin: 0 0 2.6rem;
}
.rh-richtext-{{ section.id }} .rh-richtext__text {
  font-family: var(--font-body-family); font-size: 1.7rem; line-height: 1.75;
}
.rh-richtext-{{ section.id }} .rh-richtext__text p { margin: 0 0 1.8rem; }
.rh-richtext-{{ section.id }} .rh-richtext__text p:last-child { margin-bottom: 0; }
.rh-richtext-{{ section.id }} .rh-richtext__button {
  display: inline-block; margin-top: 2.6rem; padding: 1.3rem 3.2rem;
  background: #111; color: #fff; font-size: 1.4rem; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
}

@media (max-width: 749px) {
  .rh-richtext-{{ section.id }} { padding-left: 1.8rem; padding-right: 1.8rem; }
  .rh-richtext-{{ section.id }} .rh-richtext__heading { font-size: 2.4rem; margin-bottom: 2rem; }
  .rh-richtext-{{ section.id }} .rh-richtext__text { font-size: 1.6rem; }
}
/* END_SECTION:custom-rich-text */

/* START_SECTION:custom-rotating-announcement (INDEX:30) */
.rotating-bar {
    background-color: var(--rb-bg);
    color: var(--rb-text);
    padding: var(--rb-pad-v) var(--rb-pad-h);
    box-sizing: border-box;
    width: 100%;
  }

  .rotating-bar__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .rotating-bar__messages {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .rotating-bar__message {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    text-align: center;
    color: var(--rb-text);
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--rb-font-size);
    font-weight: var(--rb-font-weight);
    letter-spacing: var(--rb-spacing);
    text-transform: var(--rb-transform);
    text-decoration: none;
    line-height: 1.4;
    opacity: 0;
    transition: opacity var(--rb-transition) ease;
    pointer-events: none;
  }

  .rotating-bar__message.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  a.rotating-bar__message:hover.is-active {
    opacity: 0.85;
  }

  @media (prefers-reduced-motion: reduce) {
    .rotating-bar__message {
      transition: none;
    }
  }
/* END_SECTION:custom-rotating-announcement */

/* START_SECTION:custom-testimonials-slider (INDEX:31) */
.testimonials-slider {
    background-color: var(--ts-bg);
    padding: var(--ts-pad-top-d) var(--ts-pad-x) var(--ts-pad-bottom-d);
    box-sizing: border-box;
    width: 100%;
  }

  .testimonials-slider__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .testimonials-slider__title {
    font-family: var(--font-heading-family), serif;
    font-size: var(--ts-title-size-d);
    font-weight: var(--ts-title-weight);
    letter-spacing: var(--ts-title-spacing);
    text-transform: var(--ts-title-transform);
    color: var(--ts-title-color);
    text-align: center;
    margin: 0 0 48px 0;
    line-height: 1.2;
  }

  .testimonials-slider__viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .testimonials-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--ts-arrows-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
    opacity: 0.85;
  }

  .testimonials-slider__nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
  }

  .testimonials-slider__nav:active {
    transform: translateY(-50%) scale(0.95);
  }

  .testimonials-slider__nav--prev {
    left: 12px;
  }

  .testimonials-slider__nav--next {
    right: 12px;
  }

  .testimonials-slider__track {
    display: flex;
    will-change: transform;
    transition: transform var(--ts-transition) ease;
  }

  .testimonials-slider__slide {
    flex: 0 0 calc(100% / var(--ts-slides-visible));
    padding: 0 12px;
    box-sizing: border-box;
    opacity: var(--ts-side-opacity);
    transition: opacity var(--ts-transition) ease;
    cursor: pointer;
  }

  .testimonials-slider__slide.is-active {
    opacity: 1;
    cursor: default;
  }

  .testimonials-slider__card {
    background-color: var(--ts-card-bg);
    color: var(--ts-card-text);
    padding: var(--ts-card-pad-v) var(--ts-card-pad-h);
    border-radius: var(--ts-card-radius);
    text-align: center;
    margin: 0 auto;
    max-width: var(--ts-card-max);
    box-sizing: border-box;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .testimonials-slider__stars {
    color: var(--ts-stars-color);
    font-size: var(--ts-stars-size);
    letter-spacing: 4px;
    margin-bottom: 20px;
    line-height: 1;
  }

  .testimonials-slider__text {
    font-family: var(--font-body-family), sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ts-card-text);
    margin: 0 0 28px 0;
  }

  .testimonials-slider__footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .testimonials-slider__author {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--ts-author-size);
    font-weight: var(--ts-author-weight);
    color: var(--ts-card-text);
    font-style: normal;
  }

  .testimonials-slider__location {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--ts-location-size);
    color: var(--ts-location-color);
    font-weight: 400;
  }

  .testimonials-slider__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
  }

  .testimonials-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: var(--ts-dots-color);
    opacity: 0.3;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  }

  .testimonials-slider__dot.is-active {
    background-color: var(--ts-dots-active);
    opacity: 1;
    transform: scale(1.2);
  }

  .testimonials-slider__dot:hover {
    opacity: 0.7;
  }

  .testimonials-slider__slide.is-clone {
    /* Clones exist just for the infinite loop; identical to originals */
  }

  @media (max-width: 749px) {
    .testimonials-slider {
      padding: var(--ts-pad-top-m) var(--ts-pad-x) var(--ts-pad-bottom-m);
    }
    .testimonials-slider__title {
      font-size: var(--ts-title-size-m);
      margin-bottom: 32px;
    }
    .testimonials-slider__slide {
      flex-basis: 100%;
      padding: 0 4px;
    }
    .testimonials-slider__text {
      font-size: 15px;
    }
    .testimonials-slider__card {
      padding: calc(var(--ts-card-pad-v) - 8px) calc(var(--ts-card-pad-h) - 8px);
    }
    .testimonials-slider__nav {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .testimonials-slider__track,
    .testimonials-slider__slide,
    .testimonials-slider__dot {
      transition: none;
    }
  }
/* END_SECTION:custom-testimonials-slider */

/* START_SECTION:custom-testimonials (INDEX:32) */
.rh-testim-{{ section.id }} { padding: 5rem 2rem; overflow: hidden; }
.rh-testim-{{ section.id }} .rh-testim__heading {
  font-family: var(--font-heading-family); font-weight: 400;
  font-size: 3rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center; margin: 0 0 3rem;
}
.rh-testim-{{ section.id }} .rh-testim__track {
  display: flex; gap: 2rem; max-width: 122rem; margin: 0 auto 2.4rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 2.5rem 0;
}
.rh-testim-{{ section.id }} .rh-testim__track::-webkit-scrollbar { display: none; }
.rh-testim-{{ section.id }} .rh-testim__card {
  flex: 0 0 calc((100% - ({{ section.settings.slides_desktop | minus: 1 }} * 2rem)) / {{ section.settings.slides_desktop }});
  scroll-snap-align: center;
}
.rh-testim-{{ section.id }} .rh-testim__inner {
  background: transparent; padding: 2rem 2.4rem; text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.rh-testim-{{ section.id }} .rh-testim__card.is-featured .rh-testim__inner {
  background: {{ section.settings.card_bg }};
  box-shadow: 0 1.4rem 3.6rem rgba(0,0,0,0.1);
  transform: translateY(-1.8rem); padding: 3rem 2.8rem;
}
.rh-testim-{{ section.id }} .rh-testim__stars { font-size: 1.6rem; letter-spacing: 0.3rem; margin-bottom: 1.6rem; }
.rh-testim-{{ section.id }} .rh-testim__star--off { opacity: 0.25; }
.rh-testim-{{ section.id }} .rh-testim__quote {
  font-family: var(--font-body-family); font-size: 1.5rem; line-height: 1.7; margin: 0 0 1.8rem;
}
.rh-testim-{{ section.id }} .rh-testim__author { font-weight: 700; font-size: 1.5rem; margin: 0 0 0.3rem; }
.rh-testim-{{ section.id }} .rh-testim__location { font-size: 1.3rem; opacity: 0.7; margin: 0; }
.rh-testim-{{ section.id }} .rh-testim__dots { display: flex; justify-content: center; gap: 0.8rem; }
.rh-testim-{{ section.id }} .rh-testim__dot {
  width: 0.9rem; height: 0.9rem; border-radius: 50%; border: none; padding: 0;
  background: rgba(0,0,0,0.2); cursor: pointer;
}
.rh-testim-{{ section.id }} .rh-testim__dot.is-active { background: rgba(0,0,0,0.7); }

@media (max-width: 749px) {
  .rh-testim-{{ section.id }} { padding: 3.5rem 1.5rem; }
  .rh-testim-{{ section.id }} .rh-testim__heading { font-size: 2.2rem; margin-bottom: 2rem; }
  .rh-testim-{{ section.id }} .rh-testim__track { gap: 1.6rem; }
  .rh-testim-{{ section.id }} .rh-testim__card { flex: 0 0 100%; }
  .rh-testim-{{ section.id }} .rh-testim__inner,
  .rh-testim-{{ section.id }} .rh-testim__card.is-featured .rh-testim__inner {
    background: {{ section.settings.card_bg }}; box-shadow: 0 1rem 2.6rem rgba(0,0,0,0.1);
    transform: none; padding: 2.8rem 2.2rem;
  }
}
/* END_SECTION:custom-testimonials */

/* START_SECTION:custom-text-section (INDEX:33) */
.text-section {
    background-color: var(--ts-bg);
    padding: var(--ts-pad-top-d) var(--ts-pad-x) var(--ts-pad-bottom-d);
    box-sizing: border-box;
    width: 100%;
  }

  .text-section__container {
    max-width: var(--ts-max-width);
    margin: 0 auto;
    text-align: var(--ts-align);
  }

  .text-section__title {
    font-family: var(--font-heading-family), serif;
    font-size: var(--ts-title-size-d);
    font-weight: var(--ts-title-weight);
    letter-spacing: var(--ts-title-spacing);
    line-height: var(--ts-title-lh);
    text-transform: var(--ts-title-transform);
    color: var(--ts-text);
    margin: 0 0 var(--ts-gap-title) 0;
  }

  .text-section__body {
    display: flex;
    flex-direction: column;
    gap: var(--ts-gap-paragraphs);
  }

  .text-section__paragraph {
    color: var(--ts-text);
  }

  .text-section__paragraph p {
    margin: 0;
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--ts-body-size-d);
    line-height: var(--ts-body-lh);
    color: var(--ts-text);
  }

  .text-section__paragraph p + p {
    margin-top: 1em;
  }

  .text-section__paragraph a {
    color: inherit;
    text-decoration: underline;
  }

  @media (max-width: 749px) {
    .text-section {
      padding: var(--ts-pad-top-m) var(--ts-pad-x) var(--ts-pad-bottom-m);
    }
    .text-section__title {
      font-size: var(--ts-title-size-m);
    }
    .text-section__paragraph p {
      font-size: var(--ts-body-size-m);
    }
  }
/* END_SECTION:custom-text-section */

/* START_SECTION:custom-tilted-photos (INDEX:34) */
.tilted-photos {
    background-color: var(--tp-bg);
    padding: var(--tp-pad-top-d) var(--tp-pad-x) var(--tp-pad-bottom-d);
    box-sizing: border-box;
    width: 100%;
  }

  .tilted-photos__container {
    max-width: var(--tp-max-width);
    margin: 0 auto;
    text-align: center;
  }

  .tilted-photos__title {
    font-family: var(--font-heading-family), serif;
    font-size: var(--tp-title-size-d);
    font-weight: var(--tp-title-weight);
    letter-spacing: var(--tp-title-spacing);
    text-transform: var(--tp-title-transform);
    color: var(--tp-title-color);
    margin: 0 0 var(--tp-gap-title-imgs) 0;
    line-height: 1.3;
  }

  .tilted-photos__images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--tp-gap-imgs-text);
    padding: 16px 0;
  }

  .tilted-photos__image {
    width: var(--tp-img-width-d);
    background-color: var(--tp-img-border-color);
    padding: var(--tp-img-border-width);
    box-sizing: content-box;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    flex-shrink: 0;
  }

  .tilted-photos__image--left {
    transform: rotate(var(--tp-img-rotate-left));
    z-index: 1;
  }

  .tilted-photos__image--right {
    transform: rotate(var(--tp-img-rotate-right));
    margin-left: calc(-1 * var(--tp-img-overlap-d));
    z-index: 2;
  }

  .tilted-photos__media {
    position: relative;
    aspect-ratio: var(--tp-img-aspect);
    overflow: hidden;
    background-color: #F5F5F5;
  }

  .tilted-photos__img,
  .tilted-photos__img--placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .tilted-photos__text {
    text-align: center;
  }

  .tilted-photos__paragraph {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--tp-text-size-d);
    line-height: var(--tp-text-lh);
    color: var(--tp-text-color);
    margin: 0 0 var(--tp-gap-paragraphs) 0;
  }

  .tilted-photos__paragraph:last-child {
    margin-bottom: 0;
  }

  @media (max-width: 749px) {
    .tilted-photos {
      padding: var(--tp-pad-top-m) var(--tp-pad-x) var(--tp-pad-bottom-m);
    }
    .tilted-photos__title {
      font-size: var(--tp-title-size-m);
    }
    .tilted-photos__image {
      width: var(--tp-img-width-m);
    }
    .tilted-photos__image--right {
      margin-left: calc(-1 * var(--tp-img-overlap-m));
    }
    .tilted-photos__paragraph {
      font-size: var(--tp-text-size-m);
    }
  }
/* END_SECTION:custom-tilted-photos */

/* START_SECTION:custom-usp-features (INDEX:35) */
.usp-features {
    background-color: var(--usp-bg);
    padding: var(--usp-pad-top-d) var(--usp-pad-x) var(--usp-pad-bottom-d);
    box-sizing: border-box;
    width: 100%;
  }

  .usp-features__container {
    max-width: var(--usp-max-width);
    margin: 0 auto;
  }

  .usp-features__section-title {
    font-family: var(--font-heading-family), serif;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 40px 0;
    color: var(--usp-text);
  }

  .usp-features__viewport {
    overflow: visible;
    width: 100%;
  }

  .usp-features__track {
    display: grid;
    grid-template-columns: repeat(var(--usp-cols, 3), minmax(0, 1fr));
    gap: var(--usp-gap);
  }

  .usp-features__slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .usp-features__slide.is-clone {
    display: none;
  }

  .usp-features__icon {
    color: var(--usp-icon-color);
    line-height: 0;
    margin-bottom: var(--usp-gap-icon-title);
  }

  .usp-features__icon svg,
  .usp-features__icon-img {
    width: var(--usp-icon-size);
    height: var(--usp-icon-size);
    display: block;
    object-fit: contain;
  }

  .usp-features__title {
    font-family: var(--font-heading-family), serif;
    font-size: var(--usp-title-size-d);
    font-weight: var(--usp-title-weight);
    letter-spacing: var(--usp-title-spacing);
    text-transform: var(--usp-title-transform);
    color: var(--usp-text);
    margin: 0 0 var(--usp-gap-title-body) 0;
    line-height: 1.3;
  }

  .usp-features__body {
    font-family: var(--font-body-family), sans-serif;
    font-size: var(--usp-body-size);
    line-height: var(--usp-body-lh);
    color: var(--usp-text);
    margin: 0;
    max-width: 340px;
  }

  .usp-features__dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .usp-features__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: var(--usp-dots-color);
    opacity: 0.3;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  }

  .usp-features__dot.is-active {
    background-color: var(--usp-dots-active);
    opacity: 1;
    transform: scale(1.2);
  }

  .usp-features__dot:hover {
    opacity: 0.7;
  }

  @media (max-width: 749px) {
    .usp-features {
      padding: var(--usp-pad-top-m) var(--usp-pad-x) var(--usp-pad-bottom-m);
    }
    .usp-features__section-title {
      font-size: 22px;
      margin-bottom: 24px;
    }
    .usp-features__viewport {
      overflow: hidden;
      width: 100%;
    }
    .usp-features__track {
      display: flex;
      grid-template-columns: none;
      gap: 0;
      will-change: transform;
      transition: transform var(--usp-transition) ease;
    }
    .usp-features__slide {
      flex: 0 0 100%;
      padding: 0 16px;
    }
    .usp-features__slide.is-clone {
      display: flex;
    }
    .usp-features__title {
      font-size: var(--usp-title-size-m);
    }
    .usp-features__dots {
      display: flex;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .usp-features__track,
    .usp-features__dot {
      transition: none;
    }
  }
/* END_SECTION:custom-usp-features */

/* START_SECTION:custom-usp-info (INDEX:36) */
.rh-usp-{{ section.id }} { padding: 5rem 2rem; }
.rh-usp-{{ section.id }} .rh-usp__inner {
  max-width: 118rem; margin: 0 auto;
  display: grid; grid-template-columns: repeat({{ section.blocks.size }}, 1fr); gap: 3.5rem;
}
.rh-usp-{{ section.id }} .rh-usp__item { text-align: center; }
.rh-usp-{{ section.id }} .rh-usp__icon { height: 4.2rem; margin-bottom: 1.8rem; display: flex; align-items: center; justify-content: center; }
.rh-usp-{{ section.id }} .rh-usp__icon svg { width: 4.6rem; height: 3.2rem; }
.rh-usp-{{ section.id }} .rh-usp__icon-img { max-height: 4.2rem; width: auto; }
.rh-usp-{{ section.id }} .rh-usp__title {
  font-family: var(--font-heading-family); font-weight: 400;
  font-size: 1.9rem; letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.3; margin: 0 0 1.2rem;
}
.rh-usp-{{ section.id }} .rh-usp__text { font-family: var(--font-body-family); font-size: 1.5rem; line-height: 1.6; }
.rh-usp-{{ section.id }} .rh-usp__text p { margin: 0 0 1rem; }
.rh-usp-{{ section.id }} .rh-usp__text p:last-child { margin-bottom: 0; }

@media (max-width: 749px) {
  .rh-usp-{{ section.id }} { padding: 3.5rem 1.8rem; }
  .rh-usp-{{ section.id }} .rh-usp__inner { grid-template-columns: 1fr; gap: 3.6rem; }
  .rh-usp-{{ section.id }} .rh-usp__title { font-size: 1.7rem; }
}
/* END_SECTION:custom-usp-info */