/** Shopify CDN: Minification failed

Line 19:14 Expected identifier but found whitespace
Line 19:16 Unexpected "{"
Line 19:25 Expected ":"
Line 19:51 Expected ":"
Line 20:17 Expected identifier but found whitespace
Line 20:19 Unexpected "{"
Line 20:28 Expected ":"
Line 20:57 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-split-banner (INDEX:14) */
.collection-split-banner {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.collection-split-banner__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.collection-split-banner__content {
  max-width: 56rem;
}

.collection-split-banner__title {
  margin: 0 0 1.2rem;
}

.collection-split-banner__description {
  margin-top: 1.6rem;
}

.collection-split-banner__media {
  width: 100%;
}

.collection-split-banner__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--media-radius);
  background: rgba(var(--color-foreground), 0.04);
}

.collection-split-banner__image-wrapper--adapt {
  aspect-ratio: 16 / 9;
}

.collection-split-banner__image-wrapper--small {
  aspect-ratio: 4 / 3;
}

.collection-split-banner__image-wrapper--medium {
  aspect-ratio: 16 / 10;
}

.collection-split-banner__image-wrapper--large {
  aspect-ratio: 16 / 7;
}

.collection-split-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-split-banner__placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(var(--color-foreground), 0.06);
}

@media screen and (max-width: 749px) {
  .collection-split-banner__wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .collection-split-banner__content {
    max-width: 100%;
  }
}
/* END_SECTION:collection-split-banner */

