/** Shopify CDN: Minification failed

Line 498:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:wholesale-faq (INDEX:55) */
.faq-section {
    background: var(--faq-bg, #FFFCF8);
    padding: clamp(56px, 8vw, 100px) 5vw;
  }

  .faq-inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .faq-header {
    text-align: center;
    margin: 0 auto 50px;
  }

  .faq-section .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--faq-label, #C4845A);
    margin: 0 0 16px;
  }

  .faq-section .section-title {
    
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--faq-heading, #2E1F14);
    margin: 0;
  }

  .faq-section .section-title em {
    color: var(--faq-em, #e86226);
    font-style: italic;
  }

  .faq-list {
    border-top: 1px solid var(--faq-border, #E8D9CC);
  }

  .faq-item {
    border-bottom: 1px solid var(--faq-border, #E8D9CC);
    overflow: hidden;
  }

  .faq-item summary {
    list-style: none;
    cursor: pointer;
  }

  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::marker { display: none; }

  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: var(--faq-question, #2E1F14);
    gap: 16px;
    transition: color 0.2s ease;
  }

  .faq-q:hover {
    color: var(--faq-question-hover, #C4845A);
  }

  .faq-q-text {
    flex: 1;
    line-height: 1.45;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--faq-icon-bg, #FAF5EF);
    border: 1px solid var(--faq-border, #E8D9CC);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
    color: var(--faq-icon-color, #C4845A);
    transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--faq-icon-active-bg, #C4845A);
    border-color: var(--faq-icon-active-bg, #C4845A);
    color: var(--faq-icon-active-color, #FFFFFF);
  }

  .faq-a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--faq-answer, #7A5C48);
    padding: 0 0 22px;
  }

  .faq-a p { margin: 0 0 1em; }
  .faq-a p:last-child { margin-bottom: 0; }
/* END_SECTION:wholesale-faq */

/* START_SECTION:wholesale-form (INDEX:56) */
.form-section {
    background: linear-gradient(135deg, var(--form-bg-start, #ffffff) 0%, var(--form-bg-end, #ffffff) 100%);
    color: var(--form-body, #51565b);
    padding: clamp(56px, 8vw, 100px) 5vw;
    position: relative;
    overflow: hidden;
  }

  .form-section::before,
  .form-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
  }

  .form-section::before {
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--form-overlay-a, rgba(255, 255, 255, 0)) 0%, transparent 70%);
  }

  .form-section::after {
    bottom: -80px;
    right: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--form-overlay-b, rgba(255, 255, 255, 0)) 0%, transparent 70%);
  }

  .form-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
  }

  @media (min-width: 900px) {
    .form-inner {
      grid-template-columns: 1fr 1.3fr;
      gap: 80px;
    }
  }

  .form-left {
    padding-top: 8px;
  }

  .form-section .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--form-label, #C4845A);
    margin: 0 0 16px;
  }

  .form-section .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--form-heading, #2E1F14);
    margin: 0 0 20px;
  }

  .form-section .section-title em {
    color: var(--form-em, #e86226);
    font-style: italic;
  }

  .form-section .section-body {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--form-body, #51565b);
    margin: 0 0 36px;
  }

  .form-section .section-body p { margin: 0 0 0.8em; }
  .form-section .section-body p:last-child { margin-bottom: 0; }

  .contact-alt {
    font-size: 13px;
    color: #85898c;
    margin-top: 24px;
    line-height: 1.7;
  }

  .contact-alt a {
    color: var(--form-link, #e86226);
    text-decoration: none;
  }

  .contact-alt a:hover { text-decoration: underline; }

  .wholesale-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  @media (max-width: 600px) {
    .wholesale-form-grid {
      grid-template-columns: 1fr;
    }
  }

  .wf-full { grid-column: 1 / -1; }
  .wf-half { grid-column: span 1; }

  @media (max-width: 600px) {
    .wf-half { grid-column: 1 / -1; }
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .form-field > input,
  .form-field > select,
  .form-field > textarea {
    margin-top: auto;
  }

  .form-field-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--form-field-label, #51565b);
  }

  .required {
    color: var(--form-required, #e86226);
  }

  .form-section input[type="text"],
  .form-section input[type="email"],
  .form-section input[type="tel"],
  .form-section select,
  .form-section textarea {
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    background: var(--form-input-bg, #f1f1f1);
    border: 1px solid var(--form-input-border, #b9bbbd);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--form-input-text, #51565b);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    width: 100%;
    box-sizing: border-box;
  }

  .form-section input::placeholder,
  .form-section textarea::placeholder {
    color: rgba(81, 86, 91, 0.4);
  }

  .form-section select {
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                      linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 36px;
  }

  .form-section select option {
    color: #2E1F14;
    background: #FFFFFF;
  }

  .form-section input:focus,
  .form-section select:focus,
  .form-section textarea:focus {
    border-color: var(--form-input-focus, #51565b);
    background: rgba(81, 86, 91, 0.05);
  }

  .form-section textarea {
    resize: vertical;
    min-height: 100px;
  }

  .form-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--form-body, #51565b);
  }

  .form-check input {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  .form-checkbox-group {
    border: 0;
    padding: 0;
    margin: 0;
  }

  .form-checkbox-group .form-field-label {
    display: block;
    margin-bottom: 10px;
  }

  .form-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
  }

  @media (max-width: 600px) {
    .form-checkbox-grid {
      grid-template-columns: 1fr;
    }
  }

  .form-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    color: var(--form-heading, #2E1F14);
    margin: 8px 0 4px;
  }

  .form-note {
    font-size: 11px;
    color: var(--form-note, #85898c);
    line-height: 1.6;
  }

  .wf-legal {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-check-subtext {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: var(--form-note, #85898c);
    line-height: 1.5;
  }

  .form-disclaimer {
    font-size: 11px;
    line-height: 1.6;
    color: var(--form-note, #85898c);
  }

  .form-disclaimer-title {
    margin: 0 0 5px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--form-field-label, #a89a8c);
  }

  .form-disclaimer p { margin: 0; }

  .form-check a,
  .wf-legal-footer a {
    color: var(--form-link, #e86226);
    text-decoration: underline;
  }

  .form-check a:hover,
  .wf-legal-footer a:hover { text-decoration: none; }

  .wf-legal-footer {
    margin: 14px 0 0;
    font-size: 11px;
    line-height: 1.6;
    color: var(--form-note, #85898c);
  }

  .submit-btn {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    background: var(--form-button-bg, #e86226);
    color: var(--form-button-text, #ffffff);
    padding: 16px 32px;
    border-radius: 32px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    align-self: flex-start;
    margin-top: 18px;
  }

  .submit-btn:hover {
    background: var(--form-button-hover, #d45116);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 98, 38, 0.3);
  }

  .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
  }

  .form-success {
    background: #ffffff;
    border: 1px solid #e8d9cc;
    color: #2c2c2c;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    grid-column: 1 / -1;
  }

  .form-errors {
    background: rgba(208, 47, 46, 0.08);
    border: 1px solid rgba(208, 47, 46, 0.4);
    color: #D02F2E;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .form-errors strong { display: block; margin-bottom: 6px; }
  .form-errors ul { margin: 0; padding-left: 20px; }

  /* Red border on invalid fields — only after a submit attempt or interaction,
     so untouched empty fields aren't flagged on page load (:user-invalid). */
  .form-section input:user-invalid,
  .form-section select:user-invalid,
  .form-section textarea:user-invalid {
    border-color: #D02F2E;
    box-shadow: 0 0 0 1px #D02F2E;
    background: rgba(208, 47, 46, 0.06);
  }

  .form-section input:user-invalid:focus,
  .form-section select:user-invalid:focus,
  .form-section textarea:user-invalid:focus {
    border-color: #D02F2E;
    box-shadow: 0 0 0 2px rgba(208, 47, 46, 0.35);
  }

  /* Required checkbox (privacy consent) gets a red ring when unchecked on submit */
  .form-section .form-check input:user-invalid {
    outline: 2px solid #D02F2E;
    outline-offset: 2px;
  }
/* END_SECTION:wholesale-form */

/* START_SECTION:wholesale-hero (INDEX:57) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap');

  html {
    scroll-behavior: smooth;
  }

  .btn.btn--outline{
    --color-btn-text:#2e4f7c;
    --color-btn-bg-hover:rgba(46, 79, 124, 0.08);
  }

  .wholesale-hero[id],
  .wholesale-section[id] {
    scroll-margin-top: 80px;
  }

  .wholesale-section em,
  .wholesale-emphasis {
    
    font-style: italic;
    font-weight: 500;
  }

  .wholesale-hero {
    overflow: hidden;
    background-color: var(--color-background);
    color: var(--color-text);
  }

  .wholesale-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  @media (min-width: 768px) {
    .wholesale-hero__inner {
      grid-template-columns: 1fr 1fr;
      min-height: 60vh;
    }

    .wholesale-hero[data-content-position="right"] .wholesale-hero__content {
      order: 2;
    }
  }

  .wholesale-hero__content {
    padding: 64px 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .wholesale-hero__content::before,
  .wholesale-hero__content::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: -1;
  }

  .wholesale-hero__content::before {
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 132, 90, 0.25) 0%, transparent 70%);
  }

  .wholesale-hero__content::after {
    bottom: -80px;
    left: -40px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(143, 168, 130, 0.15) 0%, transparent 70%);
  }

  @media (min-width: 1024px) {
    .wholesale-hero__content {
      padding: 96px 4rem;
    }
  }

  .wholesale-hero__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2e4f7c;
    margin: 0 0 24px;
  }

  .wholesale-hero__heading {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.18;
    margin: 0 0 24px;
    max-width: 14ch;
    color: #e86226;
  }

  .wholesale-hero__heading em {
    color: #e86226;
  }

  .wholesale-hero__subheading {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 460px;
    margin: 0 0 36px;
  }

  .wholesale-hero__subheading p { margin: 0; }

  .wholesale-hero__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* RIGHT PANEL */
  .wholesale-hero__right {
    background-color: var(--right-bg, #FAF5EF);
    color: var(--right-text, #2E1F14);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 6vw;
  }

  @media (min-width: 1024px) {
    .wholesale-hero__right {
      padding: 80px 5vw;
    }
  }

  .wholesale-hero__right-inner {
    width: 100%;
    max-width: 540px;
  }

  .wholesale-hero__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  @media (min-width: 480px) {
    .wholesale-hero__stats {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
  }

  .wholesale-hero__stat {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E8D9CC;
    border-radius: 16px;
    padding: 28px 24px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .wholesale-hero__stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(46, 31, 20, 0.1);
  }

  .wholesale-hero__stat::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--right-accent, #C4845A), var(--right-accent-end, #D4A96A));
  }

  .wholesale-hero__stat-value {
    
    font-style: italic;
    font-weight: 500;
    line-height: 1;
    color: inherit;
    margin: 0 0 12px;
    display: flex;
    align-items: baseline;
  }

  .wholesale-hero__stat-num {
    font-size: clamp(36px, 3.4vw, 48px);
  }

  .wholesale-hero__stat-unit {
    font-size: clamp(20px, 1.9vw, 26px);
    margin-left: 2px;
  }

  .wholesale-hero__stat-desc {
    font-family: inherit;
    font-style: normal;
    font-size: 13.5px;
    line-height: 1.45;
    margin: 0;
    color: inherit;
    opacity: 0.78;
  }

  .wholesale-hero__quotes {
    margin-top: 28px;
    text-align: center;
  }

  .wholesale-hero__quote {
    
    font-style: italic;
    font-weight: 400;
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.5;
    margin: 0;
    color: inherit;
    opacity: 0.85;
  }

  /* MEDIA (fallback when no blocks) */
  .wholesale-hero__media {
    position: relative;
    min-height: 320px;
    background: rgba(0, 0, 0, 0.04);
    width: 100%;
  }

  .wholesale-hero__media .image,
  .wholesale-hero__media .image-wrapper {
    width: 100%;
    height: 100%;
  }

  .wholesale-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .wholesale-hero__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
  }

  /* When media fallback is used, remove the right-panel padding/background so the image fills */
  .wholesale-hero__right:has(> .wholesale-hero__media) {
    padding: 0;
    background: transparent;
  }
/* END_SECTION:wholesale-hero */

/* START_SECTION:wholesale-how (INDEX:58) */
.how-section {
    background: var(--how-bg, #2E1F14);
    color: var(--how-body, rgba(255, 255, 255, 0.65));
    padding: clamp(56px, 8vw, 100px) 5vw;
    position: relative;
    overflow: hidden;
  }

  .how-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--how-overlay, rgba(196, 132, 90, 0.15)) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }

  .how-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .how-header {
    text-align: center;
    margin: 0 auto 60px;
    max-width: 720px;
  }

  .how-section .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--how-label, #D4A96A);
    margin: 0 0 16px;
  }

  .how-section .section-title {
    
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--how-heading, #FFFFFF);
    margin: 0 0 16px;
  }

  .how-section .section-title em {
    color: var(--how-em, #e86226);
    font-style: italic;
  }

  .how-section .section-body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--how-body, rgba(255, 255, 255, 0.65));
  }

  .how-section .section-body p { margin: 0; }

  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--how-line, rgba(196, 132, 90, 0.4)), transparent);
  }

  @media (max-width: 900px) {
    .steps {
      grid-template-columns: repeat(2, 1fr);
    }
    .steps::before {
      display: none;
    }
    .step {
      padding: 0 16px 40px;
    }
  }

  @media (max-width: 600px) {
    .steps {
      grid-template-columns: 1fr;
    }
  }

  .step {
    padding: 0 32px;
    text-align: center;
    position: relative;
  }

  .step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--how-num-bg, #C4845A);
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    color: var(--how-num-color, #FFFFFF);
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 2px;
  }

  .step-heading {
    
    font-size: 19px;
    font-weight: 500;
    color: var(--how-heading, #FFFFFF);
    margin: 0 0 12px;
    line-height: 1.3;
  }

  .step-body {
    font-size: 13px;
    font-weight: 400;
    color: var(--how-body, rgba(255, 255, 255, 0.65));
    line-height: 1.7;
  }

  .step-body p { margin: 0; }

  .how-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
  }

  .how-cta > * {
    margin-left: auto;
    margin-right: auto;
  }
/* END_SECTION:wholesale-how */

/* START_SECTION:wholesale-nav (INDEX:59) */
.shopify-section.wholesale-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .wholesale-nav {
    background: var(--wn-bg, #FFFCF8);
    border-bottom: 1px solid var(--wn-border, rgba(196, 132, 90, 0.18));
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
  }

  .wholesale-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .wholesale-nav__logo {
    
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--wn-logo, #2E1F14);
    text-decoration: none;
    line-height: 1;
    display: inline-flex;
    align-items: center;
  }

  .wholesale-nav__logo span {
    color: var(--wn-logo-accent, #C4845A);
    font-style: italic;
  }

  .wholesale-nav__logo--image img {
    display: block;
    width: var(--wn-logo-w, 160px);
    height: auto;
    max-height: 80px;
    object-fit: contain;
  }

  .wholesale-nav__cta {
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--wn-cta-text, #FFFFFF);
    background: var(--wn-cta-bg, #2E1F14);
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 200ms ease;
    white-space: nowrap;
  }

  .wholesale-nav__cta:hover,
  .wholesale-nav__cta:focus-visible {
    background: var(--wn-cta-bg-hover, #C4845A);
  }

  @media (max-width: 600px) {
    .wholesale-nav__inner {
      padding: 14px 5vw;
    }
    .wholesale-nav__logo { font-size: 17px; }
    .wholesale-nav__logo--image img {
      width: 120px;
      max-height: 60px;
    }
    .wholesale-nav__cta {
      font-size: 12px;
      padding: 8px 14px;
    }
  }
/* END_SECTION:wholesale-nav */

/* START_SECTION:wholesale-partners (INDEX:60) */
.partners-section {
    background: var(--partners-bg, #FAF5EF);
    padding: clamp(56px, 8vw, 100px) 5vw;
    color: var(--partners-body, #7A5C48);
  }

  .partners-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .partners-header {
    margin: 0 0 50px;
    max-width: 720px;
  }

  .partners-section .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--partners-label, #C4845A);
    margin: 0 0 16px;
  }

  .partners-section .section-title {
    
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--partners-heading, #2E1F14);
    margin: 0 0 20px;
  }

  .partners-section .section-title em {
    color: var(--partners-em, #e86226);
    font-style: italic;
  }

  .partners-section .section-body {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--partners-body, #7A5C48);
  }

  .partners-section .section-body p { margin: 0; }

  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }

  .partner-pill {
    background: var(--partners-pill-bg, #FFFFFF);
    border: 1px solid var(--partners-pill-border, #E8D9CC);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .partner-pill-icon {
    flex-shrink: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    color: var(--partners-pill-icon, #C4845A);
  }

  .partner-pill-icon .icon { color: inherit; }

  .partner-pill-icon--image img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .partner-pill-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--partners-pill-text, #2E1F14);
    line-height: 1.3;
  }
/* END_SECTION:wholesale-partners */

/* START_SECTION:wholesale-products (INDEX:61) */
.products-section {
    background: var(--prod-bg, #FFFCF8);
    padding: clamp(56px, 8vw, 100px) 5vw;
  }

  .products-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .products-header {
    text-align: center;
    margin: 0 auto 56px;
    max-width: 720px;
  }

  .products-section .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--prod-label, #C4845A);
    margin: 0 0 16px;
  }

  .products-section .section-title {
    
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--prod-heading, #2E1F14);
    margin: 0 0 16px;
  }

  .products-section .section-title em {
    color: var(--prod-em, #e86226);
    font-style: italic;
  }

  .products-section .section-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--prod-body, #7A5C48);
    margin: 0;
  }

  .products-section .section-body p { margin: 0; }

  .products-empty {
    text-align: center;
    color: var(--prod-body, #7A5C48);
    font-size: 14px;
    padding: 40px 20px;
    border: 1px dashed #E8D9CC;
    border-radius: 16px;
  }

  .prod-card {
    display: flex;
    flex-direction: column;
    background: var(--prod-card-bg, #FAF5EF);
    border: 1px solid var(--prod-card-border, #E8D9CC);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    position: relative;
    isolation: isolate;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
  }

  .prod-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--prod-stripe-start, #C4845A), var(--prod-stripe-end, #D4A96A));
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
  }

  .prod-card:hover,
  .prod-card:focus-visible {
    transform: translateY(-4px);
  }

  .prod-card:hover::after,
  .prod-card:focus-visible::after {
    opacity: 1;
  }

  .prod-card__media {
    position: relative;
    background: var(--prod-card-image-bg, #FFFFFF);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .prod-card__media img,
  .prod-card__media svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .prod-card__placeholder {
    width: 100%;
    height: 100%;
    color: rgba(46, 31, 20, 0.18);
  }

  .prod-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--prod-badge-bg, rgba(255, 252, 248, 0.94));
    color: var(--prod-badge-text, #C4845A);
    border: 1px solid var(--prod-badge-border, rgba(196, 132, 90, 0.35));
    backdrop-filter: saturate(140%) blur(4px);
    -webkit-backdrop-filter: saturate(140%) blur(4px);
  }

  .prod-card__body {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto;
  }

  .prod-card__name {
    
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--prod-card-name, #2E1F14);
    margin: 0;
  }

  .prod-card__desc {
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--prod-card-desc, #7A5C48);
    margin: 0;
  }

  @media (max-width: 600px) {
    .prod-card__body { padding: 18px 16px; }
    .prod-card__name { font-size: 16px; }
    .prod-card__desc { font-size: 12px; }
  }
/* END_SECTION:wholesale-products */

/* START_SECTION:wholesale-steps (INDEX:62) */
.wholesale-steps {
    background-color: var(--color-background);
    color: var(--color-text);
  }

  .wholesale-steps__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 5vw;
  }

  @media (min-width: 1024px) {
    .wholesale-steps__inner {
      padding: 96px 4vw;
    }
  }

  .wholesale-steps__header {
    text-align: center;
    margin: 0 auto 56px;
    max-width: 720px;
  }

  .wholesale-steps__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
    margin: 0 0 16px;
  }

  .wholesale-steps__heading {
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.2;
    margin: 0 0 16px;
  }

  .wholesale-steps__subheading {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
  }

  .wholesale-steps__subheading p { margin: 0; }

  .wholesale-steps__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
  }

  @media (min-width: 600px) {
    .wholesale-steps__list {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .wholesale-steps__list {
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }
  }

  .wholesale-steps__item {
    position: relative;
    padding-top: 8px;
  }

  .wholesale-steps__num {
    display: inline-block;
    
    font-style: italic;
    font-size: 40px;
    line-height: 1;
    opacity: 0.45;
    margin-bottom: 16px;
  }

  .wholesale-steps__title {
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 12px;
  }

  .wholesale-steps__text {
    font-size: 15px;
    line-height: 1.65;
    opacity: 0.8;
  }

  .wholesale-steps__text p { margin: 0; }

  .wholesale-steps__cta {
    text-align: center;
    margin-top: 56px;
  }
/* END_SECTION:wholesale-steps */

/* START_SECTION:wholesale-trust-bar (INDEX:63) */
.trust-bar {
    background: var(--trust-bg, #5C3D2A);
    color: var(--trust-text, rgba(255, 255, 255, 0.8));
    padding: var(--trust-pad-y, 18px) 5vw;
  }

  .trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 60px);
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: inherit;
  }

  .trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--trust-dot, #D4A96A);
    flex-shrink: 0;
    display: inline-block;
  }

  .trust-item__label {
    line-height: 1.2;
  }
/* END_SECTION:wholesale-trust-bar */

/* START_SECTION:wholesale-why (INDEX:64) */
.why-section {
    background: var(--why-bg, #FAF5EF);
    padding: clamp(56px, 8vw, 100px) 5vw;
    color: var(--why-body, #7A5C48);
  }

  .why-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }

  @media (min-width: 900px) {
    .why-inner {
      grid-template-columns: 1fr 1.6fr;
      gap: 80px;
    }

    .why-left {
      position: sticky;
      top: 100px;
    }
  }

  .why-section .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--why-label, #C4845A);
    margin: 0 0 16px;
  }

  .why-section .section-title {
    
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--why-heading, #2E1F14);
    margin: 0 0 20px;
  }

  .why-section .section-title em {
    color: var(--why-em, #e86226);
    font-style: italic;
  }

  .why-section .section-body {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--why-body, #7A5C48);
  }

  .why-section .section-body p { margin: 0 0 1em; }
  .why-section .section-body p:last-child { margin-bottom: 0; }

  .why-cta {
    margin-top: 28px;
    display: flex;
    justify-content: flex-start;
  }

  @media (max-width: 900px) {
    .why-cta {
      justify-content: center;
    }
  }

  .why-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  @media (min-width: 600px) {
    .why-right {
      grid-template-columns: 1fr 1fr;
    }
  }

  .why-card {
    background: var(--why-card-bg, #FFFFFF);
    border: 1px solid var(--why-card-border, #E8D9CC);
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .why-card:hover {
    border-color: var(--why-card-hover, #C4845A);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 31, 20, 0.06);
  }

  .why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--why-icon-bg, #FAF5EF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--why-icon-color, #C4845A);
    margin: 0 0 16px;
    overflow: hidden;
  }

  .why-icon .icon { color: inherit; }

  .why-icon--image img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .why-card__heading {
    
    font-size: 18px;
    font-weight: 500;
    color: var(--why-card-heading, #2E1F14);
    margin: 0 0 10px;
    line-height: 1.3;
  }

  .why-card__body {
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--why-card-body, #7A5C48);
  }

  .why-card__body p { margin: 0; }
/* END_SECTION:wholesale-why */