:root {
    --theme-color: #ac1e12;
    --secondary-color: #211f1a;
    --theme-light:  color-mix(in srgb, var(--theme-color), white 30%);
    --theme-dark:   color-mix(in srgb, var(--theme-color), black 20%);
    --theme-soft:   color-mix(in srgb, var(--theme-color), transparent 92%);
    --theme-faint:  color-mix(in srgb, var(--theme-color), transparent 97%);
    --secondary-dark:   color-mix(in srgb, var(--secondary-color), black 55%);
    --secondary-deeper: color-mix(in srgb, var(--secondary-color), black 37%);
    --banner-dark:    var(--secondary-dark);
    --banner-card-bg: var(--secondary-deeper);
    --banner-orange:        color-mix(in srgb, var(--theme-color), yellow 52%);
    --banner-orange-hover:  color-mix(in srgb, var(--banner-orange), black 15%);
    --banner-orange-soft:   color-mix(in srgb, var(--banner-orange), transparent 85%);
    --banner-orange-border: color-mix(in srgb, var(--banner-orange), transparent 70%);
    --banner-text:          white;
    --banner-text-muted:    color-mix(in srgb, white, transparent 35%);
    --banner-text-soft:     color-mix(in srgb, white, transparent 15%);
    --banner-border:        color-mix(in srgb, white, transparent 90%);
    --banner-border-subtle: color-mix(in srgb, white, transparent 93%);
    --banner-border-strong: color-mix(in srgb, white, transparent 75%);
    --banner-border-half:   color-mix(in srgb, white, transparent 50%);
    --banner-overlay:       color-mix(in srgb, white, transparent 92%);
    --bg-alt:        color-mix(in srgb, var(--secondary-color), white 96%);
    --bg-alt-border: color-mix(in srgb, var(--secondary-color), white 82%);
    --bg-alt-text:   var(--secondary-color);
    --bg-alt-muted:  color-mix(in srgb, var(--secondary-color), white 45%);
}

/* Shared eyebrow style across all sections */
.tp-title, .how-eyebrow, .na-eyebrow, .wp-eyebrow,
.wpl-eyebrow, .bs-eyebrow, .pr-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--theme-color);
}

/* THEME BUTTONS */
.theme-btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px;
    font-size: 14px; font-weight: 600; border-radius: 6px; cursor: pointer;
    text-decoration: none; transition: all 0.25s ease; border: 2px solid transparent; line-height: 1;
}
.theme-btn.fill  { background: var(--theme-color); color: var(--banner-text); border-color: var(--theme-color); }
.theme-btn.fill:hover { background: var(--banner-orange-hover); border-color: var(--banner-orange-hover); color: var(--banner-text); }
.theme-btn.outline { background: transparent; color: var(--banner-text); border-color: var(--banner-border-half); }
.theme-btn.outline:hover { border-color: var(--banner-text); color: var(--banner-text); }