/* START_SECTION:faq-section (INDEX:27) */
.faq-section {
    background-color: var(--faq-bg, #fafafa);
    padding: 40px 0;
  }

  .faq-section__container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
  }

  @media (min-width: 990px) {
    .faq-section {
      padding: 56px 0;
    }
  }

  .faq-section__header {
    text-align: center;
    margin: 0 auto 28px;
  }

  .faq-section__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--faq-accent, #c2185b);
    margin: 0 0 8px;
  }

  .faq-section__heading {
    font-size: clamp(22px, 2.8vw, 30px);
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
  }

  .faq-section__subheading {
    font-size: 14px;
    line-height: 1.55;
    color: #5a5a5a;
  }

  .faq-section__subheading p { margin: 0; }

  /* FAQ list */
  .faq-section__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .faq-section__item {
    background-color: var(--faq-card-bg, #ffffff);
    border: 1px solid #ececec;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .faq-section__item[open] {
    border-color: rgba(194, 24, 91, 0.25);
    box-shadow: 0 2px 12px rgba(194, 24, 91, 0.06);
  }

  .faq-section__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background-color 0.15s ease;
  }

  .faq-section__question:hover {
    background-color: rgba(194, 24, 91, 0.02);
  }

  /* Hide default disclosure marker */
  .faq-section__question::-webkit-details-marker { display: none; }
  .faq-section__question::marker { display: none; content: ''; }

  .faq-section__question-text {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    flex: 1;
  }

  .faq-section__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(194, 24, 91, 0.08);
    color: var(--faq-accent, #c2185b);
    transition: transform 0.25s ease, background-color 0.15s ease;
  }

  .faq-section__item[open] .faq-section__icon {
    transform: rotate(180deg);
    background-color: var(--faq-accent, #c2185b);
    color: #ffffff;
  }

  .faq-section__answer {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.65;
    color: #4a4a4a;
  }

  .faq-section__answer > *:first-child { margin-top: 0; }
  .faq-section__answer > *:last-child { margin-bottom: 0; }

  .faq-section__answer p {
    margin: 0 0 8px;
  }

  .faq-section__answer ul,
  .faq-section__answer ol {
    margin: 8px 0;
    padding-left: 22px;
  }

  .faq-section__answer li {
    margin-bottom: 4px;
  }

  .faq-section__answer a {
    color: var(--faq-accent, #c2185b);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .faq-section__answer strong {
    color: #1a1a1a;
  }

  /* CTA block */
  .faq-section__cta {
    text-align: center;
    margin-top: 32px;
    padding: 22px 20px;
    background-color: rgba(194, 24, 91, 0.04);
    border-radius: 12px;
  }

  .faq-section__cta-text {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 14px;
  }

  .faq-section__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .faq-section__button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  }

  .faq-section__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(194, 24, 91, 0.2);
  }

  .faq-section__button--primary {
    background-color: var(--faq-accent, #c2185b);
    color: #ffffff;
  }

  .faq-section__button--primary:hover {
    background-color: #a91450;
  }

  .faq-section__button--secondary {
    background-color: #ffffff;
    color: var(--faq-accent, #c2185b);
    border: 1.5px solid var(--faq-accent, #c2185b);
  }

  .faq-section__button--secondary:hover {
    background-color: #fdf2f7;
  }

  .faq-section__button-arrow {
    transition: transform 0.15s ease;
  }

  .faq-section__button:hover .faq-section__button-arrow {
    transform: translateX(3px);
  }

  @media (max-width: 749px) {
    .faq-section__question {
      padding: 14px 16px;
    }
    .faq-section__answer {
      padding: 0 16px 16px;
    }
    .faq-section__cta-buttons {
      flex-direction: column;
      align-items: stretch;
    }
    .faq-section__button {
      justify-content: center;
      width: 100%;
    }
  }
/* END_SECTION:faq-section */

/* START_SECTION:hero-with-stats (INDEX:34) */
.hero-stats {
    background-color: var(--hero-stats-bg, #fdf2f7);
    padding: 60px 0;
    overflow: hidden;
  }

  .hero-stats__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }

  @media (min-width: 990px) {
    .hero-stats {
      padding: 80px 0;
    }
    .hero-stats__container {
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }
  }

  .hero-stats__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .hero-stats__eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hero-stats-accent, #c2185b);
    margin: 0;
  }

  .hero-stats__heading {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
  }

  .hero-stats__subheading {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 560px;
  }

  .hero-stats__subheading p {
    margin: 0 0 8px;
  }

  .hero-stats__subheading p:last-child {
    margin-bottom: 0;
  }

  .hero-stats__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
  }

  .hero-stats__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    cursor: pointer;
  }

  .hero-stats__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(194, 24, 91, 0.2);
  }

  .hero-stats__button--primary {
    background-color: var(--hero-stats-accent, #c2185b);
    color: #ffffff;
  }

  .hero-stats__button--primary:hover {
    background-color: #a91450;
  }

  .hero-stats__button--secondary {
    background-color: #ffffff;
    color: var(--hero-stats-accent, #c2185b);
    border: 1.5px solid var(--hero-stats-accent, #c2185b);
  }

  .hero-stats__button--secondary:hover {
    background-color: #fdf2f7;
  }

  .hero-stats__button-arrow {
    transition: transform 0.15s ease;
  }

  .hero-stats__button:hover .hero-stats__button-arrow {
    transform: translateX(3px);
  }

  .hero-stats__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 16px 0 0;
    padding: 0;
    max-width: 480px;
  }

  .hero-stats__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .hero-stats__stat-value {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--hero-stats-accent, #c2185b);
    margin: 0;
    line-height: 1.1;
  }

  .hero-stats__stat-label {
    font-size: 13px;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.3;
  }

  .hero-stats__trust-bar {
    font-size: 13px;
    color: #6a6a6a;
    margin: 8px 0 0;
    line-height: 1.5;
  }

  .hero-stats__media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
  }

  .hero-stats__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-stats__image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-stats__image-placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 749px) {
    .hero-stats__buttons {
      flex-direction: column;
      align-items: stretch;
    }
    .hero-stats__button {
      justify-content: center;
      width: 100%;
    }
    .hero-stats__stats {
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
  }
/* END_SECTION:hero-with-stats */

/* START_SECTION:product-showcase (INDEX:64) */
.product-showcase {
    background-color: var(--ps-bg, #ffffff);
    padding: 60px 0;
  }

  .product-showcase__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }

  @media (min-width: 990px) {
    .product-showcase {
      padding: 80px 0;
    }
  }

  .product-showcase__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
  }

  .product-showcase__heading {
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
  }

  .product-showcase__subheading {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
  }

  .product-showcase__subheading p {
    margin: 0;
  }

  .product-showcase__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  @media (min-width: 750px) {
    .product-showcase__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 990px) {
    .product-showcase__grid {
      grid-template-columns: repeat(var(--ps-columns-desktop, 3), 1fr);
      gap: 28px;
    }
  }

  .product-showcase__item {
    display: flex;
  }

  .product-showcase__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .product-showcase__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .product-showcase__card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
  }

  .product-showcase__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f5f5f5;
  }

  .product-showcase__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .product-showcase__card:hover .product-showcase__image {
    transform: scale(1.03);
  }

  .product-showcase__image-placeholder,
  .product-showcase__image-placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-showcase__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--ps-accent, #c2185b);
    border-radius: 4px;
  }

  .product-showcase__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 22px 24px;
    flex-grow: 1;
  }

  .product-showcase__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
  }

  .product-showcase__subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--ps-accent, #c2185b);
    margin: -4px 0 0;
    line-height: 1.4;
  }

  .product-showcase__features {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .product-showcase__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #3a3a3a;
  }

  .product-showcase__check {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--ps-accent, #c2185b);
  }

  .product-showcase__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ps-accent, #c2185b);
  }

  .product-showcase__cta-arrow {
    transition: transform 0.2s ease;
  }

  .product-showcase__card:hover .product-showcase__cta-arrow {
    transform: translateX(4px);
  }
/* END_SECTION:product-showcase */

/* START_SECTION:testimonials (INDEX:85) */
.testimonials {
    background-color: var(--ts-bg, #fafafa);
    padding: 40px 0;
  }

  .testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  @media (min-width: 990px) {
    .testimonials {
      padding: 56px 0;
    }
  }

  .testimonials__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
  }

  .testimonials__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ts-accent, #c2185b);
    margin: 0 0 8px;
  }

  .testimonials__heading {
    font-size: clamp(22px, 2.8vw, 30px);
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
  }

  .testimonials__subheading {
    font-size: 14px;
    line-height: 1.55;
    color: #5a5a5a;
  }

  .testimonials__subheading p { margin: 0; }

  .testimonials__aggregate {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 8px 16px;
    background-color: rgba(194, 24, 91, 0.05);
    border-radius: 999px;
    font-size: 13px;
    color: #3a3a3a;
  }

  .testimonials__aggregate-stars {
    display: inline-flex;
    gap: 2px;
    color: #f5a623;
  }

  /* Grid */
  .testimonials__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  @media (min-width: 750px) {
    .testimonials__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 990px) {
    .testimonials__grid {
      grid-template-columns: repeat(var(--ts-cols, 3), 1fr);
      gap: 20px;
    }
  }

  .testimonials__item {
    display: flex;
  }

  .testimonials__card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 22px 22px 20px;
    background-color: var(--ts-card-bg, #ffffff);
    border: 1px solid #ececec;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .testimonials__card:hover {
    transform: translateY(-2px);
    border-color: rgba(194, 24, 91, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }

  /* Decorative quote mark */
  .testimonials__card::before {
    content: '"';
    position: absolute;
    top: 8px;
    right: 18px;
    font-size: 52px;
    font-family: Georgia, 'Times New Roman', serif;
    color: rgba(194, 24, 91, 0.12);
    line-height: 1;
    font-weight: 700;
    pointer-events: none;
  }

  /* Stars */
  .testimonials__stars {
    display: inline-flex;
    gap: 2px;
    color: #f5a623;
    margin-bottom: 12px;
  }

  .testimonials__star {
    flex-shrink: 0;
  }

  .testimonials__star--filled {
    color: #f5a623;
  }

  /* Quote */
  .testimonials__quote {
    margin: 0 0 14px;
    padding: 0;
  }

  .testimonials__quote p {
    font-size: 14px;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0;
    font-style: normal;
  }

  .testimonials__translation-note {
    font-size: 11px;
    color: #8a8a8a;
    font-style: italic;
    margin: 0 0 14px;
    line-height: 1.4;
  }

  /* Author */
  .testimonials__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
  }

  .testimonials__author-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--ts-accent, #c2185b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
  }

  .testimonials__author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonials__author-initials {
    line-height: 1;
  }

  .testimonials__author-info {
    flex: 1;
    min-width: 0;
  }

  .testimonials__author-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    font-style: normal;
    line-height: 1.3;
  }

  .testimonials__author-meta {
    font-size: 12px;
    color: #6a6a6a;
    margin: 2px 0 0;
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
  }

  .testimonials__author-location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .testimonials__flag {
    font-size: 14px;
    line-height: 1;
  }

  /* Product tag */
  .testimonials__product-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
    margin-top: 10px;
    padding: 4px 10px;
    background-color: rgba(194, 24, 91, 0.06);
    color: var(--ts-accent, #c2185b);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  @media (max-width: 749px) {
    .testimonials__card {
      padding: 20px 18px 18px;
    }
  }