/* B2B HERO BANNER */
body { background: var(--banner-text); }
.b2b-top-strip { background: var(--theme-color); display: flex; align-items: center; justify-content: space-between; padding: 8px 30px; gap: 20px; }
.b2b-strip-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.b2b-top-strip .strip-text       { color: var(--banner-text); font-size: 13px; font-weight: 600; }
.b2b-top-strip .strip-text-light { color: var(--banner-text-soft); font-size: 13px; }
.b2b-marquee-strip { background: var(--banner-text); overflow: hidden; padding: 10px 0; }
.b2b-marquee-track { display: flex; white-space: nowrap; will-change: transform; }
.b2b-marquee-track span { color: var(--theme-color); font-size: 13px; font-weight: 500; letter-spacing: 0.05em; padding: 0 20px; text-transform: uppercase; }
.b2b-marquee-dot { color: var(--banner-orange); padding: 0 !important; }
.b2b-hero-banner {
    position: relative; padding: 70px 30px; overflow: hidden;
    background: var(--banner-dark); background-size: cover;
    background-position: center; background-repeat: no-repeat;
}
.b2b-hero-inner {
    position: relative; max-width: 1635px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.b2b-hero-left { flex: 1; max-width: 55%; }
.b2b-hero-badge {
    display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--banner-border-strong);
    color: var(--banner-text); font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
    padding: 6px 14px; border-radius: 50px; margin-bottom: 20px; text-transform: uppercase;
}
.b2b-hero-badge::before { content: '\25CF'; color: var(--banner-orange); margin-right: 6px; }
.b2b-hero-heading { color: var(--banner-text); font-size: 48px; font-weight: 700; line-height: 1.2; margin-bottom: 18px; }
.b2b-hero-heading strong { color: var(--theme-color); }
.b2b-hero-heading .orange { color: var(--banner-orange); }
.b2b-hero-text { color: var(--banner-text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 30px; max-width: 480px; }
.hero-stats { display: flex; gap: 40px; margin-top: 35px; }
.hero-stats .stat-num   { color: var(--banner-text); font-size: 30px; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.hero-stats .stat-label { color: var(--banner-text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.b2b-hero-right { flex-shrink: 0; width: 400px; }
.b2b-right-card { background: var(--banner-card-bg); border: 1px solid var(--banner-border); border-radius: 12px; overflow: hidden; padding: 20px; }
.b2b-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.b2b-card-heading { color: var(--banner-text-muted); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.b2b-card-badge { background: var(--banner-orange-soft); color: var(--banner-orange); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 50px; border: 1px solid var(--banner-orange-border); }
.b2b-card-badge::before { content: '• '; }
.b2b-card-items { display: flex; flex-direction: column; gap: 4px; }
.b2b-card-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--banner-border-subtle); }
.b2b-card-item:last-child { border-bottom: none; }
.b2b-card-item-img { width: 52px; height: 52px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--banner-overlay); }
.b2b-card-item-img img { width: 100%; height: 100%; object-fit: cover; }
.b2b-card-item-content { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.b2b-card-item-title { color: var(--banner-text); font-size: 13px; font-weight: 600; }
.b2b-card-item-text  { color: var(--banner-text-muted); font-size: 11px; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
.b2b-card-item-price { color: var(--banner-orange); font-size: 12px; font-weight: 600; white-space: nowrap; }
.b2b-card-footer { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--banner-border); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.b2b-card-min-order { color: var(--banner-text-muted); font-size: 11px; line-height: 1.5; }
.b2b-card-login { color: var(--banner-orange); font-size: 12px; font-weight: 600; white-space: nowrap; text-decoration: none; }
.b2b-card-login:hover { text-decoration: underline; }

/* Responsive — clamp handles fluid, breakpoints handle layout */
.b2b-hero-banner      { padding: clamp(40px, 6vw, 70px) clamp(15px, 3vw, 30px); }
.b2b-hero-heading     { font-size: clamp(26px, 4vw, 48px); }
.hero-stats .stat-num { font-size: clamp(20px, 2.5vw, 30px); }
.b2b-hero-inner       { gap: clamp(20px, 3vw, 40px); }
.b2b-top-strip        { padding: 8px clamp(15px, 2vw, 30px); }
.b2b-right-card       { padding: clamp(14px, 2vw, 20px); }
@media (max-width: 900px) {
    .b2b-hero-inner { flex-direction: column; }
    .b2b-hero-left  { max-width: 100%; }
    .b2b-hero-right { width: 100%; }
    .hero-stats     { gap: clamp(20px, 5vw, 40px); }
}
@media (max-width: 600px) {
    .b2b-top-strip            { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .b2b-top-strip .theme-btn { width: 100%; justify-content: center; }
    .b2b-hero-btns            { display: flex; gap: 5px; flex-wrap: wrap; white-space: nowrap; }
    .b2b-hero-btns .theme-btn { flex: 1; justify-content: center; }
    .hero-stats               { flex-wrap: wrap; gap: 20px; }
    .b2b-strip-inner          { justify-content: center; text-align: center; }
}

/* KEYWORD STRIP */
.kw-strip-inner { display: grid; grid-template-columns: auto 1fr; align-items: stretch; }
.kw-label { background: var(--theme-color); color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 12px 20px; white-space: nowrap; display: flex; align-items: center; }
.kw-pills { display: flex; flex-wrap: nowrap; gap: 8px; overflow-x: auto; background: #e2e0db; padding: 12px 20px 10px; scrollbar-width: thin; scrollbar-color: var(--theme-color) #e2e0db; }
.kw-pills::-webkit-scrollbar       { height: 4px; }
.kw-pills::-webkit-scrollbar-track { background: #e2e0db; border-radius: 50px; }
.kw-pills::-webkit-scrollbar-thumb { background: var(--theme-color); border-radius: 50px; }
.kw-pill { flex-shrink: 0; font-size: 12px; font-weight: 500; color: var(--theme-color); background: #fff; border: 1px solid var(--bg-alt-border); padding: 5px 16px; border-radius: 50px; white-space: nowrap; }

/* TRADE PARTNER */
.tp-inner { display: flex; align-items: center; gap: 80px; }
.tp-left { flex: 1; }
.tp-title { margin-bottom: 14px; }
.tp-heading { color: var(--secondary-color); font-size: clamp(28px, 3vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 22px; letter-spacing: -0.5px; }
.tp-text { color: var(--bg-alt-muted); font-size: 14px; line-height: 1.8; margin-bottom: 28px; }
.tp-text p { margin-bottom: 14px; }
.tp-text p:last-child { margin-bottom: 0; }
.tp-bullets ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.tp-bullets ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--secondary-color); line-height: 1.5; }
.tp-bullets ul li::before {
    content: '\2713'; display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; min-width: 22px; border-radius: 50%;
    background: var(--theme-color); color: white; font-size: 12px; font-weight: 700; margin-top: 1px;
}
.tp-right { flex-shrink: 0; width: 46%; }
.tp-card  { background: white; border: 1px solid var(--bg-alt-border); border-radius: 16px; padding: 24px; position: relative; display: flex; flex-direction: column; gap: 10px; box-shadow: 0 6px 40px var(--theme-faint); }
.tp-badge { position: absolute; top: -14px; right: 20px; background: var(--theme-color); color: white; font-size: 11px; font-weight: 700; padding: 7px 18px; border-radius: 50px; letter-spacing: 0.04em; }
.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.kpi      { background: var(--bg-alt); border: 1px solid var(--bg-alt-border); border-radius: 10px; padding: 18px 20px; }
.kpi-n    { color: var(--secondary-color); font-size: 34px; font-weight: 800; line-height: 1; margin-bottom: 8px; letter-spacing: -1px; }
.kpi-n span { color: var(--theme-color); font-size: 22px; }
.kpi-l    { color: var(--bg-alt-muted); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.dispatch-box  { background: var(--bg-alt); border: 1px solid var(--bg-alt-border); border-radius: 10px; padding: 16px 20px; }
.dispatch-tag  { color: var(--bg-alt-muted); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.dispatch-loc  { color: var(--secondary-color); font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.dispatch-note { color: var(--bg-alt-muted); font-size: 12px; line-height: 1.5; }
.dispatch-note a { color: var(--theme-color); text-decoration: none; }
.dispatch-note a:hover { text-decoration: underline; }
@media (max-width: 900px) { .tp-inner { flex-direction: column; gap: 50px; } .tp-right { width: 100%; } }
@media (max-width: 600px) { .kpi-grid { grid-template-columns: 1fr 1fr; } .kpi-n { font-size: 28px; } .tp-heading { letter-spacing: -0.3px; } }

/* PRODUCT RANGE */
.product-range { text-align: center; }
.pr-eyebrow { margin-bottom: 12px; }
.pr-heading { color: var(--secondary-color); font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.pr-text    { color: var(--bg-alt-muted); font-size: 14px; line-height: 1.7; max-width: 580px; margin: 0 auto 48px; }
.pr-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: left; }
.pr-card    { background: white; border: 1px solid var(--bg-alt-border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.pr-card:hover { box-shadow: 0 20px 50px color-mix(in srgb, var(--secondary-color), transparent 84%); transform: translateY(-5px); }
.pr-card-top { background: var(--bg-alt); height: 200px; position: relative; display: flex; align-items: center; justify-content: center; padding: 28px; overflow: hidden; }
.pr-card-top img { max-height: 160px; max-width: 80%; width: auto; height: auto; object-fit: contain; transition: transform 0.4s ease; }
.pr-card:hover .pr-card-top img { transform: scale(1.07); }
.pr-card-body  { padding: 20px 20px 14px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.pr-card-title { color: var(--secondary-color); font-size: 15px; font-weight: 700; line-height: 1.3; letter-spacing: -0.2px; margin: 0; }
.pr-card-desc  { color: var(--bg-alt-muted); font-size: 11px; line-height: 1.65; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.pr-card-tags  { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.pr-tag        { font-size: 11px; font-weight: 600; padding: 4px 11px; border-radius: 50px; }
.pr-tag-count  { background: var(--bg-alt); border: 1px solid var(--theme-color); }
.pr-tag-moq    { background: var(--bg-alt); border: 1px solid var(--theme-light); }
.pr-tag-price  { background: var(--theme-soft); color: var(--theme-color); border: 1px solid color-mix(in srgb, var(--theme-color), transparent 78%); font-weight: 700; }
.pr-card-btn   { display: block; margin: 0 20px 20px; padding: 11px; text-align: center; border: 1.5px solid var(--bg-alt-border); border-radius: 9px; color: var(--secondary-color); font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.25s ease; background: transparent; }
.pr-card:hover .pr-card-btn { border-color: var(--theme-color); color: var(--theme-color); background: var(--theme-soft); }
.pr-browse-wrap { text-align: center; margin-top: 40px; }
@media (max-width: 1100px) { .pr-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .pr-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px)  { .pr-grid { grid-template-columns: 1fr; } }

/* DESIGN THEMES */
.design-themes { background: white; }
.dt-box   { background: var(--bg-alt); border: 1px solid var(--bg-alt-border); border-radius: 16px; padding: 28px 32px; margin-top: 20px; }
.dt-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--bg-alt-muted); margin-bottom: 18px; text-align: left; }
.dt-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.dt-pill  { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 50px; font-size: 12.5px; font-weight: 500; text-decoration: none; border: 1px solid transparent; transition: all 0.2s ease; white-space: nowrap; }
.dt-pill-img   { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.dt-pill-name  { font-weight: 600; }
.dt-pill-sep   { opacity: 0.45; font-size: 11px; }
.dt-pill-count { opacity: 0.7; font-size: 11.5px; }
.dt-pill--amber  { border-color: #fde68a; } .dt-pill--blue   { border-color: #bfdbfe; }
.dt-pill--rose   { border-color: #fecdd3; } .dt-pill--teal   { border-color: #99f6e4; }
.dt-pill--violet { border-color: #ddd6fe; } .dt-pill--green  { border-color: #bbf7d0; }
.dt-pill--orange { border-color: #fed7aa; } .dt-pill--sky    { border-color: #bae6fd; }
.dt-pill--pink   { border-color: #fbcfe8; } .dt-pill--lime   { border-color: #d9f99d; }
.dt-pill--indigo { border-color: #c7d2fe; } .dt-pill--cyan   { border-color: #a5f3fc; }
.dt-pill:hover { filter: brightness(0.94); transform: translateY(-1px); }
@media (max-width: 768px) { .dt-box { padding: 20px; } .dt-pill { font-size: 12px; padding: 5px 12px; } }

/* NEW ARRIVAL */
.new-arrival { background: white; }
.na-eyebrow { margin-bottom: 8px; }
.na-heading { color: var(--secondary-color); font-size: clamp(24px, 3vw, 38px); font-weight: 800; margin-bottom: 10px; }
.na-text    { color: var(--bg-alt-muted); font-size: 14px; line-height: 1.7; margin-bottom: 30px; }
.na-card    { background: white; border: 1px solid var(--bg-alt-border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.na-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-2px); }
.na-card-img-wrap { display: block; position: relative; background: var(--bg-alt); overflow: hidden; }
.na-card-img-wrap img { width: 100%; height: 180px; object-fit: contain; padding: 16px; display: block; transition: transform 0.3s ease; }
.na-card:hover .na-card-img-wrap img { transform: scale(1.04); }
.na-card-no-img { width: 100%; height: 180px; background: var(--bg-alt); }
.na-card-badge  { position: absolute; top: 10px; left: 10px; background: var(--theme-color); color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 50px; }
.na-card-body   { padding: 14px 16px 10px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.na-card-cat    { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--theme-color); }
.na-card-title  { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--secondary-color); margin: 0; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; min-height: 36px; }
.na-card-title a { color: inherit; text-decoration: none; }
.na-card-title a:hover { color: var(--theme-color); }
.na-card-price  { font-size: 14px; font-weight: 700; color: var(--theme-color); margin-top: 4px; }
.na-card-price del { color: var(--bg-alt-muted); font-weight: 400; font-size: 12px; }
.na-card-price ins { text-decoration: none; }
.na-card-btn    { display: block; margin: 0 16px 16px; padding: 9px 14px; background: var(--bg-alt); border: 1.5px solid var(--bg-alt-border); border-radius: 8px; color: var(--secondary-color); font-size: 12px; font-weight: 600; text-align: center; text-decoration: none; white-space: nowrap; transition: all 0.2s ease; }
.na-card-btn:hover { background: var(--secondary-color); border-color: var(--secondary-color); color: white; }
.new-arrival .owl-carousel { padding: 8px 4px; }
.new-arrival .owl-stage-outer { padding: 15px 0 0; }
.new-arrival .owl-nav { margin-top: 20px; text-align: center; }
.new-arrival .owl-nav button { width: 36px; height: 36px; border-radius: 50% !important; background: white !important; border: 1.5px solid var(--bg-alt-border) !important; color: var(--secondary-color) !important; font-size: 18px !important; line-height: 1 !important; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.2s ease; }
.new-arrival .owl-nav button:hover { background: var(--secondary-color) !important; border-color: var(--secondary-color) !important; color: white !important; }
.new-arrival .owl-nav button span { font-size: 22px; line-height: 1; }

/* BEST SELLING */
.bs-eyebrow { text-align: center; margin-bottom: 8px; }
.bs-heading { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--secondary-color); text-align: center; margin-bottom: 10px; }
.bs-subtext { font-size: 14px; color: var(--bg-alt-muted); text-align: center; max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.bs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; }
.bs-card { background: white; border-radius: 14px; border: 1px solid var(--bg-alt-border); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.bs-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.10); transform: translateY(-3px); }
.bs-card-img { position: relative; padding: 24px; display: flex; align-items: center; justify-content: center; min-height: 180px; }
.bs-card-img img { width: 100%; height: 140px; object-fit: contain; display: block; transition: transform 0.3s ease; }
.bs-card:hover .bs-card-img img { transform: scale(1.05); }
.bs-rank { position: absolute; top: 10px; right: 10px; width: 28px; height: 28px; background: var(--secondary-color); color: white; font-size: 12px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1; }
.bs-card-body  { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--bg-alt-border); }
.bs-card-title { font-size: 14px; font-weight: 700; color: var(--secondary-color); margin: 0; line-height: 1.35; }
.bs-card-title a { color: inherit; text-decoration: none; }
.bs-card-title a:hover { color: var(--theme-color); }
.bs-card-cat   { font-size: 11px; color: var(--bg-alt-muted); font-weight: 500; }
.bs-card-price { font-size: 12px; color: var(--bg-alt-muted); margin-top: 6px; display: flex; align-items: center; flex-wrap: wrap; gap: 2px; }
.bs-card-price .woocommerce-Price-amount { font-weight: 700; color: var(--secondary-color); }
.bs-login-link { color: var(--theme-color); font-weight: 600; text-decoration: none; white-space: nowrap; }
.bs-login-link:hover { text-decoration: underline; }
.bs-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 10px; }
.bs-ctas .theme-btn.outline       { background: white; color: var(--secondary-color); border-color: var(--bg-alt-border); }
.bs-ctas .theme-btn.outline:hover { background: var(--secondary-color); border-color: var(--secondary-color); color: white; }
@media (max-width: 1024px) { .bs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .bs-grid { grid-template-columns: repeat(2, 1fr); } .bs-ctas .theme-btn { flex-grow: 1; } }
@media (max-width: 480px)  { .bs-grid { grid-template-columns: 1fr; } }

/* WHOLESALE PRICE LIST */
.wpl-section { background: white; }
.wpl-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.wpl-eyebrow { margin-bottom: 12px; }
.wpl-heading { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--secondary-color); line-height: 1.2; margin-bottom: 16px; }
.wpl-text    { font-size: 14px; color: var(--bg-alt-muted); line-height: 1.8; margin-bottom: 24px; }
.wpl-bullets { margin-bottom: 28px; }
.wpl-bullets ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.wpl-bullets ul li { font-size: 13px; color: var(--secondary-color); padding-left: 16px; position: relative; line-height: 1.5; }
.wpl-bullets ul li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--theme-color); }
.wpl-contact-box { margin-top: 28px; }
.call-box   { background: var(--bg-alt); border-left: 3px solid var(--theme-color); border-radius: 0 8px 8px 0; padding: 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.call-title { font-size: 13px; font-weight: 700; color: var(--secondary-color); margin-bottom: 4px; }
.call-meta  { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 13px; color: var(--bg-alt-muted); margin: 0; }
.call-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bg-alt-muted); min-width: 36px; }
.call-meta a { color: var(--theme-color); text-decoration: none; font-weight: 500; }
.call-meta a:hover { text-decoration: underline; }
.call-hours { color: var(--bg-alt-muted); }
.wpl-form-card  { background: var(--bg-alt); border: 1px solid var(--bg-alt-border); border-radius: 16px; padding: 36px 32px; }
.wpl-form-title { font-size: 18px; font-weight: 700; color: var(--secondary-color); margin-bottom: 24px; }
.wpl-form .wpl-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.wpl-form .form-row  { margin-bottom: 16px; }
.wpl-form label { display: block; font-size: 12px; font-weight: 600; color: var(--secondary-color); margin-bottom: 6px; letter-spacing: 0.02em; }
.wpl-req { color: var(--theme-color); }
.wpl-form input[type="text"],
.wpl-form input[type="email"],
.wpl-form input[type="tel"],
.wpl-form select,
.wpl-form .wc-cat-select {
    width: 100%; border: 1px solid var(--bg-alt-border); border-radius: 8px; padding: 11px 14px;
    font-size: 13px; color: var(--secondary-color); background: white; outline: none;
    transition: border-color 0.2s ease; box-sizing: border-box; -webkit-appearance: none; appearance: none;
}
.wpl-form input:focus,
.wpl-form select:focus,
.wpl-form .wc-cat-select:focus { border-color: var(--theme-color); }
.wpl-submit-wrap { margin-top: 6px; }
.wpl-form .wpl-submit,
.wpl-form input[type="submit"].wpl-submit {
    width: 100%; padding: 14px 20px; background: var(--theme-color); color: white;
    font-size: 14px; font-weight: 700; border: none; border-radius: 8px;
    cursor: pointer; transition: background 0.2s ease; letter-spacing: 0.02em;
}
.wpl-form .wpl-submit:hover { background: var(--theme-dark); }
.wpl-privacy { font-size: 11px; color: var(--bg-alt-muted); text-align: center; margin-top: 12px; }
.wpl-form-card .wpcf7-not-valid-tip    { font-size: 11px; color: var(--theme-color); margin-top: 4px; display: block; }
.wpl-form-card .wpcf7-response-output  { margin: 12px 0 0; font-size: 13px; padding: 10px 14px; border-radius: 8px; }
@media (max-width: 900px) { .wpl-inner { grid-template-columns: 1fr; gap: 40px; } .wpl-form-card { padding: 24px 20px; } }
@media (max-width: 560px) { .wpl-form .wpl-row-2 { grid-template-columns: 1fr; } }

/* WHOLESALE PARTNERS */
.wp-brands { text-align: center; }
.wp-eyebrow { margin-bottom: 10px; }
.wp-heading { font-size: clamp(22px, 2.5vw, 34px); font-weight: 800; color: var(--secondary-color); margin-bottom: 40px; }
.wp-brand-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; }
.wp-brand-item  { display: flex; align-items: center; gap: 10px; background: white; border: 1px solid var(--bg-alt-border); border-radius: 50px; padding: 10px 20px; transition: box-shadow 0.2s ease; }
.wp-brand-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.wp-flag       { width: 22px; height: 16px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
.wp-brand-name { font-size: 13px; font-weight: 600; color: var(--secondary-color); white-space: nowrap; }

/* TESTIMONIALS */
.reviews-section { margin-top: 40px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rev-card { background: var(--bg-alt); border: 1px solid var(--bg-alt-border); border-radius: 16px; padding: 30px 28px 24px; display: flex; flex-direction: column; gap: 0; position: relative; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.rev-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); transform: translateY(-2px); }
.rev-card::before { content: '\201C'; position: absolute; top: 20px; right: 24px; font-size: 72px; line-height: 1; color: var(--theme-color); opacity: 0.08; font-family: Georgia, serif; pointer-events: none; }
.stars    { color: #f59e0b; font-size: 13px; letter-spacing: 3px; margin-bottom: 14px; }
.rev-text { font-size: 13px; color: var(--bg-alt-muted); line-height: 1.8; flex: 1; margin: 0 0 20px; font-style: italic; }
.reviewer { border-top: 1px solid var(--bg-alt-border); padding-top: 16px; display: flex; flex-direction: column; gap: 3px; }
.r-name   { font-size: 13px; font-weight: 700; color: var(--secondary-color); }
.r-role   { font-size: 11px; color: var(--bg-alt-muted); line-height: 1.5; }
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .rev-grid { grid-template-columns: 1fr; } }

/* HOW WHOLESALE ORDERING WORKS */
.how-order   { background: var(--bg-alt); }
.how-eyebrow { text-align: center; margin-bottom: 12px; }
.how-heading { text-align: center; font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; color: var(--secondary-color); margin-bottom: 14px; line-height: 1.2; }
.how-subtext { text-align: center; font-size: 14px; color: var(--bg-alt-muted); max-width: 520px; margin: 0 auto 64px; line-height: 1.75; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; gap: 0 10px; }
.how-steps::before {
    content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 1px;
    background: linear-gradient(to right, transparent, var(--bg-alt-border) 20%, var(--bg-alt-border) 80%, transparent);
    z-index: 0;
}
.how-step      { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
.how-step-top  { position: relative; margin-bottom: 28px; }
.how-step-circle { width: 80px; height: 80px; border-radius: 50%; background: white; border: 1px solid var(--bg-alt-border); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.how-step-circle img { width: 34px; height: 34px; object-fit: contain; opacity: 0.75; transition: opacity 0.3s ease; }
.how-step-num  { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-radius: 50%; background: var(--bg-alt-border); border: 1px solid white; color: var(--bg-alt-muted); font-size: 9px; font-weight: 800; letter-spacing: 0.05em; display: flex; align-items: center; justify-content: center; z-index: 2; }
.how-step--active .how-step-circle { background: var(--theme-color); border-color: var(--theme-color); box-shadow: 0 0 0 8px var(--theme-soft), 0 4px 20px rgba(172,30,18,0.2); }
.how-step--active .how-step-circle img { filter: brightness(0) invert(1); opacity: 1; }
.how-step--active .how-step-num     { background: var(--theme-color); border-color: white; color: white; }
.how-step--active .how-step-heading { color: var(--theme-color); }
.how-step-heading { font-size: 15px; font-weight: 700; color: var(--secondary-color); margin-bottom: 10px; line-height: 1.3; }
.how-step-text    { font-size: 13px; color: var(--bg-alt-muted); line-height: 1.75; }
@media (max-width: 768px) { .how-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } .how-steps::before { display: none; } }
@media (max-width: 480px) { .how-steps { grid-template-columns: 1fr; } }

/* UTILITIES */
.spacing { padding-top: 70px; padding-bottom: 70px; }
.bg-alt  { background: var(--bg-alt); }
@media (max-width: 600px) { .spacing { padding-top: 50px; padding-bottom: 50px; } }

/* NON-LOGIN SECTION */
.non-login      { position: relative; overflow: hidden; }
.nonlogin-inner { position: relative; display: flex; align-items: center; gap: 0; justify-content: space-between; }
.nonlogin-left  { padding-right: 60px; }
.nonlogin-heading { color: var(--bg-alt-text); font-size: 26px; font-weight: 800; line-height: 1.25; margin-bottom: 12px; letter-spacing: -0.3px; }
.nonlogin-text    { color: var(--bg-alt-muted); font-size: 13.5px; line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.nonlogin-cards   { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.nonlogin-card    { flex-grow: 1; padding: 22px 20px; background: white; border: 1px solid var(--bg-alt-border); border-radius: 4px; display: flex; flex-direction: column; align-items: center; box-shadow: 0 2px 16px var(--theme-faint); }
.nonlogin-card strong { display: block; color: var(--theme-color); font-size: 32px; font-weight: 800; line-height: 1; letter-spacing: -0.5px; }
.nonlogin-card span   { display: block; color: var(--bg-alt-text); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 10px; }
.nonlogin-card small  { display: block; color: var(--bg-alt-muted); font-size: 11px; margin-top: 4px; }
.nonlogin-right   { flex-shrink: 0; width: 340px; padding-left: 60px; border-left: 1px solid var(--bg-alt-border); }
.nonlogin-cta-box { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.nonlogin-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--banner-orange); color: white; padding: 15px 28px; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; letter-spacing: 0.01em; transition: all 0.25s ease; box-shadow: 0 4px 28px var(--banner-orange-soft); }
.nonlogin-btn:hover { background: var(--banner-orange-hover); color: white; box-shadow: 0 6px 36px var(--banner-orange-border); transform: translateY(-2px); }
.nonlogin-small-text { color: var(--bg-alt-muted); font-size: 13px; line-height: 1.65; margin: 0; text-align: center; }
@media (max-width: 900px) {
    .nonlogin-inner   { flex-direction: column; gap: 40px; }
    .nonlogin-left    { padding-right: 0; }
    .nonlogin-right   { width: 100%; padding-left: 0; border-left: none; border-top: 1px solid var(--bg-alt-border); padding-top: 40px; }
    .nonlogin-cta-box { align-items: flex-start; text-align: left; }
    .nonlogin-btn     { width: auto; }
}
@media (max-width: 600px) { .nonlogin-btn { width: 100%; } }

/* HOME CTA */
.home-cta { position: relative; background-color: var(--secondary-dark); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 100px 0; text-align: center; background-attachment: fixed !important; }
.home-cta-overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--theme-color), transparent 20%); }
.home-cta-inner   { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-eyebrow { display: inline-block; background: #fff; border: 1px solid var(--banner-orange-border); color: var(--banner-orange); font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; padding: 6px 18px; border-radius: 100px; margin: 0 0 20px; }
.home-cta .cta-heading { font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: white; line-height: 1.15; letter-spacing: -0.5px; margin: 0 0 18px; }
.home-cta .cta-text    { font-size: 16px; color: var(--banner-text-muted); line-height: 1.75; margin: 0 0 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-btns .theme-btn.fill         { background: white; color: var(--theme-color); border-color: white; }
.cta-btns .theme-btn.fill:hover   { background: color-mix(in srgb, white, transparent 10%); border-color: white; color: var(--theme-color); }
.cta-btns .theme-btn.outline      { background: transparent; color: white; border-color: white; }
.cta-btns .theme-btn.outline:hover { background: color-mix(in srgb, white, transparent 85%); border-color: white; color: white; }
@media (max-width: 600px) { .home-cta { padding: 70px 0; } .cta-btns { flex-direction: column; align-items: center; } .cta-btns .theme-btn { width: 100%; max-width: 280px; justify-content: center; } }
 