/* END_SECTION:testimonials */

/* START_SECTION:trust-certifications (INDEX:86) */
.trust-certs {
    background-color: var(--tc-bg, #fafafa);
    padding: 60px 0;
  }

  .trust-certs__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }

  @media (min-width: 990px) {
    .trust-certs {
      padding: 80px 0;
    }
  }

  .trust-certs__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
  }

  .trust-certs__heading {
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
  }

  .trust-certs__subheading {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
  }

  .trust-certs__subheading p { margin: 0; }

  /* Features grid */
  .trust-certs__features {
    list-style: none;
    margin: 0 0 56px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  @media (min-width: 750px) {
    .trust-certs__features {
      grid-template-columns: repeat(var(--tc-features-cols, 4), 1fr);
      gap: 20px;
    }
  }

  .trust-certs__feature {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .trust-certs__feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  .trust-certs__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--tc-accent, #c2185b);
    color: #ffffff;
    margin: 0 auto 16px;
  }

  .trust-certs__feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .trust-certs__feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.3;
  }

  .trust-certs__feature-description {
    font-size: 13px;
    color: #5a5a5a;
    margin: 0;
    line-height: 1.5;
  }

  /* Divider */
  .trust-certs__divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 0 0 40px;
  }

  /* Certs section */
  .trust-certs__certs-heading {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 32px;
  }

  .trust-certs__certs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  @media (min-width: 750px) {
    .trust-certs__certs {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 990px) {
    .trust-certs__certs {
      grid-template-columns: repeat(var(--tc-certs-cols, 3), 1fr);
      gap: 28px;
    }
  }

  .trust-certs__cert-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .trust-certs__cert-image-wrapper {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #f5f5f5;
    border: none;
    padding: 0;
    cursor: zoom-in;
    overflow: hidden;
  }

  .trust-certs__cert-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
  }

  .trust-certs__cert-image-wrapper:hover .trust-certs__cert-image {
    transform: scale(1.04);
  }

  .trust-certs__cert-zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .trust-certs__cert-image-wrapper:hover .trust-certs__cert-zoom,
  .trust-certs__cert-image-wrapper:focus-visible .trust-certs__cert-zoom {
    opacity: 1;
  }

  .trust-certs__cert-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .trust-certs__cert-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
  }

  .trust-certs__cert-subtitle {
    font-size: 13px;
    color: var(--tc-accent, #c2185b);
    font-weight: 600;
    margin: -8px 0 0;
  }

  .trust-certs__cert-meta {
    margin: 0;
    padding: 12px 0 0;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
  }

  .trust-certs__cert-meta-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
  }

  .trust-certs__cert-meta-row dt {
    color: #8a8a8a;
    font-weight: 500;
    margin: 0;
  }

  .trust-certs__cert-meta-row dd {
    color: #2a2a2a;
    font-weight: 500;
    margin: 0;
  }

  /* Lightbox */
  .trust-certs-lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .trust-certs-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .trust-certs-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.15s ease;
  }

  .trust-certs-lightbox__close:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }

  .trust-certs-lightbox__content {
    max-width: 900px;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .trust-certs-lightbox__title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-align: center;
  }

  .trust-certs-lightbox__image {
    max-width: 100%;
    max-height: calc(100vh - 140px);
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
  }
/* END_SECTION:trust-certifications */

/* START_SECTION:wholesale-process (INDEX:88) */
.wholesale-process {
    background-color: var(--wp-bg, #ffffff);
    padding: 40px 0;
  }

  .wholesale-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  @media (min-width: 990px) {
    .wholesale-process {
      padding: 56px 0;
    }
  }

  .wholesale-process__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
  }

  .wholesale-process__heading {
    font-size: clamp(22px, 2.8vw, 30px);
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
  }

  .wholesale-process__subheading {
    font-size: 14px;
    line-height: 1.55;
    color: #5a5a5a;
  }

  .wholesale-process__subheading p { margin: 0; }

  /* Steps grid */
  .wholesale-process__steps {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    counter-reset: step;
  }

  @media (min-width: 750px) {
    .wholesale-process__steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }

  @media (min-width: 990px) {
    .wholesale-process__steps {
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
  }

  .wholesale-process__step {
    position: relative;
    display: flex;
  }

  /* Connector line between steps - desktop only */
  @media (min-width: 990px) {
    .wholesale-process__step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 70px;
      right: -12px;
      width: 18px;
      height: 2px;
      background: repeating-linear-gradient(
        to right,
        var(--wp-accent, #c2185b) 0,
        var(--wp-accent, #c2185b) 4px,
        transparent 4px,
        transparent 8px
      );
      opacity: 0.5;
      z-index: 1;
    }
  }

  .wholesale-process__step-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--wp-card-bg, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
  }

  .wholesale-process__step-card:hover {
    transform: translateY(-2px);
  }

  .wholesale-process__step-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 12px;
  }

  .wholesale-process__step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .wholesale-process__step-card:hover .wholesale-process__step-image {
    transform: scale(1.05);
  }

  .wholesale-process__step-placeholder,
  .wholesale-process__placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .wholesale-process__step-number {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    background-color: var(--wp-accent, #c2185b);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.02em;
  }

  .wholesale-process__step-body {
    padding: 14px 4px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .wholesale-process__step-timing {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    color: var(--wp-accent, #c2185b);
    background-color: rgba(194, 24, 91, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.02em;
  }

  .wholesale-process__step-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
  }

  .wholesale-process__step-description {
    font-size: 13px;
    line-height: 1.55;
    color: #4a4a4a;
    margin: 0;
  }

  /* CTA block */
  .wholesale-process__cta {
    text-align: center;
    padding: 22px 20px;
    margin: 0 0 28px;
    background-color: rgba(194, 24, 91, 0.04);
    border-radius: 12px;
  }

  .wholesale-process__cta-text {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 14px;
  }

  .wholesale-process__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .wholesale-process__button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  }

  .wholesale-process__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(194, 24, 91, 0.2);
  }

  .wholesale-process__button--primary {
    background-color: var(--wp-accent, #c2185b);
    color: #ffffff;
  }

  .wholesale-process__button--primary:hover {
    background-color: #a91450;
  }

  .wholesale-process__button--secondary {
    background-color: #ffffff;
    color: var(--wp-accent, #c2185b);
    border: 1.5px solid var(--wp-accent, #c2185b);
  }

  .wholesale-process__button--secondary:hover {
    background-color: #fdf2f7;
  }

  .wholesale-process__button-arrow {
    transition: transform 0.15s ease;
  }

  .wholesale-process__button:hover .wholesale-process__button-arrow {
    transform: translateX(3px);
  }

  /* Benefits bar */
  .wholesale-process__benefits {
    list-style: none;
    margin: 0;
    padding: 20px 18px;
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  @media (min-width: 750px) {
    .wholesale-process__benefits {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
  }

  .wholesale-process__benefit {
    text-align: center;
    padding: 0 6px;
  }

  .wholesale-process__benefit-icon {
    display: inline-block;
    font-size: 20px;
    margin-bottom: 4px;
  }

  .wholesale-process__benefit-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--wp-accent, #c2185b);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 4px;
  }

  .wholesale-process__benefit-description {
    font-size: 13px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0;
  }

  @media (max-width: 749px) {
    .wholesale-process__cta-buttons {
      flex-direction: column;
      align-items: stretch;
    }
    .wholesale-process__button {
      justify-content: center;
      width: 100%;
    }
  }
/* END_SECTION:wholesale-process */