/*
 Theme Name:   Hello Raptor
 Theme URI:    https://raptorlabsau.com
 Description:  Child theme of Hello Elementor — clean, minimalist storefront design
               matching the raptorlabsau.com look.
 Author:       RaptorLabs
 Author URI:   https://raptorlabsau.com
 Template:     hello-elementor
 Version:      2.0.79
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  hello-raptor
*/

/* ============================================================
   Raptor Labs — clean / flat design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --rl-bg:       #ffffff;
    --rl-fg:       #0a0a0a;   /* primary text */
    --rl-muted:    #6b7280;   /* secondary text */
    --rl-border:   #e6e6e6;   /* hairlines */
    --rl-surface:  #fafafa;   /* subtle panels */
    --rl-dark:     #0b0b0c;   /* header accents / footer */
    --rl-black:    #000000;
    --rl-accent:   #111111;   /* primary action */
    --rl-accent-h: #333333;   /* primary action hover */
    --rl-pink:     #faa0bf;   /* brand accent */
    --rl-red:      #e11d2a;   /* mascot red */
    --rl-display:  'Anton', 'Oswald', sans-serif;
    --rl-cond:     'Oswald', 'Inter', sans-serif;
    --rl-radius:   10px;
    --rl-radius-s: 8px;
    --rl-shadow:   0 6px 24px rgba(0, 0, 0, 0.08);
    --rl-hard-shadow: 5px 5px 0 var(--rl-black);
    --rl-hard-shadow-hover: 2px 2px 0 var(--rl-black);
    --rl-maxw:     1440px;
}

/* Display headings — heavy condensed uppercase brand type */
h1.rl-display, h2.rl-display, .rl-display {
    font-family: var(--rl-display);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-weight: 400;
}

html { -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--rl-fg);
    background: var(--rl-bg);
    letter-spacing: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--rl-fg);
    text-transform: none;
}

a {
    color: var(--rl-fg);
    text-decoration: none;
    text-underline-offset: 0.18em;
    transition: color 0.16s ease, text-decoration-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}
a:hover {
    color: var(--rl-black);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--rl-pink);
}

img { max-width: 100%; height: auto; }

.rl-container { max-width: var(--rl-maxw); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   Header
   ============================================================ */

.rl-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--rl-bg);
    border-bottom: 1px solid var(--rl-border);
}

.rl-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 82px;
    gap: 24px;
}

/* Wordmark (centered) — RAPTOR solid + LABS outlined, italic */
.rl-logo {
    justify-self: center;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.rl-logo:hover { opacity: 0.9; text-decoration: none; }
.rl-logo__img {
    display: block;
    width: clamp(132px, 13vw, 214px);
    max-height: 58px;
    object-fit: contain;
}

/* Primary nav (left) — bold condensed uppercase */
.rl-nav { justify-self: start; }
.rl-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}
.rl-nav a {
    display: inline-flex;
    align-items: center;
    font-family: var(--rl-cond);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--rl-black);
    padding: 7px 2px;
    position: relative;
    text-decoration: none;
    transition: color 0.16s ease;
}
.rl-nav a:hover {
    color: var(--rl-black);
    text-decoration: none;
    transform: none;
}
.rl-nav .current-menu-item > a::after,
.rl-nav a:hover::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--rl-black);
}

/* Utilities (right) — SHOP pill + icons */
.rl-utils { justify-self: end; display: flex; align-items: center; gap: 22px; }

.rl-shop-btn {
    font-family: var(--rl-cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.95rem;
    background: #fff;
    color: var(--rl-black);
    border: 2px solid var(--rl-black);
    border-radius: 0;
    padding: 11px 28px;
    box-shadow: 4px 4px 0 var(--rl-black);
    transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
    text-decoration: none;
}
.rl-shop-btn:hover {
    background: var(--rl-black);
    border-color: var(--rl-black);
    color: #fff;
    box-shadow: 2px 2px 0 var(--rl-black);
    transform: translate(2px, 2px);
    text-decoration: none;
}

.rl-icon-link { display: inline-flex; align-items: center; color: var(--rl-black); position: relative; }
.rl-icon-link:hover { color: var(--rl-black); opacity: 1; transform: translateY(-2px); text-decoration: none; }
.rl-icon-link svg { width: 26px; height: 26px; display: block; }

.rl-cart { position: relative; }
.rl-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--rl-black);
    color: #fff;
    font-family: var(--rl-cond);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

.rl-burger { display: none; background: none; border: 0; color: var(--rl-black); font-size: 1.6rem; cursor: pointer; padding: 0; }

.rl-mobile-menu {
    display: none;
}

/* ============================================================
   Hero / slider (homepage)
   ============================================================ */

.rl-hero,
.rl-hero-slider {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: var(--rl-black);
    color: #fff;
    overflow: hidden;
}

.rl-hero-slider {
    min-height: min(900px, calc(100vw * 0.46875));
}

.rl-hero-slider__slide {
    position: relative;
    display: block;
    width: 100%;
    background: var(--rl-black);
    color: #fff;
}

.rl-hero-slider__image {
    display: block;
    width: 100%;
    aspect-ratio: 1920 / 900;
    object-fit: cover;
    object-position: center center;
}

.rl-hero-slider__mascot {
    position: absolute;
    z-index: 3;
    top: 31%;
    left: 5.6%;
    width: 21%;
    height: auto;
    transform: rotate(-90deg);
    transform-origin: center;
    pointer-events: none;
}

.rl-hero-slider__headline {
    position: absolute;
    z-index: 2;
    top: clamp(52px, 5.75vw, 112px);
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(58vw, 1120px);
    transform: translateX(-50%);
    color: #fff;
    font-family: var(--rl-display);
    font-size: clamp(3.1rem, 7.15vw, 8.45rem);
    font-weight: 400;
    line-height: 0.93;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

.rl-hero-slider__headline span {
    display: block;
}

.rl-hero-slider__slide:focus-visible {
    outline: 3px solid var(--rl-pink);
    outline-offset: -8px;
}

@media (max-width: 760px) {
    .rl-hero-slider {
        min-height: 0;
    }

    .rl-hero-slider__image {
        height: auto;
        min-height: 0;
        aspect-ratio: 1920 / 900;
        object-fit: contain;
        object-position: center center;
    }

    .rl-hero-slider__headline {
        top: clamp(20px, 7vw, 44px);
        width: 78vw;
        font-size: clamp(2rem, 12vw, 5rem);
        line-height: 0.94;
    }

    .rl-hero-slider__mascot {
        top: 31%;
        left: 5.6%;
        width: 21%;
    }

}

/* ============================================================
   "Jaws" banner — fanged border + headline + mascot (below hero)
   ============================================================ */

.rl-jaws {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    background: #fff;
    overflow: hidden;
    padding: 224px 24px 42px;
    text-align: center;
}
.rl-jaws__teeth {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
}
.rl-jaws__teeth svg { width: 100%; height: 178px; display: block; }

.rl-jaws__inner { position: relative; z-index: 3; max-width: 1600px; margin: 0 auto; }

.rl-jaws__headline {
    position: relative;
    display: inline-block;
    width: min(100%, 1500px);
}

.rl-jaws__title {
    font-family: var(--rl-display);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--rl-black);
    margin: 0;
    line-height: 1.01;
    letter-spacing: 0;
    font-size: clamp(2.9rem, 5.95vw, 7.1rem);
}
.rl-jaws__cta {
    display: inline-block;
    margin-top: 26px;
    font-family: var(--rl-cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.95rem;
    background: var(--rl-black);
    color: #fff;
    border: 2px solid var(--rl-black);
    border-radius: 0;
    padding: 12px 34px;
    box-shadow: var(--rl-hard-shadow);
    transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
    text-decoration: none;
}
.rl-jaws__cta:hover {
    background: #fff;
    border-color: var(--rl-black);
    color: var(--rl-black);
    box-shadow: var(--rl-hard-shadow-hover);
    transform: translate(3px, 3px);
    text-decoration: none;
}

.rl-jaws__mascot {
    position: absolute;
    z-index: 4;
    left: clamp(-24px, 1.5vw, 18px);
    top: 49%;
    width: clamp(132px, 13.8vw, 250px);
    transform: translateY(-50%);
    background: transparent;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.14));
    mix-blend-mode: multiply;
    pointer-events: none;
}

.rl-jaws__features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    margin-top: clamp(72px, 7vw, 118px);
    align-items: start;
}

.rl-jaws__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.rl-jaws__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(68px, 4.9vw, 94px);
    height: clamp(68px, 4.9vw, 94px);
    color: var(--rl-black);
}

.rl-jaws__feature-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.rl-jaws__feature-label {
    font-family: var(--rl-cond);
    font-size: clamp(0.78rem, 0.9vw, 1.05rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--rl-black);
}

@media (max-width: 760px) {
    .rl-jaws {
        padding: 132px 18px 36px;
    }

    .rl-jaws__teeth svg {
        height: 112px;
    }

    .rl-jaws__headline {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .rl-jaws__mascot {
        position: static;
        width: min(42vw, 160px);
        transform: none;
        mix-blend-mode: normal;
    }

    .rl-jaws__title {
        font-size: clamp(2.05rem, 12vw, 3.45rem);
        line-height: 1.02;
    }

    .rl-jaws__cta {
        margin-top: 22px;
        padding: 10px 26px;
        font-size: 0.82rem;
    }

    .rl-jaws__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
        margin-top: 48px;
    }

    .rl-jaws__feature {
        gap: 10px;
    }

    .rl-jaws__feature-icon {
        width: 70px;
        height: 70px;
    }
}

/* ============================================================
   Athlete testimonial band
   ============================================================ */

.rl-athlete-testimonial {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    background: var(--rl-black);
    color: #fff;
    overflow: hidden;
    min-height: 660px;
    padding: clamp(124px, 8.8vw, 178px) 24px clamp(132px, 9vw, 184px);
    text-align: center;
}

.rl-athlete-testimonial__teeth {
    position: absolute;
    left: 0;
    width: 100%;
    height: 128px;
    line-height: 0;
    pointer-events: none;
}

.rl-athlete-testimonial__teeth svg {
    width: 100%;
    height: 128px;
    display: block;
}

.rl-athlete-testimonial__teeth--top {
    top: -42px;
}

.rl-athlete-testimonial__teeth--bottom {
    bottom: -42px;
    transform: rotate(180deg);
}

.rl-athlete-testimonial__inner {
    position: relative;
    z-index: 2;
    max-width: 1560px;
    margin: 0 auto;
}

.rl-athlete-testimonial__kicker {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(2.2rem, 3.7vw, 4.35rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #fff;
}

.rl-athlete-testimonial__stars {
    margin-top: clamp(24px, 2vw, 36px);
    font-family: var(--rl-cond);
    font-size: clamp(0.95rem, 1.2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    color: #fff;
}

.rl-athlete-testimonial__slides {
    max-width: 1480px;
    min-height: clamp(270px, 26vw, 430px);
    margin: clamp(24px, 2.1vw, 34px) auto 0;
    display: grid;
    align-items: center;
}

.rl-athlete-testimonial__slide {
    grid-area: 1 / 1;
    display: grid;
    justify-items: center;
    gap: clamp(20px, 2.2vw, 34px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(42px);
    transition: opacity 0.48s ease, transform 0.48s ease, visibility 0.48s ease;
}

.rl-athlete-testimonial__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.rl-athlete-testimonial__quote {
    margin: 0;
    color: #fff;
    font-family: var(--rl-display);
    font-style: italic;
    font-size: clamp(2.35rem, 4.7vw, 5.85rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rl-athlete-testimonial__author {
    display: block;
    color: #fff;
    font-family: var(--rl-cond);
    font-size: clamp(1.35rem, 2.05vw, 2.35rem);
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rl-athlete-testimonial__controls {
    display: none;
}

.rl-athlete-testimonial__controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 0;
    background: #fff;
    color: var(--rl-black);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.rl-athlete-testimonial__controls button:hover {
    background: var(--rl-pink);
    color: var(--rl-black);
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    .rl-athlete-testimonial {
        min-height: 0;
        padding: 104px 18px 112px;
    }

    .rl-athlete-testimonial__teeth,
    .rl-athlete-testimonial__teeth svg {
        height: 88px;
    }

    .rl-athlete-testimonial__teeth--top {
        top: -28px;
    }

    .rl-athlete-testimonial__teeth--bottom {
        bottom: -28px;
    }

    .rl-athlete-testimonial__stars {
        margin-top: 22px;
    }

    .rl-athlete-testimonial__slides {
        min-height: clamp(360px, 94vw, 520px);
        margin-top: 24px;
    }

    .rl-athlete-testimonial__quote {
        font-size: clamp(2.05rem, 10vw, 3.55rem);
        line-height: 1.02;
    }

    .rl-athlete-testimonial__author {
        font-size: clamp(1.2rem, 6vw, 1.7rem);
    }
}

/* ============================================================
   Comparison table
   ============================================================ */

.rl-stack {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    background: #fff;
    color: var(--rl-black);
    padding: clamp(74px, 7vw, 126px) 24px clamp(78px, 7vw, 128px);
    text-align: center;
    overflow: hidden;
}

.rl-stack__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.rl-stack__title {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(3rem, 5.3vw, 7rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--rl-black);
}

.rl-stack__subtitle {
    margin: clamp(18px, 1.8vw, 28px) 0 0;
    font-family: var(--rl-cond);
    font-size: clamp(1.05rem, 1.35vw, 1.55rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--rl-black);
}

.rl-stack__scroll-cue {
    margin: clamp(16px, 2vw, 28px) 0 clamp(26px, 3.5vw, 54px);
    font-family: var(--rl-cond);
    font-size: clamp(0.9rem, 1.05vw, 1.1rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #68686f;
}

.rl-stack__table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rl-stack__table {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(290px, 0.9fr) minmax(320px, 1fr);
    width: min(100%, 1040px);
    margin: 0 auto;
    border: 2px solid var(--rl-black);
    text-align: left;
}

.rl-stack__cell {
    min-height: 86px;
    border-right: 2px solid var(--rl-black);
    border-bottom: 2px solid var(--rl-black);
    display: flex;
    align-items: center;
    padding: clamp(18px, 2vw, 28px);
    font-family: var(--rl-cond);
    font-size: clamp(1rem, 1.25vw, 1.35rem);
    font-weight: 700;
    line-height: 1.18;
    text-transform: uppercase;
    color: var(--rl-black);
}

.rl-stack__cell:nth-child(3n) {
    border-right: 0;
}

.rl-stack__cell:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.rl-stack__corner,
.rl-stack__other-head {
    min-height: clamp(132px, 10vw, 176px);
}

.rl-stack__brand-head {
    min-height: clamp(132px, 10vw, 176px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: var(--rl-black);
    color: #fff;
    font-family: var(--rl-display);
    font-size: clamp(3.55rem, 6vw, 7.2rem);
    line-height: 0.76;
    letter-spacing: 0;
    text-align: center;
}

.rl-stack__brand-head span {
    display: block;
}

.rl-stack__other-head {
    justify-content: center;
    font-family: var(--rl-display);
    font-size: clamp(2rem, 3.1vw, 3.55rem);
    font-weight: 700;
    line-height: 0.95;
    text-align: center;
}

.rl-stack__brand-cell {
    justify-content: center;
    background: var(--rl-black);
    color: #fff;
}

.rl-stack__other-cell {
    justify-content: center;
}

.rl-stack__mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid currentColor;
    border-radius: 999px;
    color: currentColor;
}

.rl-stack__mark--check::before {
    content: '';
    width: 18px;
    height: 10px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(-45deg) translate(1px, -1px);
}

.rl-stack__mark--cross::before,
.rl-stack__mark--cross::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2.5px;
    background: currentColor;
}

.rl-stack__mark--cross::before {
    transform: rotate(45deg);
}

.rl-stack__mark--cross::after {
    transform: rotate(-45deg);
}

@media (max-width: 760px) {
    .rl-stack {
        padding: 60px 18px 68px;
    }

    .rl-stack__subtitle {
        margin-top: 16px;
    }

    .rl-stack__inner {
        max-width: 100%;
    }

    .rl-stack__table {
        grid-template-columns: minmax(0, 43%) minmax(0, 27%) minmax(0, 30%);
        width: 100%;
        min-width: 0;
    }

    .rl-stack__cell {
        min-height: 68px;
        padding: 11px 8px;
        font-size: clamp(0.62rem, 2.75vw, 0.82rem);
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .rl-stack__corner,
    .rl-stack__other-head,
    .rl-stack__brand-head {
        min-height: 88px;
    }

    .rl-stack__brand-head {
        font-size: clamp(1.7rem, 8.2vw, 2.5rem);
    }

    .rl-stack__other-head {
        font-size: clamp(1.1rem, 5.3vw, 1.55rem);
    }

    .rl-stack__mark {
        width: 30px;
        height: 30px;
    }
}

/* ============================================================
   Product of the month
   ============================================================ */

.rl-product-month {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    background: #f4f4f5;
    color: var(--rl-black);
    padding: 28px 24px 64px;
    overflow: hidden;
}

.rl-product-month__intro {
    text-align: center;
    margin: 0 auto 48px;
}

.rl-product-month__title {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(2.2rem, 3.25vw, 4rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--rl-black);
}

.rl-product-month__intro p {
    margin: 18px 0 0;
    font-family: var(--rl-cond);
    font-size: clamp(0.9rem, 1vw, 1.08rem);
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.rl-product-month__showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: 80px;
    align-items: center;
    max-width: 1052px;
    margin: 0 auto;
}

.rl-product-month__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    overflow: visible;
}

.rl-product-month__media img {
    position: relative;
    z-index: 2;
    width: min(64%, 360px);
    max-height: 420px;
    object-fit: contain;
}

.rl-product-month__fangs {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: -38px;
    width: 78px;
    height: 290px;
    transform: translateY(-50%);
    background:
        radial-gradient(ellipse at 0 50%, var(--rl-black) 0 62%, transparent 64%) 0 0 / 78px 58px repeat-y;
    pointer-events: none;
}

.rl-product-month__panel {
    background: #fff;
    padding: clamp(34px, 3.8vw, 56px);
}

.rl-product-month__category {
    margin: 0 0 8px;
    font-family: var(--rl-cond);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rl-product-month__name {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(3rem, 4.3vw, 5.1rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--rl-black);
}

.rl-product-month__price {
    margin-top: 8px;
    font-family: var(--rl-display);
    font-size: clamp(1.55rem, 2.2vw, 2.45rem);
    font-weight: 400;
    line-height: 1;
    color: var(--rl-black);
}

.rl-product-month__divider,
.rl-product-month__row,
.rl-product-month__variant {
    border-top: 1px solid #d8d8d8;
}

.rl-product-month__divider {
    margin-top: 24px;
}

.rl-product-month__desc {
    margin: 18px 0 22px;
    padding-left: 14px;
    border-left: 1px solid var(--rl-black);
    font-family: var(--rl-cond);
    font-size: clamp(0.95rem, 1vw, 1.08rem);
    font-weight: 500;
    line-height: 1.55;
    text-transform: uppercase;
}

.rl-product-month__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-family: var(--rl-cond);
    text-transform: uppercase;
}

.rl-product-month__row span,
.rl-product-month__variant span {
    font-weight: 700;
}

.rl-product-month__row strong,
.rl-product-month__variant strong {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    border: 1px solid var(--rl-black);
    box-shadow: 4px 4px 0 var(--rl-black);
    padding: 6px 12px;
    font-family: var(--rl-cond);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rl-product-month__variant {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 0;
    font-family: var(--rl-cond);
    text-transform: uppercase;
}

.rl-product-month__variant strong {
    align-self: flex-start;
}

.rl-product-month__lab,
.rl-product-month__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 14px;
    font-family: var(--rl-cond);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 2px solid var(--rl-black);
    box-shadow: var(--rl-hard-shadow);
    transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
    text-decoration: none;
}

.rl-product-month__lab {
    background: #fff;
    color: var(--rl-black);
}

.rl-product-month__lab::before {
    content: '\2697';
    margin-right: 10px;
    font-size: 0.92rem;
    line-height: 1;
}

.rl-product-month__cart {
    background: #fff;
    color: var(--rl-black);
}

.rl-product-month__lab:hover,
.rl-product-month__cart:hover {
    background: var(--rl-black);
    color: #fff;
    box-shadow: var(--rl-hard-shadow-hover);
    transform: translate(3px, 3px);
    text-decoration: none;
}

@media (max-width: 900px) {
    .rl-product-month__showcase {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 620px;
    }

    .rl-product-month__media {
        min-height: 360px;
    }

    .rl-product-month__media img {
        width: min(56%, 310px);
    }

    .rl-product-month__fangs {
        right: -24px;
        width: 58px;
        height: 220px;
        background-size: 58px 44px;
    }
}

@media (max-width: 560px) {
    .rl-product-month {
        padding: 30px 18px 48px;
    }

    .rl-product-month__intro {
        margin-bottom: 30px;
    }

    .rl-product-month__intro p br {
        display: none;
    }

    .rl-product-month__media {
        min-height: 300px;
    }

    .rl-product-month__media img {
        width: min(66%, 250px);
    }

    .rl-product-month__panel {
        padding: 28px 22px;
    }

    .rl-product-month__name {
        font-size: clamp(2.6rem, 15vw, 3.6rem);
    }

    .rl-product-month__row {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ============================================================
   Full lineup CTA
   ============================================================ */

.rl-lineup-cta {
    position: relative;
    left: 50%;
    width: 100vw;
    min-height: clamp(430px, 43vw, 820px);
    margin-left: -50vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(76px, 8vw, 140px) 24px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
        url('assets/raptor-lineup-bg.png') center center / cover no-repeat;
    color: var(--rl-black);
    overflow: hidden;
    text-align: center;
}

.rl-lineup-cta__panel {
    position: relative;
    z-index: 2;
    width: min(100%, 768px);
    min-height: 288px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    padding: clamp(36px, 4.2vw, 54px) clamp(28px, 5vw, 68px);
    box-shadow: 12px 12px 0 rgba(214, 214, 214, 0.88);
}

.rl-lineup-cta__panel h2 {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(2.45rem, 3.55vw, 4rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--rl-black);
}

.rl-lineup-cta__panel p {
    margin: clamp(18px, 2vw, 26px) 0 0;
    font-family: var(--rl-cond);
    font-size: clamp(1rem, 1.1vw, 1.18rem);
    font-weight: 500;
    line-height: 1.48;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--rl-black);
}

.rl-lineup-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: clamp(26px, 2.7vw, 36px);
    border: 2px solid var(--rl-black);
    border-radius: 999px;
    background: var(--rl-black);
    color: #fff;
    padding: 0 28px;
    font-family: var(--rl-cond);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.rl-lineup-cta__button:hover {
    background: #fff;
    color: var(--rl-black);
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    .rl-lineup-cta {
        min-height: 520px;
        padding: 70px 18px;
        background-position: center center;
    }

    .rl-lineup-cta__panel {
        min-height: 0;
        padding: 34px 22px;
        box-shadow: 8px 8px 0 rgba(214, 214, 214, 0.88);
    }

    .rl-lineup-cta__panel p br {
        display: none;
    }
}

.rl-our-selection,
.rl-feature-line {
    box-sizing: border-box;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f4f4f5;
    color: var(--rl-black);
    padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 72px);
    overflow-x: clip;
}

.rl-our-selection {
    background: #fff;
}

.rl-our-selection__head,
.rl-our-selection__grid,
.rl-feature-line__head,
.rl-feature-line__grid {
    width: min(100%, 1240px);
    margin-inline: auto;
}

.rl-our-selection__head,
.rl-feature-line__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 24px;
    align-items: end;
    margin-bottom: clamp(28px, 4vw, 46px);
}

.rl-our-selection__head span,
.rl-feature-line__head span {
    grid-column: 1;
    margin: 0;
    color: #67676f;
    font-family: var(--rl-cond);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.rl-our-selection__head h2,
.rl-feature-line__head h2 {
    grid-column: 1;
    max-width: 940px;
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(1.9rem, 3.2vw, 3.8rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rl-feature-line__head h2::before {
    display: inline-block;
    margin-right: 0.16em;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.rl-feature-line--1 .rl-feature-line__head h2::before {
    content: "\26A1";
}

.rl-feature-line--2 .rl-feature-line__head h2::before {
    content: "\1F6E1";
}

.rl-feature-line--3 .rl-feature-line__head h2::before {
    content: "\1F9EC";
}

.rl-feature-line--4 .rl-feature-line__head h2::before {
    content: "\1FA79";
}

.rl-feature-line--5 .rl-feature-line__head h2::before {
    content: "\2600";
}

.rl-feature-line--6 .rl-feature-line__head h2::before {
    content: "\2764";
}

.rl-feature-line--7 .rl-feature-line__head h2::before {
    content: "\1F525";
}

.rl-feature-line__head a {
    grid-row: 1 / span 2;
    grid-column: 2;
    align-self: center;
    border: 2px solid var(--rl-black);
    background: #fff;
    color: var(--rl-black);
    padding: 12px 18px;
    font-family: var(--rl-cond);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--rl-black);
}

.rl-our-selection__grid,
.rl-feature-line__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rl-our-selection__card,
.rl-feature-line__card {
    display: grid;
    min-height: 360px;
    align-content: start;
    gap: 14px;
    border: 2px solid #d7d7dc;
    border-radius: 8px;
    background: #fff;
    color: var(--rl-black);
    padding: clamp(22px, 2.6vw, 32px);
    text-decoration: none;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.rl-our-selection__card-media,
.rl-feature-line__card-media {
    display: grid;
    width: 100%;
    aspect-ratio: 4 / 3;
    place-items: center;
    overflow: hidden;
    border-radius: 6px;
    background: #f4f4f5;
}

.rl-our-selection__card-media img,
.rl-feature-line__card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.rl-our-selection__card:hover,
.rl-feature-line__card:hover {
    border-color: var(--rl-black);
    box-shadow: 7px 7px 0 var(--rl-black);
    transform: translateY(-4px);
    text-decoration: none;
}

.rl-our-selection__card span,
.rl-feature-line__card span {
    color: #666;
    font-family: var(--rl-cond);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rl-our-selection__card h3,
.rl-feature-line__card h3 {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(1.35rem, 1.85vw, 2.15rem);
    font-weight: 400;
    line-height: 0.92;
    text-transform: uppercase;
}

.rl-our-selection__card p,
.rl-feature-line__card p,
.rl-our-selection__card em,
.rl-feature-line__card em,
.rl-our-selection__card small,
.rl-feature-line__card small,
.rl-our-selection__card b,
.rl-feature-line__card b {
    margin: 0;
    font-family: var(--rl-cond);
    font-size: 0.96rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.rl-our-selection__card em,
.rl-feature-line__card em {
    color: #707078;
}

.rl-our-selection__card small,
.rl-feature-line__card small {
    color: var(--rl-black);
}

.rl-our-selection__card strong,
.rl-feature-line__card strong {
    margin-top: auto;
    font-family: var(--rl-display);
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1;
}

.rl-our-selection__card b,
.rl-feature-line__card b {
    display: inline-flex;
    width: fit-content;
    border: 2px solid var(--rl-black);
    background: #fff;
    padding: 9px 12px;
    box-shadow: 3px 3px 0 var(--rl-black);
}

@media (max-width: 980px) {
    .rl-our-selection__grid,
    .rl-feature-line__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .rl-our-selection__head,
    .rl-feature-line__head {
        grid-template-columns: 1fr;
    }

    .rl-feature-line__head a {
        grid-row: auto;
        grid-column: 1;
        justify-self: start;
    }

    .rl-our-selection__grid,
    .rl-feature-line__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FAQ
   ============================================================ */

.rl-faq {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    background: #fff;
    color: var(--rl-black);
    padding: clamp(76px, 7vw, 126px) 24px clamp(84px, 7.4vw, 132px);
}

.rl-faq__inner {
    display: grid;
    grid-template-columns: minmax(300px, 0.76fr) minmax(520px, 1.24fr);
    gap: clamp(54px, 7vw, 132px);
    align-items: start;
    max-width: 1580px;
    margin: 0 auto;
}

.rl-faq__header {
    position: sticky;
    top: 112px;
    display: block;
    max-width: 520px;
}

.rl-faq__header h2 {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(3.3rem, 5.65vw, 7.35rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--rl-black);
}

.rl-faq__header p {
    margin: clamp(20px, 2.3vw, 34px) 0 0;
    max-width: 430px;
    font-family: var(--rl-cond);
    font-size: clamp(1.05rem, 1.2vw, 1.34rem);
    font-weight: 500;
    line-height: 1.46;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.rl-faq__list {
    min-width: 0;
    border-top: 2px solid var(--rl-black);
}

.rl-faq__item {
    border-bottom: 2px solid var(--rl-black);
}

.rl-faq__item summary {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: clamp(18px, 2vw, 34px);
    align-items: center;
    min-height: clamp(82px, 6vw, 112px);
    padding: clamp(22px, 2.1vw, 34px) 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--rl-display);
    font-size: clamp(1.55rem, 2.65vw, 3.5rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rl-faq__item summary::-webkit-details-marker {
    display: none;
}

.rl-faq__item summary i {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 2px solid var(--rl-black);
    border-radius: 999px;
    transition: transform 0.18s ease, background 0.18s ease;
}

.rl-faq__item summary i::before,
.rl-faq__item summary i::after {
    content: '';
    position: absolute;
    width: 17px;
    height: 2px;
    background: var(--rl-black);
}

.rl-faq__item summary i::after {
    transform: rotate(90deg);
}

.rl-faq__item[open] summary i::after {
    opacity: 0;
}

.rl-faq__item[open] summary i {
    background: var(--rl-pink);
    transform: rotate(180deg);
}

.rl-faq__answer {
    max-width: 780px;
    padding: 0 76px clamp(26px, 2.5vw, 38px) 0;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.98rem, 1.05vw, 1.12rem);
    font-weight: 500;
    line-height: 1.68;
    color: #4b4b4f;
}

@media (max-width: 760px) {
    .rl-faq {
        padding: 54px 18px 60px;
    }

    .rl-faq__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rl-faq__header {
        position: static;
        max-width: none;
    }

    .rl-faq__item summary {
        grid-template-columns: 1fr 32px;
        min-height: 68px;
        padding: 18px 0;
        font-size: clamp(1.45rem, 8.8vw, 2.5rem);
        line-height: 1;
    }

    .rl-faq__item summary i {
        width: 30px;
        height: 30px;
        border-width: 1px;
    }

    .rl-faq__item summary i::before,
    .rl-faq__item summary i::after {
        width: 13px;
    }

    .rl-faq__answer {
        padding-right: 0;
    }
}

/* ============================================================
   Buttons / interactive controls
   ============================================================ */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
button,
input[type="submit"],
.rl-btn,
.elementor-button,
.wp-element-button {
    font-family: var(--rl-cond);
    font-weight: 700;
    font-size: 0.94rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: #fff;
    color: var(--rl-black);
    border: 2px solid var(--rl-black);
    border-radius: 0;
    padding: 14px 22px;
    box-shadow: var(--rl-hard-shadow);
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
    text-decoration: none;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
button:hover,
input[type="submit"]:hover,
.rl-btn:hover,
.elementor-button:hover,
.wp-element-button:hover {
    background: var(--rl-black);
    color: #fff;
    border-color: var(--rl-black);
    box-shadow: var(--rl-hard-shadow-hover);
    transform: translate(3px, 3px);
    text-decoration: none;
}
button:active,
.woocommerce a.button:active,
.woocommerce button.button:active,
.elementor-button:active,
.wp-element-button:active {
    box-shadow: 1px 1px 0 var(--rl-black);
    transform: translate(4px, 4px);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--rl-black);
    color: #fff;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: #fff;
    color: var(--rl-black);
}

/* Outline / secondary button */
.rl-btn--ghost,
.woocommerce a.added_to_cart {
    background: #fff;
    color: var(--rl-fg);
    border: 2px solid var(--rl-black);
    box-shadow: var(--rl-hard-shadow);
}
.rl-btn--ghost:hover,
.woocommerce a.added_to_cart:hover {
    background: var(--rl-black);
    color: #fff;
    border-color: var(--rl-black);
}

/* ============================================================
   Shop layout (sidebar + grid)
   ============================================================ */

.raptor-shop-layout {
    max-width: var(--rl-maxw);
    margin: 32px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

.raptor-shop-sidebar {
    position: sticky;
    top: 90px;
}
.raptor-shop-sidebar h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rl-muted);
    margin: 0 0 12px;
}
.raptor-cat-list { list-style: none; margin: 0 0 28px; padding: 0; }
.raptor-cat-list li { margin: 0; }
.raptor-cat-list a {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--rl-fg);
    border-bottom: 1px solid var(--rl-border);
}
.raptor-cat-list a:hover {
    color: var(--rl-black);
    border-bottom-color: var(--rl-black);
    text-decoration-color: var(--rl-pink);
    transform: translateX(3px);
}
.raptor-cat-list a.is-active { font-weight: 600; }
.raptor-cat-list .count { color: var(--rl-muted); font-size: 0.82rem; }

/* ============================================================
   Product grid + cards (flat)
   ============================================================ */

.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    background: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { content: none; }

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    background: var(--rl-bg);
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    padding: 14px;
    text-align: left;
    box-shadow: none;
    transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.woocommerce ul.products li.product:hover {
    border-color: #d0d0d0;
    box-shadow: var(--rl-shadow);
    transform: translateY(-3px);
}

.woocommerce ul.products li.product a img {
    border-radius: var(--rl-radius-s);
    margin-bottom: 14px;
    background: var(--rl-surface);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--rl-fg);
    padding: 0 0 6px;
}

.woocommerce ul.products li.product .price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--rl-fg);
    display: block;
    margin-bottom: 12px;
}
.woocommerce ul.products li.product .price del { color: var(--rl-muted); font-weight: 400; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }

.woocommerce ul.products li.product .button {
    width: calc(100% - 5px);
    text-align: center;
    margin-bottom: 5px;
}

/* Out of stock label */
.woocommerce ul.products li.product.outofstock .button { display: none; }

/* Sale badge — flat pill */
.woocommerce span.onsale {
    background: var(--rl-fg) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 999px !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.68rem;
    padding: 5px 12px !important;
    min-width: auto !important;
    min-height: auto !important;
    line-height: 1.4;
    top: 12px; left: 12px;
    animation: none;
}

.woocommerce .star-rating { color: var(--rl-fg); }
.woocommerce .star-rating span::before { color: var(--rl-fg); }

/* Result count + ordering */
.woocommerce .woocommerce-result-count { color: var(--rl-muted); font-size: 0.9rem; }
.woocommerce .woocommerce-ordering select {
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius-s);
    padding: 8px 12px;
    font-family: 'Inter', sans-serif;
}

/* Shop archive: Raptor Labs filter sidebar + large cards */
.post-type-archive-product .raptor-shop-layout,
.tax-product_cat .raptor-shop-layout,
.tax-product_tag .raptor-shop-layout {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(32px, 4vw, 58px) clamp(24px, 2vw, 38px) 72px;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: clamp(42px, 4vw, 74px);
    background: #f4f4f5;
}

.raptor-shop-sidebar {
    top: 104px;
    width: 100%;
    max-width: 236px;
}

.raptor-shop-sidebar__title {
    margin: 0 0 28px;
    font-family: var(--rl-display);
    font-size: clamp(2rem, 2.4vw, 3rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--rl-black);
}

.raptor-shop-search {
    display: grid;
    gap: 14px;
    margin-bottom: 60px;
}

.raptor-shop-search label,
.raptor-shop-sidebar h3 {
    margin: 0;
    font-family: var(--rl-cond);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--rl-black);
}

.raptor-shop-search label::after,
.raptor-shop-sidebar h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 8px;
    background: #d8d8dc;
}

.raptor-shop-search__field {
    display: flex;
    align-items: center;
    min-height: 48px;
    background: #fff;
    border-bottom: 3px solid #898989;
    padding: 0 14px;
}

.raptor-shop-search__field span {
    color: #777;
    font-size: 1.35rem;
    line-height: 1;
    transform: rotate(-18deg);
}

.raptor-shop-search input[type="search"] {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 12px 0 12px 12px;
    font-family: var(--rl-cond);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    outline: 0;
}

.raptor-shop-search button {
    width: 100%;
    min-height: 49px;
    border: 0;
    background: #898989;
    color: #fff;
    box-shadow: none;
    font-size: 0.95rem;
}

.raptor-shop-search button:hover {
    background: var(--rl-black);
    box-shadow: none;
    transform: none;
}

.raptor-sidebar-section {
    margin: 0 0 42px;
}

.raptor-shop-sidebar h3 {
    margin-bottom: 14px;
}

.raptor-cat-list a {
    min-height: 32px;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid transparent;
    font-family: var(--rl-cond);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #444;
    text-decoration: none;
}

.raptor-cat-list a:hover,
.raptor-cat-list a.is-active {
    color: var(--rl-black);
    border-color: var(--rl-black);
    background: #fff;
    transform: none;
    text-decoration: none;
}

.raptor-cat-list__name {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.raptor-cat-list__icon {
    flex: 0 0 auto;
    width: 14px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    letter-spacing: 0;
    line-height: 1;
}

.raptor-cat-list .count {
    color: #898989;
    font-size: 0.82rem;
    flex: 0 0 auto;
}

.raptor-shop-sort select {
    width: 100%;
    min-height: 42px;
    border: 2px solid var(--rl-black);
    border-radius: 0;
    background: #fff;
    padding: 0 36px 0 14px;
    font-family: var(--rl-cond);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rl-black);
    box-shadow: 3px 3px 0 var(--rl-black);
}

.raptor-shop-main {
    min-width: 0;
}

.raptor-shop-main .woocommerce-products-header {
    display: block;
    margin: 0 0 36px;
}

.raptor-mobile-shop-heading {
    display: none;
}

.raptor-shop-heading-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
}

.raptor-shop-main .woocommerce-products-header__title {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(3.2rem, 4.2vw, 6.2rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--rl-black);
}

.raptor-shop-main .woocommerce-result-count {
    flex: 0 0 auto;
    margin: 0;
    font-family: var(--rl-cond);
    font-size: clamp(1rem, 1.35vw, 1.45rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--rl-black);
}

.post-type-archive-product .woocommerce ul.products,
.tax-product_cat .woocommerce ul.products,
.tax-product_tag .woocommerce ul.products {
    grid-template-columns: repeat(4, minmax(245px, 1fr));
    gap: 0;
}

.post-type-archive-product .woocommerce nav.woocommerce-pagination,
.tax-product_cat .woocommerce nav.woocommerce-pagination,
.tax-product_tag .woocommerce nav.woocommerce-pagination {
    margin: clamp(34px, 4vw, 58px) 0 0;
    padding: 0;
    text-align: left;
}

.post-type-archive-product .woocommerce nav.woocommerce-pagination ul,
.tax-product_cat .woocommerce nav.woocommerce-pagination ul,
.tax-product_tag .woocommerce nav.woocommerce-pagination ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
}

.post-type-archive-product .woocommerce nav.woocommerce-pagination ul li,
.tax-product_cat .woocommerce nav.woocommerce-pagination ul li,
.tax-product_tag .woocommerce nav.woocommerce-pagination ul li {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
}

.post-type-archive-product .woocommerce nav.woocommerce-pagination .page-numbers,
.tax-product_cat .woocommerce nav.woocommerce-pagination .page-numbers,
.tax-product_tag .woocommerce nav.woocommerce-pagination .page-numbers {
    display: inline-flex;
    min-width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--rl-black);
    background: #fff;
    color: var(--rl-black);
    padding: 0 14px;
    font-family: var(--rl-cond);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--rl-black);
}

.post-type-archive-product .woocommerce nav.woocommerce-pagination .page-numbers.current,
.tax-product_cat .woocommerce nav.woocommerce-pagination .page-numbers.current,
.tax-product_tag .woocommerce nav.woocommerce-pagination .page-numbers.current,
.post-type-archive-product .woocommerce nav.woocommerce-pagination a.page-numbers:hover,
.tax-product_cat .woocommerce nav.woocommerce-pagination a.page-numbers:hover,
.tax-product_tag .woocommerce nav.woocommerce-pagination a.page-numbers:hover {
    background: var(--rl-black);
    color: #fff;
    box-shadow: 2px 2px 0 var(--rl-black);
    transform: translate(2px, 2px);
}

.post-type-archive-product .woocommerce nav.woocommerce-pagination .next,
.post-type-archive-product .woocommerce nav.woocommerce-pagination .prev,
.tax-product_cat .woocommerce nav.woocommerce-pagination .next,
.tax-product_cat .woocommerce nav.woocommerce-pagination .prev,
.tax-product_tag .woocommerce nav.woocommerce-pagination .next,
.tax-product_tag .woocommerce nav.woocommerce-pagination .prev {
    min-width: 64px;
}

.post-type-archive-product .woocommerce ul.products li.product,
.tax-product_cat .woocommerce ul.products li.product,
.tax-product_tag .woocommerce ul.products li.product {
    position: relative;
    border: 2px solid #a8a8b0;
    border-radius: 0;
    background: #f8f8f9;
    padding: clamp(30px, 2.3vw, 44px);
    min-height: clamp(620px, 45vw, 760px);
    display: flex;
    flex-direction: column;
    transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.post-type-archive-product .woocommerce ul.products li.product:nth-child(4n + 2),
.tax-product_cat .woocommerce ul.products li.product:nth-child(4n + 2),
.tax-product_tag .woocommerce ul.products li.product:nth-child(4n + 2),
.post-type-archive-product .woocommerce ul.products li.product:nth-child(4n + 4),
.tax-product_cat .woocommerce ul.products li.product:nth-child(4n + 4),
.tax-product_tag .woocommerce ul.products li.product:nth-child(4n + 4) {
    margin-top: 42px !important;
}

.post-type-archive-product .woocommerce ul.products li.product:hover,
.tax-product_cat .woocommerce ul.products li.product:hover,
.tax-product_tag .woocommerce ul.products li.product:hover {
    border-color: var(--rl-black);
    background: #fff;
    box-shadow: none;
    transform: translateY(-2px);
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    color: inherit;
    text-decoration: none;
}

.post-type-archive-product .woocommerce ul.products li.product a img,
.tax-product_cat .woocommerce ul.products li.product a img,
.tax-product_tag .woocommerce ul.products li.product a img {
    order: 4;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin: 26px 0 34px;
    border: 1px solid #ededed;
    border-radius: 0;
    background: #fff;
}

.rl-product-card__entry {
    order: 1;
    display: block;
    min-height: 2.5em;
    margin-bottom: 12px;
    font-family: var(--rl-cond);
    font-size: clamp(0.86rem, 0.92vw, 1.05rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rl-black);
}

.post-type-archive-product .woocommerce ul.products li.product .woocommerce-loop-product__title,
.tax-product_cat .woocommerce ul.products li.product .woocommerce-loop-product__title,
.tax-product_tag .woocommerce ul.products li.product .woocommerce-loop-product__title {
    order: 2;
    display: -webkit-box;
    min-height: 2.18em;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-family: var(--rl-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: clamp(2.45rem, 2.65vw, 4rem);
    line-height: 0.98;
    color: #7d7777;
    padding: 0;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
    color: var(--rl-black);
}

.rl-product-card__tags {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.rl-product-card__tags span {
    display: inline-flex;
    max-width: 100%;
    min-height: 42px;
    align-items: center;
    border: 2px solid #c4c7cb;
    background: #d8dde3;
    padding: 0 14px;
    font-family: var(--rl-cond);
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #3f3f3f;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rl-product-card__stock {
    display: none;
    position: absolute;
    z-index: 3;
    left: clamp(38px, 3vw, 60px);
    top: clamp(310px, 23vw, 390px);
    min-height: 44px;
    align-items: center;
    border: 2px solid #ff3131;
    background: #fff;
    box-shadow: 5px 5px 0 #ff8aa2;
    padding: 0 16px;
    font-family: var(--rl-cond);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rl-black);
}

.post-type-archive-product .woocommerce ul.products li.product .price,
.tax-product_cat .woocommerce ul.products li.product .price,
.tax-product_tag .woocommerce ul.products li.product .price {
    order: 5;
    display: block;
    margin: auto 0 22px;
    padding-top: 26px;
    border-top: 1px solid #ededed;
    font-family: var(--rl-display);
    font-weight: 400;
    font-size: clamp(2rem, 2.4vw, 3.2rem);
    line-height: 1;
    color: #7d7777;
}

.post-type-archive-product .woocommerce ul.products li.product .button,
.tax-product_cat .woocommerce ul.products li.product .button,
.tax-product_tag .woocommerce ul.products li.product .button {
    width: calc(100% - 6px);
    margin: 0 0 6px;
    align-self: flex-start;
}

.post-type-archive-product .woocommerce span.onsale,
.tax-product_cat .woocommerce span.onsale,
.tax-product_tag .woocommerce span.onsale {
    border-radius: 0 !important;
    border: 2px solid var(--rl-black) !important;
    box-shadow: 4px 4px 0 var(--rl-black) !important;
    font-family: var(--rl-cond);
    font-weight: 700;
    letter-spacing: 0.14em;
}

/* ============================================================
   Single product
   ============================================================ */

.single-product .raptor-woocommerce-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(14px, 2.5vw, 36px) clamp(22px, 3.8vw, 72px) clamp(36px, 6vw, 92px);
    background: #f4f4f5;
}

.woocommerce div.product {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(56px, 7vw, 126px);
    align-items: center;
    font-family: var(--rl-cond);
}

.woocommerce div.product div.images {
    position: relative;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    overflow: visible;
}

.woocommerce div.product div.images::after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 50%;
    right: -42px;
    width: 86px;
    height: min(58%, 380px);
    transform: translateY(-50%);
    background:
        radial-gradient(ellipse at 0 50%, var(--rl-black) 0 62%, transparent 64%) 0 0 / 86px 58px repeat-y;
    pointer-events: none;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce div.product div.images .woocommerce-product-gallery__image {
    position: relative;
    z-index: 1;
}

.woocommerce div.product div.images img {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.08);
    object-fit: contain;
}

.woocommerce div.product div.images .zoomImg {
    display: none !important;
}

.woocommerce div.product div.summary {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    background: #fff;
    padding: clamp(36px, 4vw, 58px);
}

.rl-single-product__category {
    margin: 0 0 12px;
    font-family: var(--rl-cond);
    font-size: clamp(0.95rem, 1.1vw, 1.35rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rl-black);
}

.woocommerce div.product .product_title {
    margin: 0;
    font-family: var(--rl-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: clamp(3.35rem, 5.35vw, 6.6rem);
    line-height: 0.94;
    color: var(--rl-black);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    margin: 18px 0 34px;
    font-family: var(--rl-display);
    font-weight: 400;
    font-size: clamp(2.05rem, 2.45vw, 3.35rem);
    line-height: 1;
    color: var(--rl-black);
}

.woocommerce div.product .woocommerce-product-details__short-description {
    margin: 0;
    padding: 30px 0;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    font-family: var(--rl-cond);
    font-size: clamp(1.2rem, 1.45vw, 1.7rem);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--rl-black);
}

.woocommerce div.product .woocommerce-product-details__short-description p {
    margin: 0;
    padding-left: 20px;
    border-left: 2px solid var(--rl-black);
}

.rl-single-product__details {
    border-bottom: 1px solid #dfdfdf;
}

.rl-single-product__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid #dfdfdf;
    font-family: var(--rl-cond);
    text-transform: uppercase;
}

.rl-single-product__row span,
.rl-single-product__variant span {
    font-size: clamp(1.05rem, 1.25vw, 1.45rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--rl-black);
}

.rl-single-product__row strong,
.rl-single-product__variant strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    border: 2px solid var(--rl-black);
    box-shadow: 5px 5px 0 var(--rl-black);
    padding: 0 16px;
    font-size: clamp(0.92rem, 1vw, 1.12rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.22em;
    white-space: nowrap;
}

.rl-single-product__variant {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
    font-family: var(--rl-cond);
    text-transform: uppercase;
}

.rl-single-product__variant strong {
    align-self: flex-start;
}

.woocommerce div.product form.cart {
    margin: 30px 0 0;
}

.woocommerce div.product form.variations_form {
    display: block;
}

.woocommerce div.product form.variations_form table.variations {
    display: block;
    width: 100%;
    margin: 0 0 28px;
    border: 0;
}

.woocommerce div.product form.variations_form table.variations tbody,
.woocommerce div.product form.variations_form table.variations tr,
.woocommerce div.product form.variations_form table.variations th,
.woocommerce div.product form.variations_form table.variations td {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
}

.woocommerce div.product form.variations_form table.variations .label {
    margin: 0 0 16px;
    text-align: left;
}

.woocommerce div.product form.variations_form table.variations label {
    display: block;
    font-family: var(--rl-cond);
    font-size: clamp(1.18rem, 1.45vw, 1.62rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--rl-black);
}

.woocommerce div.product form.variations_form table.variations select {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.rl-variant-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    max-width: 560px;
}

.rl-variant-tile {
    width: 100%;
    min-height: 44px;
    border: 2px solid #c7c9cc;
    border-radius: 0;
    background: #f3f4f6;
    color: #1d1d1d;
    padding: 0 14px;
    box-shadow: none;
    font-family: var(--rl-cond);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.rl-variant-tile:hover,
.rl-variant-tile:focus-visible {
    border-color: var(--rl-black);
    background: #fff;
    color: #000;
    outline: 0;
}

.rl-variant-tile.is-active {
    border-color: var(--rl-black);
    background: #fff;
    color: #000;
    box-shadow: 5px 5px 0 var(--rl-black);
    transform: translate(-2px, -2px);
}

@media (max-width: 540px) {
    .rl-variant-tiles {
        grid-template-columns: 1fr;
        max-width: none;
    }
}

.woocommerce div.product form.variations_form .reset_variations {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--rl-cond);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.woocommerce div.product form.cart .quantity {
    display: none !important;
}

.woocommerce div.product form.cart .button {
    width: 100%;
    min-height: 60px;
    margin: 0;
    background: var(--rl-black);
    color: #fff;
    border-color: var(--rl-black);
    box-shadow: none;
    font-size: clamp(0.98rem, 1.1vw, 1.2rem);
    padding: 18px 28px;
}

.woocommerce div.product form.cart .button:hover {
    background: #fff;
    color: var(--rl-black);
    box-shadow: 5px 5px 0 var(--rl-black);
    transform: translate(-3px, -3px);
}

.woocommerce div.product .product_meta {
    display: none;
}

.woocommerce-tabs {
    grid-column: 1 / -1;
    margin-top: 34px;
}

.woocommerce-tabs .tabs { border-bottom: 1px solid var(--rl-border); }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: none;
    border: none;
    border-radius: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--rl-fg); font-weight: 600; }

.woocommerce div.product .rl-related-products {
    grid-column: 1 / -1;
    width: 100%;
    margin: clamp(34px, 5vw, 76px) 0 0;
    padding-top: clamp(28px, 4vw, 52px);
    border-top: 2px solid #d8d8dc;
}

.woocommerce div.product .rl-related-products > h2 {
    margin: 0 0 clamp(22px, 3vw, 38px);
    font-family: var(--rl-display);
    font-size: clamp(2.6rem, 4.2vw, 5.4rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--rl-black);
}

.woocommerce div.product .rl-related-products ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rl-related-products__empty {
    margin: 0;
    max-width: 720px;
    font-family: var(--rl-cond);
    font-size: clamp(1.05rem, 1.35vw, 1.45rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--rl-black);
}

.woocommerce div.product .rl-athlete-testimonial {
    grid-column: 1 / -1;
    margin-top: clamp(46px, 6vw, 92px);
    margin-bottom: calc(clamp(36px, 6vw, 92px) * -1);
}

@media (max-width: 980px) {
    .woocommerce div.product {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .woocommerce div.product div.images::after {
        right: -22px;
        width: 56px;
        height: 54%;
        background-size: 56px 42px;
    }

    .woocommerce div.product div.summary {
        padding: 30px 22px;
    }

    .woocommerce div.product .rl-related-products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .single-product .raptor-woocommerce-wrapper {
        padding: 14px 16px 44px;
    }

    .woocommerce div.product .product_title {
        font-size: clamp(2.8rem, 15vw, 4.4rem);
    }

    .rl-single-product__row {
        align-items: flex-start;
        flex-direction: column;
    }

    .woocommerce div.product .rl-related-products ul.products {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Cart & Checkout
   ============================================================ */

/* ============================================================
   Peptide calculator
   ============================================================ */

body.page-id-459 {
    overflow-x: hidden;
}

.rl-peptide-calc {
    box-sizing: border-box;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f4f4f5;
    color: var(--rl-black);
    padding: clamp(46px, 6vw, 92px) clamp(18px, 4vw, 72px);
    overflow-x: clip;
}

.rl-peptide-calc__hero,
.rl-peptide-calc__grid,
.rl-peptide-calc__details {
    max-width: 1240px;
    margin-inline: auto;
}

.rl-peptide-calc__hero {
    margin-bottom: clamp(30px, 4vw, 56px);
}

.rl-peptide-calc__eyebrow {
    margin: 0 0 12px;
    font-family: var(--rl-cond);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
}

.rl-peptide-calc__hero h1 {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(3.5rem, 8vw, 9rem);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rl-peptide-calc__hero p:last-child {
    max-width: 760px;
    margin: 24px 0 0;
    font-family: var(--rl-cond);
    font-size: clamp(1.1rem, 1.5vw, 1.6rem);
    font-weight: 500;
    line-height: 1.35;
    text-transform: uppercase;
}

.rl-peptide-calc__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}

.rl-peptide-calc__panel,
.rl-peptide-calc__results,
.rl-peptide-calc__details article {
    border: 2px solid var(--rl-black);
    background: #fff;
    box-shadow: 7px 7px 0 var(--rl-black);
}

.rl-peptide-calc__panel {
    display: grid;
    gap: 16px;
    padding: clamp(20px, 3vw, 34px);
}

.rl-peptide-calc__section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--rl-black);
    font-family: var(--rl-cond);
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.rl-peptide-calc__section-head button,
.rl-peptide-calc__presets button {
    border: 2px solid var(--rl-black);
    border-radius: 0;
    background: #fff;
    color: var(--rl-black);
    font-family: var(--rl-cond);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

.rl-peptide-calc__section-head button {
    padding: 8px 12px;
}

.rl-peptide-calc__panel label {
    display: grid;
    gap: 8px;
    font-family: var(--rl-cond);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rl-peptide-calc__panel label > span {
    font-size: 0.9rem;
}

.rl-peptide-calc__panel label > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 54px;
    border: 2px solid #d6d6d9;
    background: #f8f8f9;
}

.rl-peptide-calc__panel input,
.rl-peptide-calc__panel select {
    width: 100%;
    min-height: 50px;
    border: 0;
    background: transparent;
    color: var(--rl-black);
    padding: 0 14px;
    font-family: var(--rl-display);
    font-size: 1.7rem;
    line-height: 1;
    outline: 0;
}

.rl-peptide-calc__panel select {
    font-family: var(--rl-cond);
    font-size: 1.05rem;
    font-weight: 700;
}

.rl-peptide-calc__panel em {
    padding: 0 14px;
    border-left: 2px solid #d6d6d9;
    font-family: var(--rl-cond);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rl-peptide-calc__presets {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding-top: 8px;
}

.rl-peptide-calc__presets button {
    min-height: 42px;
    padding: 0 10px;
}

.rl-peptide-calc__presets button:hover,
.rl-peptide-calc__section-head button:hover {
    background: var(--rl-black);
    color: #fff;
}

.rl-peptide-calc__results {
    display: grid;
    gap: 0;
    padding: 0;
}

.rl-peptide-calc__result {
    display: grid;
    gap: 8px;
    min-height: 132px;
    padding: clamp(20px, 2.7vw, 32px);
    border-bottom: 2px solid var(--rl-black);
}

.rl-peptide-calc__result:last-child {
    border-bottom: 0;
}

.rl-peptide-calc__result span {
    font-family: var(--rl-cond);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
}

.rl-peptide-calc__result strong {
    font-family: var(--rl-display);
    font-size: clamp(2rem, 3.8vw, 4.6rem);
    font-weight: 400;
    line-height: 0.88;
    text-transform: uppercase;
}

.rl-peptide-calc__result small {
    font-family: var(--rl-cond);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rl-peptide-calc__result--primary {
    background: var(--rl-black);
    color: #fff;
}

.rl-peptide-calc__result--primary span {
    color: #bdbdc4;
}

.rl-peptide-calc__details {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: clamp(30px, 4vw, 56px);
}

.rl-peptide-calc__details article {
    box-shadow: none;
    padding: 22px;
}

.rl-peptide-calc__details h2 {
    margin: 0 0 12px;
    font-family: var(--rl-display);
    font-size: clamp(1.9rem, 2.6vw, 3.2rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rl-peptide-calc__details p,
.rl-peptide-calc__details li {
    font-family: var(--rl-cond);
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.rl-peptide-calc__details ul {
    margin: 0;
    padding-left: 20px;
}

.rl-peptide-calc__details a {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--rl-pink);
}

@media (max-width: 980px) {
    .rl-peptide-calc__grid,
    .rl-peptide-calc__details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .rl-peptide-calc__presets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rl-peptide-calc__panel input {
        font-size: 1.35rem;
    }
}

/* Live peptide calculator layout */
.rl-peptide-calc {
    padding: clamp(38px, 5vw, 74px) clamp(16px, 4vw, 72px) clamp(44px, 6vw, 86px);
    background: #f4f4f5;
}

.rl-peptide-calc__inner {
    width: min(100%, 1100px);
    margin-inline: auto;
}

.rl-peptide-calc__hero {
    max-width: 720px;
    margin: 0 auto clamp(34px, 4vw, 46px);
    text-align: center;
}

.rl-peptide-calc__hero h1 {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(3.4rem, 5.5vw, 5.9rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rl-peptide-calc__hero p:last-child {
    max-width: 700px;
    margin: 22px auto 0;
    color: #6b6b72;
    font-family: var(--rl-cond);
    font-size: clamp(1rem, 1.2vw, 1.18rem);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.02em;
    text-transform: none;
}

.rl-peptide-calc__app {
    display: grid;
    grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1fr);
    gap: clamp(26px, 4vw, 54px);
    align-items: start;
    border: 2px solid var(--rl-black);
    border-radius: 22px;
    background: #fff;
    padding: clamp(24px, 3.5vw, 34px);
    box-shadow: 8px 8px 0 var(--rl-black);
}

.rl-peptide-calc__right {
    display: grid;
    gap: clamp(22px, 3vw, 34px);
}

.rl-peptide-calc__step {
    display: grid;
    gap: 16px;
}

.rl-peptide-calc__step--compact {
    position: relative;
    padding-left: 66px;
}

.rl-peptide-calc__icon {
    position: absolute;
    top: 2px;
    left: 0;
    width: 46px;
    height: 46px;
}

.rl-peptide-calc__icon--vial {
    left: -48px;
    width: 32px;
    height: 54px;
    border: 2px solid var(--rl-black);
    background: linear-gradient(#8b4c17 0 9px, #f5f5f5 9px 18px, #d1903b 18px 36px, #f5f5f5 36px 44px, #d1903b 44px);
}

.rl-peptide-calc__icon--vial::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 7px;
    width: 14px;
    height: 8px;
    border: 2px solid var(--rl-black);
    background: #b9c1cb;
}

.rl-peptide-calc__icon--vial::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 19px;
    height: 2px;
    background: var(--rl-black);
    box-shadow: 0 17px 0 var(--rl-black);
}

.rl-peptide-calc__icon--drop,
.rl-peptide-calc__icon--target {
    border-radius: 999px;
    background: var(--rl-black);
}

.rl-peptide-calc__icon--drop::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 12px;
    width: 14px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 12px 12px 12px 2px;
    transform: rotate(-35deg);
}

.rl-peptide-calc__icon--drop::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 25px;
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    border-top-color: transparent;
    border-radius: 999px;
}

.rl-peptide-calc__icon--target::before,
.rl-peptide-calc__icon--target::after {
    content: '';
    position: absolute;
    inset: 11px;
    border: 3px solid #fff;
    border-radius: 999px;
}

.rl-peptide-calc__icon--target::after {
    inset: 18px;
    background: #fff;
}

.rl-peptide-calc__step-title {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rl-peptide-calc__step-title span {
    display: inline-flex;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--rl-black);
    color: #fff;
    font-family: var(--rl-cond);
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
}

.rl-peptide-calc__step-title h2 {
    margin: 2px 0 0;
    font-family: var(--rl-display);
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rl-peptide-calc__syringes {
    display: grid;
    gap: 12px;
}

.rl-peptide-calc__syringes button {
    position: relative;
    display: grid;
    grid-template-columns: minmax(98px, 0.33fr) minmax(190px, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 94px;
    border: 2px solid #d2d2d6;
    border-radius: 16px;
    background: #fff;
    color: var(--rl-black);
    padding: 16px 56px 16px 16px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.rl-peptide-calc__syringes button::before,
.rl-peptide-calc__syringes button::after {
    content: '';
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rl-peptide-calc__syringes button::before {
    right: 18px;
    top: 50%;
    z-index: 2;
    width: 18px;
    height: 18px;
    border: 3px solid currentColor;
    border-radius: 999px;
    transform: translateY(-50%);
}

.rl-peptide-calc__syringes button::after {
    right: 24px;
    top: calc(50% - 1px);
    z-index: 3;
    width: 8px;
    height: 5px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: translateY(-50%) rotate(-45deg);
}

.rl-peptide-calc__syringes button:hover,
.rl-peptide-calc__choices button:hover {
    border-color: var(--rl-black);
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 var(--rl-black);
}

.rl-peptide-calc__syringes button.is-active,
.rl-peptide-calc__choices button.is-active {
    border-color: var(--rl-black);
    background: var(--rl-black);
    color: #fff;
    box-shadow: 4px 4px 0 var(--rl-black);
}

.rl-peptide-calc__syringes button.is-active::before,
.rl-peptide-calc__syringes button.is-active::after {
    opacity: 1;
}

.rl-peptide-calc__syringes strong {
    display: block;
    font-family: var(--rl-display);
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    font-weight: 400;
    line-height: 1;
}

.rl-peptide-calc__syringes small {
    display: block;
    margin-top: 8px;
    font-family: var(--rl-cond);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.15;
    color: currentColor;
    opacity: 0.75;
}

.rl-peptide-calc__syringes i {
    position: relative;
    display: block;
    min-width: 180px;
    height: 48px;
}

.rl-peptide-calc__syringes i::before,
.rl-peptide-calc__syringes i::after,
.rl-peptide-calc__syringes i b,
.rl-peptide-calc__syringes i b::before,
.rl-peptide-calc__syringes i b::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.rl-peptide-calc__syringes i::before {
    left: 18%;
    right: 18%;
    z-index: 2;
    height: 24px;
    border: 3px solid currentColor;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0 9%,
            currentColor 9% calc(9% + 1px),
            transparent calc(9% + 1px) 18%
        ),
        #fff;
}

.rl-peptide-calc__syringes i::after {
    left: 80%;
    right: 0;
    z-index: 1;
    height: 2px;
    background: currentColor;
}

.rl-peptide-calc__syringes i b {
    inset: 0;
    z-index: 3;
    height: 100%;
    border: 0;
    background: transparent;
    transform: none;
}

.rl-peptide-calc__syringes i b::before {
    left: 8%;
    width: 17%;
    height: 16px;
    border: 3px solid currentColor;
    border-right-width: 0;
    background: #9a9a9a;
    box-shadow: -7px 0 0 -1px currentColor, -10px 0 0 -1px #9a9a9a;
}

.rl-peptide-calc__syringes i b::after {
    left: 78%;
    width: 12px;
    height: 14px;
    border: 3px solid currentColor;
    background: #d8d8d8;
    transform: translateY(-50%);
}

.rl-peptide-calc__syringes button.is-active i::before {
    border-color: #fff;
    background: #fff;
}

.rl-peptide-calc__syringes button.is-active i b::before,
.rl-peptide-calc__syringes button.is-active i b::after {
    border-color: #fff;
}

.rl-peptide-calc__syringes button.is-active i b::before,
.rl-peptide-calc__syringes button.is-active i b::after {
    background: var(--rl-black);
}

.rl-peptide-calc__choices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rl-peptide-calc__choices button {
    min-height: 44px;
    border: 2px solid #d2d2d6;
    border-radius: 12px;
    background: #fff;
    color: var(--rl-black);
    padding: 0 16px;
    font-family: var(--rl-cond);
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.rl-peptide-calc__custom {
    display: none;
    grid-template-columns: minmax(72px, 110px) auto;
    min-height: 44px;
    align-items: center;
    border: 2px solid var(--rl-black);
    border-radius: 12px;
    background: #fff;
    box-shadow: 4px 4px 0 var(--rl-black);
    overflow: hidden;
}

.rl-peptide-calc__custom.is-open {
    display: grid;
}

.rl-peptide-calc__custom input {
    width: 100%;
    min-height: 40px;
    border: 0;
    padding: 0 12px;
    background: transparent;
    color: var(--rl-black);
    font-family: var(--rl-cond);
    font-size: 1rem;
    font-weight: 900;
    outline: 0;
}

.rl-peptide-calc__custom span {
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    border-left: 2px solid var(--rl-black);
    padding: 0 12px;
    font-family: var(--rl-cond);
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.rl-peptide-calc__result-zone {
    grid-column: 1 / -1;
    box-sizing: border-box;
    display: grid;
    width: 100%;
    gap: 22px;
    margin-top: clamp(10px, 2vw, 20px);
    padding-top: clamp(16px, 2vw, 24px);
    border-top: 2px dashed #c9c9cf;
}

.rl-peptide-calc__result-meta {
    margin: 0;
    color: #55555d;
    font-family: var(--rl-cond);
    font-size: clamp(0.8rem, 1vw, 0.94rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.rl-peptide-calc__result-meta strong {
    color: var(--rl-black);
    font-weight: 900;
}

.rl-peptide-calc__output {
    box-sizing: border-box;
    display: grid;
    width: 100%;
    gap: 12px;
    border: 2px solid var(--rl-black);
    border-radius: 22px;
    background: var(--rl-black);
    color: #fff;
    padding: clamp(28px, 4vw, 46px);
    box-shadow: 6px 6px 0 var(--rl-black);
}

.rl-peptide-calc__output p,
.rl-peptide-calc__output span,
.rl-peptide-calc__output small,
.rl-peptide-calc__meter-range {
    margin: 0;
    font-family: var(--rl-cond);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rl-peptide-calc__output p {
    color: #dedee4;
    font-size: clamp(0.88rem, 1.22vw, 1.08rem);
}

.rl-peptide-calc__output > span {
    color: #fff;
    font-size: clamp(0.98rem, 1.35vw, 1.22rem);
}

.rl-peptide-calc__output h3 {
    max-width: none;
    margin: 0;
    color: #fff;
    font-family: var(--rl-display);
    font-size: clamp(2.05rem, 3.45vw, 3.55rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.rl-peptide-calc__output h3 b {
    display: inline;
    background: #fff;
    color: var(--rl-black);
    padding: 0 0.1em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.rl-peptide-calc__output small {
    color: #dedee4;
    margin-top: 6px;
    font-size: clamp(0.98rem, 1.35vw, 1.2rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: none;
}

.rl-peptide-calc__meter {
    position: relative;
    width: 100%;
    height: clamp(70px, 8vw, 88px);
    margin-top: 6px;
    border: 2px solid #fff;
    background: #fff;
    overflow: hidden;
}

.rl-peptide-calc__meter-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: #8fc2f5;
    transition: width 0.18s ease;
}

.rl-peptide-calc__meter-needle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: var(--rl-black);
    transition: left 0.18s ease;
}

.rl-peptide-calc__meter-marks {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-around;
    color: var(--rl-black);
    font-family: var(--rl-cond);
    font-weight: 900;
}

.rl-peptide-calc__meter-marks span {
    position: relative;
    display: inline-flex;
    height: 100%;
    align-items: flex-end;
    padding-bottom: 10px;
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
}

.rl-peptide-calc__meter-marks span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 48%;
    background: currentColor;
    transform: translateX(-50%);
}

.rl-peptide-calc__meter-range {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
}

.rl-peptide-calc__notice {
    max-width: 900px;
    margin: 24px auto 0;
    color: #62626a;
    font-family: var(--rl-cond);
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}

.rl-peptide-protocol,
.rl-peptide-featured {
    box-sizing: border-box;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #fff;
    color: var(--rl-black);
    padding: clamp(52px, 7vw, 92px) clamp(18px, 4vw, 72px);
    overflow-x: clip;
}

.rl-peptide-protocol__inner {
    width: min(100%, 880px);
    margin-inline: auto;
}

.rl-peptide-protocol__eyebrow,
.rl-peptide-featured__head span {
    margin: 0 0 10px;
    font-family: var(--rl-cond);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
    color: #666;
}

.rl-peptide-protocol h2,
.rl-peptide-featured__head h2 {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rl-peptide-protocol__intro {
    margin: 22px 0 clamp(30px, 4vw, 50px);
    color: #57575f;
    font-family: var(--rl-cond);
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.45;
}

.rl-peptide-protocol article {
    display: grid;
    gap: 12px;
    padding: clamp(24px, 4vw, 38px) 0;
    border-top: 2px solid #e5e5e8;
}

.rl-peptide-protocol article > span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--rl-black);
    color: #fff;
    font-family: var(--rl-cond);
    font-weight: 900;
}

.rl-peptide-protocol h3 {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    font-weight: 400;
    line-height: 0.98;
    text-transform: uppercase;
}

.rl-peptide-protocol p,
.rl-peptide-protocol li {
    font-family: var(--rl-cond);
    font-size: 1.04rem;
    font-weight: 500;
    line-height: 1.45;
}

.rl-peptide-protocol article p {
    max-width: 720px;
    margin: 0;
    color: #54545c;
}

.rl-peptide-protocol ul {
    display: grid;
    gap: 8px;
    margin: 4px 0 0;
    padding-left: 22px;
}

.rl-peptide-featured {
    background: #f4f4f5;
}

.rl-peptide-featured__head,
.rl-peptide-featured__grid {
    width: min(100%, 1240px);
    margin-inline: auto;
}

.rl-peptide-featured__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 24px;
    align-items: end;
    margin-bottom: clamp(26px, 4vw, 42px);
}

.rl-peptide-featured__head span,
.rl-peptide-featured__head h2 {
    grid-column: 1;
}

.rl-peptide-featured__head a {
    grid-row: 1 / span 2;
    grid-column: 2;
    align-self: center;
    border: 2px solid var(--rl-black);
    background: #fff;
    padding: 12px 18px;
    font-family: var(--rl-cond);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 var(--rl-black);
}

.rl-peptide-featured__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rl-peptide-featured__card {
    display: grid;
    min-height: 220px;
    align-content: space-between;
    gap: 20px;
    border: 2px solid #a1a1aa;
    background: #fff;
    color: var(--rl-black);
    padding: clamp(22px, 3vw, 32px);
    text-decoration: none;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.rl-peptide-featured__card:hover {
    border-color: var(--rl-black);
    box-shadow: 8px 8px 0 var(--rl-pink);
    transform: translateY(-4px);
    text-decoration: none;
}

.rl-peptide-featured__card span {
    font-family: var(--rl-cond);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
}

.rl-peptide-featured__card h3 {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(2rem, 3.4vw, 3.7rem);
    font-weight: 400;
    line-height: 0.92;
    text-transform: uppercase;
}

.rl-peptide-featured__card strong {
    font-family: var(--rl-display);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
}

@media (max-width: 980px) {
    .rl-peptide-calc__app,
    .rl-peptide-featured__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .rl-peptide-calc__app {
        border-radius: 16px;
        padding: 18px;
    }

    .rl-peptide-calc__syringes button {
        grid-template-columns: 1fr;
    }

    .rl-peptide-calc__featured__head,
    .rl-peptide-featured__head {
        grid-template-columns: 1fr;
    }

    .rl-peptide-featured__head a {
        grid-row: auto;
        grid-column: 1;
        justify-self: start;
    }

    .rl-peptide-calc__output h3 {
        font-size: clamp(2.1rem, 10vw, 3.4rem);
        white-space: normal;
    }
}

/* ============================================================
   Rewards page
   ============================================================ */

.rl-rewards {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #f4f4f5;
    color: var(--rl-black);
    padding: clamp(46px, 6vw, 92px) clamp(18px, 4vw, 72px);
}

.rl-rewards__hero,
.rl-rewards__stats,
.rl-rewards__grid,
.rl-rewards__tiers,
.rl-rewards__details,
.rl-rewards__cta {
    max-width: 1240px;
    margin-inline: auto;
}

.rl-rewards__hero {
    display: grid;
    gap: 24px;
    margin-bottom: clamp(28px, 4vw, 54px);
}

.rl-rewards__eyebrow {
    margin: 0;
    font-family: var(--rl-cond);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
}

.rl-rewards__hero h1,
.rl-rewards__section-head h2,
.rl-rewards__cta h2 {
    margin: 0;
    font-family: var(--rl-display);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rl-rewards__hero h1 {
    max-width: 1040px;
    font-size: clamp(4rem, 8.8vw, 10rem);
}

.rl-rewards__hero p,
.rl-rewards__cta p {
    max-width: 760px;
    margin: 0;
    font-family: var(--rl-cond);
    font-size: clamp(1.12rem, 1.55vw, 1.65rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.rl-rewards__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.rl-rewards__actions a,
.rl-rewards__cta a {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--rl-black);
    background: var(--rl-black);
    color: #fff;
    box-shadow: 5px 5px 0 var(--rl-black);
    padding: 0 24px;
    font-family: var(--rl-cond);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
}

.rl-rewards__actions a + a {
    background: #fff;
    color: var(--rl-black);
}

.rl-rewards__actions a:hover,
.rl-rewards__cta a:hover {
    box-shadow: 2px 2px 0 var(--rl-black);
    transform: translate(3px, 3px);
    text-decoration: none;
}

.rl-rewards__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 2px solid var(--rl-black);
    background: #fff;
    box-shadow: 7px 7px 0 var(--rl-black);
}

.rl-rewards__stats div {
    display: grid;
    gap: 10px;
    min-height: 170px;
    padding: clamp(20px, 2.8vw, 34px);
    border-right: 2px solid var(--rl-black);
}

.rl-rewards__stats div:last-child {
    border-right: 0;
}

.rl-rewards__stats span,
.rl-rewards__panel span,
.rl-rewards__section-head span,
.rl-rewards__tier-list span {
    font-family: var(--rl-cond);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
}

.rl-rewards__stats strong,
.rl-rewards__tier-list strong {
    font-family: var(--rl-display);
    font-size: clamp(2.3rem, 4.2vw, 5rem);
    font-weight: 400;
    line-height: 0.86;
    text-transform: uppercase;
}

.rl-rewards__stats small,
.rl-rewards__tier-list p,
.rl-rewards__panel p,
.rl-rewards__details p,
.rl-rewards__details li {
    font-family: var(--rl-cond);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rl-rewards__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: clamp(34px, 4.5vw, 62px);
}

.rl-rewards__panel,
.rl-rewards__tiers,
.rl-rewards__details article,
.rl-rewards__cta {
    border: 2px solid var(--rl-black);
    background: #fff;
}

.rl-rewards__panel {
    display: grid;
    align-content: start;
    gap: 18px;
    min-height: 320px;
    padding: clamp(22px, 3vw, 34px);
    box-shadow: 5px 5px 0 var(--rl-black);
}

.rl-rewards__panel--dark {
    background: var(--rl-black);
    color: #fff;
}

.rl-rewards__panel--dark span {
    color: #bdbdc4;
}

.rl-rewards__panel h2,
.rl-rewards__details h2 {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(2.4rem, 4vw, 4.8rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rl-rewards__panel p {
    margin: 0;
}

.rl-rewards__tiers {
    display: grid;
    gap: 22px;
    margin-top: clamp(34px, 4.5vw, 62px);
    padding: clamp(22px, 3.4vw, 42px);
    box-shadow: 7px 7px 0 var(--rl-black);
}

.rl-rewards__section-head {
    display: grid;
    gap: 10px;
}

.rl-rewards__section-head h2 {
    font-size: clamp(3rem, 5.8vw, 7rem);
}

.rl-rewards__tier-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 2px solid var(--rl-black);
}

.rl-rewards__tier-list article {
    display: grid;
    gap: 12px;
    min-height: 220px;
    padding: 22px;
    border-right: 2px solid var(--rl-black);
}

.rl-rewards__tier-list article:last-child {
    border-right: 0;
}

.rl-rewards__tier-list p {
    margin: 0;
}

.rl-rewards__details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: clamp(34px, 4.5vw, 62px);
}

.rl-rewards__details article {
    padding: 24px;
}

.rl-rewards__details h2 {
    margin-bottom: 16px;
}

.rl-rewards__details ul {
    margin: 0;
    padding-left: 20px;
}

.rl-rewards__details p {
    margin: 0;
}

.rl-rewards__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: clamp(34px, 4.5vw, 62px);
    padding: clamp(24px, 4vw, 48px);
    background: var(--rl-black);
    color: #fff;
}

.rl-rewards__cta h2 {
    font-size: clamp(3rem, 5.8vw, 7rem);
}

.rl-rewards__cta p {
    margin-top: 14px;
}

.rl-rewards__cta a {
    background: #fff;
    color: var(--rl-black);
    box-shadow: 5px 5px 0 #fff;
}

@media (max-width: 980px) {
    .rl-rewards__stats,
    .rl-rewards__grid,
    .rl-rewards__details,
    .rl-rewards__cta {
        grid-template-columns: 1fr;
    }

    .rl-rewards__stats div,
    .rl-rewards__tier-list article {
        border-right: 0;
        border-bottom: 2px solid var(--rl-black);
    }

    .rl-rewards__stats div:last-child,
    .rl-rewards__tier-list article:last-child {
        border-bottom: 0;
    }

    .rl-rewards__tier-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rl-rewards__tier-list article:nth-child(odd) {
        border-right: 2px solid var(--rl-black);
    }

    .rl-rewards__tier-list article:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
}

@media (max-width: 620px) {
    .rl-rewards__tier-list {
        grid-template-columns: 1fr;
    }

    .rl-rewards__tier-list article:nth-child(odd) {
        border-right: 0;
    }

    .rl-rewards__tier-list article:nth-last-child(-n + 2) {
        border-bottom: 2px solid var(--rl-black);
    }

    .rl-rewards__tier-list article:last-child {
        border-bottom: 0;
    }
}

/* Rewards page: live raptorlabsau.com layout */
.rl-rewards {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0;
    overflow: visible;
    background: #fff;
    color: var(--rl-black);
}

.rl-rewards__hero {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: clamp(680px, 78vw, 920px);
    place-items: center;
    overflow: hidden;
    background: #000;
    color: #fff;
    padding: clamp(84px, 11vw, 160px) 24px clamp(150px, 18vw, 230px);
    text-align: center;
}

.rl-rewards__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.38) 100%);
    pointer-events: none;
}

.rl-rewards__hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 28px;
    max-width: 1040px;
}

.rl-rewards__eyebrow,
.rl-rewards__section-head span,
.rl-rewards__number-grid > article > span,
.rl-rewards__perks article > span,
.rl-rewards__cta > span {
    margin: 0;
    font-family: var(--rl-cond);
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.rl-rewards__eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.rl-rewards__hero h1,
.rl-rewards__section-head h2,
.rl-rewards__cta h2 {
    margin: 0;
    font-family: var(--rl-display);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.rl-rewards__hero h1 {
    max-width: 860px;
    color: transparent;
    background: linear-gradient(180deg, #fff 8%, #f0f0f0 42%, #8d8d8d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: clamp(4.8rem, 10vw, 9.5rem);
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.14);
}

.rl-rewards__hero p,
.rl-rewards__section-head p,
.rl-rewards__cta p,
.rl-rewards__cta small {
    max-width: 720px;
    margin: 0;
    font-family: var(--rl-cond);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rl-rewards__hero p {
    color: rgba(255, 255, 255, 0.86);
}

.rl-rewards__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.rl-rewards__actions a {
    display: inline-flex;
    min-width: 220px;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 999px;
    background: #fff;
    color: #000;
    padding: 0 32px;
    font-family: var(--rl-cond);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.rl-rewards__actions a + a {
    background: transparent;
    color: #fff;
}

.rl-rewards__actions a:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.36);
    text-decoration: none;
}

.rl-rewards__teeth {
    position: absolute;
    z-index: 3;
    right: -2vw;
    bottom: -118px;
    left: -2vw;
    height: clamp(132px, 14vw, 210px);
    overflow: hidden;
    color: #000;
}

.rl-rewards__teeth svg {
    width: 100%;
    height: 100%;
    transform: scaleX(1.08);
}

.rl-rewards__section {
    position: relative;
    z-index: 0;
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
    padding: clamp(92px, 10vw, 150px) 0 clamp(74px, 8vw, 118px);
}

.rl-rewards__section-head {
    display: grid;
    justify-items: center;
    gap: 18px;
    margin-bottom: clamp(34px, 4vw, 58px);
    text-align: center;
}

.rl-rewards__section-head span {
    color: #62626b;
}

.rl-rewards__section-head h2 {
    max-width: 980px;
    font-size: clamp(3.2rem, 7vw, 7.5rem);
}

.rl-rewards__step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.rl-rewards__step-grid article,
.rl-rewards__number-grid article,
.rl-rewards__perks article {
    position: relative;
    display: grid;
    align-content: start;
    gap: 18px;
    min-height: 300px;
    border: 2px solid #000;
    border-radius: 26px;
    background: #fff;
    box-shadow: 8px 8px 0 #000;
    padding: clamp(22px, 2.5vw, 32px);
}

.rl-rewards__step-grid article span {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 2px solid #000;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-family: var(--rl-cond);
    font-weight: 900;
}

.rl-rewards__step-grid small {
    font-family: var(--rl-cond);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #707078;
}

.rl-rewards__step-grid h3,
.rl-rewards__number-grid h3,
.rl-rewards__perks h3 {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(1.9rem, 2.5vw, 3rem);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.rl-rewards__step-grid p,
.rl-rewards__number-grid p,
.rl-rewards__perks p,
.rl-rewards__note {
    margin: 0;
    font-family: var(--rl-cond);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.45;
}

.rl-rewards__numbers,
.rl-rewards__perks {
    width: 100%;
    max-width: none;
    padding-inline: max(24px, calc((100vw - 1280px) / 2));
    background: #f4f4f5;
}

.rl-rewards__number-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.rl-rewards__number-grid article {
    min-height: 250px;
}

.rl-rewards__number-grid strong {
    font-family: var(--rl-display);
    font-size: clamp(4rem, 7vw, 7.8rem);
    font-weight: 400;
    line-height: 0.8;
    text-transform: uppercase;
}

.rl-rewards__table-wrap {
    overflow-x: auto;
    border: 2px solid #000;
    border-radius: 26px;
    background: #fff;
    box-shadow: 8px 8px 0 #000;
}

.rl-rewards__table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    font-family: var(--rl-cond);
}

.rl-rewards__table th,
.rl-rewards__table td {
    border-bottom: 2px solid #000;
    padding: 22px 24px;
    text-align: center;
    vertical-align: middle;
}

.rl-rewards__table th {
    font-weight: 900;
    text-transform: uppercase;
}

.rl-rewards__table thead th {
    background: #000;
    color: #fff;
    font-family: var(--rl-display);
    font-size: clamp(1.6rem, 2.5vw, 2.8rem);
    font-weight: 400;
    line-height: 0.95;
}

.rl-rewards__table thead th span {
    display: block;
    margin-bottom: 8px;
    font-family: var(--rl-cond);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    color: #aaa;
}

.rl-rewards__table tbody th {
    width: 34%;
    text-align: left;
    font-size: 1rem;
}

.rl-rewards__table tbody td {
    font-size: 1.3rem;
    font-weight: 900;
}

.rl-rewards__table tbody tr:last-child th,
.rl-rewards__table tbody tr:last-child td {
    border-bottom: 0;
}

.rl-rewards__yes,
.rl-rewards__no {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 46px;
}

.rl-rewards__yes::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 3px;
    width: 22px;
    height: 36px;
    border-right: 8px solid #000;
    border-bottom: 8px solid #000;
    border-radius: 4px;
    transform: rotate(42deg);
}

.rl-rewards__no::before,
.rl-rewards__no::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 8px;
    height: 48px;
    border-radius: 999px;
    background: #000;
}

.rl-rewards__no::before {
    transform: rotate(45deg);
}

.rl-rewards__no::after {
    transform: rotate(-45deg);
}

.rl-rewards__note {
    max-width: 940px;
    margin: 34px auto 0;
    text-align: center;
}

.rl-rewards__perk-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.rl-rewards__perks article {
    min-height: 260px;
}

.rl-rewards__perks article > span {
    position: absolute;
    top: -15px;
    right: 22px;
    border: 2px solid #000;
    border-radius: 999px;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    font-size: 0.62rem;
}

.rl-rewards__cta {
    display: grid;
    justify-items: center;
    gap: 24px;
    background: #000;
    color: #fff;
    padding: clamp(86px, 10vw, 150px) 24px;
    text-align: center;
}

.rl-rewards__cta > span {
    color: rgba(255, 255, 255, 0.64);
}

.rl-rewards__cta h2 {
    color: transparent;
    background: linear-gradient(180deg, #fff 8%, #ededed 45%, #8b8b8b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: clamp(4.2rem, 9vw, 9rem);
}

.rl-rewards__cta p {
    color: rgba(255, 255, 255, 0.9);
}

.rl-rewards__cta small {
    max-width: 860px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
    text-transform: none;
}

@media (max-width: 1080px) {
    .rl-rewards__step-grid,
    .rl-rewards__number-grid,
    .rl-rewards__perk-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .rl-rewards__hero {
        min-height: 680px;
    }

    .rl-rewards__step-grid,
    .rl-rewards__number-grid,
    .rl-rewards__perk-grid {
        grid-template-columns: 1fr;
    }

    .rl-rewards__actions a {
        width: 100%;
        min-width: 0;
    }
}

/* Contact page */
.rl-contact-page {
    box-sizing: border-box;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #f4f4f5;
    color: var(--rl-black);
    padding: clamp(56px, 8vw, 104px) 24px;
    overflow-x: clip;
}

body:has(.rl-contact-page) .page-header {
    display: none;
}

.rl-contact-page__hero {
    max-width: var(--rl-maxw);
    margin: 0 auto 42px;
}

.rl-contact-page__hero p,
.rl-contact-page__info span {
    margin: 0 0 10px;
    font-family: var(--rl-cond);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rl-muted);
}

.rl-contact-page__hero h1 {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.rl-contact-page__hero span {
    display: block;
    max-width: 760px;
    margin-top: 20px;
    font-family: var(--rl-cond);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.rl-contact-page__grid {
    max-width: var(--rl-maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
    align-items: start;
}

.rl-contact-page__info,
.rl-contact-page__form {
    background: #fff;
    border: 2px solid var(--rl-black);
    box-shadow: var(--rl-hard-shadow);
}

.rl-contact-page__info {
    display: grid;
    gap: 0;
}

.rl-contact-page__info div {
    padding: 24px;
    border-bottom: 1px solid var(--rl-border);
}

.rl-contact-page__info div:last-child {
    border-bottom: 0;
}

.rl-contact-page__info a,
.rl-contact-page__info strong {
    display: block;
    font-family: var(--rl-cond);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--rl-black);
}

.rl-contact-page__form {
    padding: clamp(24px, 4vw, 44px);
}

.rl-contact-page__form h2 {
    margin: 0 0 24px;
    font-family: var(--rl-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.rl-contact-page .wpforms-container {
    margin: 0;
}

.rl-contact-page .wpforms-container-full .wpforms-form .wpforms-field {
    padding: 0 0 18px;
}

.rl-contact-page .wpforms-container-full .wpforms-form .wpforms-field-label {
    margin: 0 0 8px;
    font-family: var(--rl-cond);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rl-black);
}

.rl-contact-page .wpforms-container-full .wpforms-form input[type="text"],
.rl-contact-page .wpforms-container-full .wpforms-form input[type="email"],
.rl-contact-page .wpforms-container-full .wpforms-form select,
.rl-contact-page .wpforms-container-full .wpforms-form textarea {
    width: 100%;
    max-width: none;
    min-height: 54px;
    border: 2px solid var(--rl-black);
    border-radius: 0;
    background: #f8f8f9;
    color: var(--rl-black);
    font-family: var(--rl-cond);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: none;
}

.rl-contact-page .wpforms-container-full .wpforms-form textarea {
    min-height: 148px;
}

.rl-contact-page .wpforms-container-full .wpforms-form input:focus,
.rl-contact-page .wpforms-container-full .wpforms-form select:focus,
.rl-contact-page .wpforms-container-full .wpforms-form textarea:focus {
    border-color: var(--rl-black);
    box-shadow: 4px 4px 0 var(--rl-pink);
    outline: 0;
}

.rl-contact-page .wpforms-container-full .wpforms-form button[type="submit"] {
    width: 100%;
    min-height: 58px;
    margin-top: 4px;
    border: 2px solid var(--rl-black);
    border-radius: 0;
    background: var(--rl-black);
    color: #fff;
    font-family: var(--rl-cond);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: none;
}

.rl-contact-page .wpforms-container-full .wpforms-form button[type="submit"]:hover {
    background: #fff;
    color: var(--rl-black);
    box-shadow: var(--rl-hard-shadow-hover);
}

/* Wider desktop presentation for long-form brand pages and homepage product sections. */
@media (min-width: 1100px) {
    .rl-our-selection__head,
    .rl-our-selection__grid,
    .rl-feature-line__head,
    .rl-feature-line__grid,
    .rl-peptide-featured__head,
    .rl-peptide-featured__grid {
        width: min(100%, 1480px);
    }

    .rl-feature-line__grid,
    .rl-peptide-featured__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .rl-stack__inner,
    .rl-product-month__showcase {
        max-width: 1440px;
    }

    .rl-peptide-calc__inner,
    .rl-peptide-protocol__inner {
        width: min(100%, 1480px);
    }

    .rl-peptide-calc__hero {
        max-width: 920px;
    }

    .rl-peptide-calc__hero p:last-child,
    .rl-peptide-calc__notice,
    .rl-peptide-protocol article p {
        max-width: 1040px;
    }

    .rl-rewards__hero-inner {
        max-width: 1240px;
    }

    .rl-rewards__hero h1 {
        max-width: 1100px;
    }

    .rl-rewards__hero p,
    .rl-rewards__section-head p,
    .rl-rewards__cta p,
    .rl-rewards__cta small {
        max-width: 920px;
    }

    .rl-rewards__section {
        width: min(1480px, calc(100% - 48px));
    }

    .rl-rewards__numbers,
    .rl-rewards__perks {
        padding-inline: max(24px, calc((100vw - 1480px) / 2));
    }

    .rl-rewards__section-head h2 {
        max-width: 1180px;
    }

    .rl-rewards__note {
        max-width: 1120px;
    }

    .rl-contact-page__hero,
    .rl-contact-page__grid {
        max-width: 1480px;
    }

    .rl-contact-page__hero span {
        max-width: 980px;
    }
}

@media (max-width: 860px) {
    .rl-contact-page__grid {
        grid-template-columns: 1fr;
    }
}

.woocommerce-cart table.cart,
.woocommerce table.shop_table {
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    border-collapse: separate;
    overflow: hidden;
}
.woocommerce-cart table.cart th,
.woocommerce table.shop_table th {
    background: var(--rl-surface);
    color: var(--rl-fg);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    border: none;
}
.woocommerce-cart table.cart td { border-top: 1px solid var(--rl-border); }
.woocommerce-cart table.cart .product-name a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-transform: none;
    color: var(--rl-fg);
}
.woocommerce-cart table.cart .product-name a:hover {
    color: var(--rl-black);
    text-decoration-color: var(--rl-pink);
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3,
.woocommerce-column__title,
#order_review_heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.01em;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container .select2-selection {
    border: 1px solid var(--rl-border) !important;
    border-radius: var(--rl-radius-s) !important;
    font-family: 'Inter', sans-serif;
    padding: 10px 12px;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--rl-fg) !important;
    box-shadow: none !important;
    outline: none;
}
#payment { border-top: 1px solid var(--rl-border); background: var(--rl-surface); }
#payment div.payment_box {
    background: #fff;
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius-s);
}
#payment div.payment_box::before { border-bottom-color: #fff; }

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    width: min(100% - 32px, var(--rl-maxw));
    min-height: 64px;
    margin: 24px auto;
    border: 2px solid var(--rl-black);
    border-radius: 0;
    background: #fff;
    box-shadow: 6px 6px 0 var(--rl-black);
    color: var(--rl-black);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 18px 14px 56px;
    font-family: var(--rl-cond);
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    top: 50%;
    left: 20px;
    color: var(--rl-black);
    transform: translateY(-50%);
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button {
    float: none !important;
    order: 2;
    min-height: 42px;
    margin-left: auto;
    border: 2px solid var(--rl-black);
    border-radius: 0;
    background: var(--rl-black);
    color: #fff;
    box-shadow: none;
    padding: 10px 18px;
    font-family: var(--rl-cond);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover {
    background: #fff;
    color: var(--rl-black);
}

.rl-side-cart-lock {
    overflow: hidden;
}

.rl-side-cart {
    position: fixed;
    inset: 0;
    z-index: 3000;
    pointer-events: none;
    visibility: hidden;
}

.rl-side-cart.is-open {
    pointer-events: auto;
    visibility: visible;
}

.rl-side-cart__shade {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent !important;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.22s ease;
    box-shadow: none !important;
    transform: none !important;
}

.rl-side-cart.is-open .rl-side-cart__shade {
    opacity: 1;
}

.rl-side-cart__shade:hover,
.rl-side-cart__shade:focus,
.rl-side-cart__shade:active {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    color: transparent !important;
    outline: 0;
    transform: none !important;
}

.rl-side-cart__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(100vw, 480px);
    height: 100%;
    background: #fff;
    border-left: 3px solid var(--rl-black);
    box-shadow: -12px 0 0 rgba(0, 0, 0, 0.18);
    transform: translateX(105%);
    transition: transform 0.24s ease;
    outline: 0;
}

.rl-side-cart.is-open .rl-side-cart__panel {
    transform: translateX(0);
}

.rl-side-cart__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border-bottom: 2px solid var(--rl-black);
}

.rl-side-cart__head div {
    display: grid;
    gap: 6px;
}

.rl-side-cart__head span {
    font-family: var(--rl-cond);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
}

.rl-side-cart__head strong {
    font-family: var(--rl-display);
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 0.88;
    text-transform: uppercase;
}

.rl-side-cart__head button {
    width: 42px;
    height: 42px;
    border: 2px solid var(--rl-black);
    border-radius: 0;
    background: #fff;
    color: var(--rl-black);
    font-size: 2rem;
    line-height: 0.8;
    cursor: pointer;
}

.rl-side-cart__head button:hover {
    background: var(--rl-black);
    color: #fff;
}

.rl-side-cart__content {
    display: flex;
    flex: 1;
    min-height: 0;
    flex-direction: column;
}

.rl-side-cart__items {
    flex: 1;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    list-style: none;
}

.rl-side-cart__item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #e2e2e5;
}

.rl-side-cart__thumb {
    display: block;
    width: 86px;
    aspect-ratio: 1;
    background: #f1f1f2;
    overflow: hidden;
}

.rl-side-cart__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rl-side-cart__item-main {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.rl-side-cart__item-title {
    font-family: var(--rl-cond);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.rl-side-cart__item-meta {
    font-family: var(--rl-cond);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
}

.rl-side-cart__item-price {
    font-family: var(--rl-display);
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1;
}

.rl-side-cart__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid #d9d9dd;
    color: var(--rl-black);
    font-size: 1.4rem;
    line-height: 1;
    text-decoration: none;
}

.rl-side-cart__remove:hover {
    border-color: var(--rl-black);
    background: var(--rl-black);
    color: #fff;
    text-decoration: none;
}

.rl-side-cart__summary {
    display: grid;
    gap: 12px;
    padding: 22px 24px 24px;
    border-top: 2px solid var(--rl-black);
    background: #f4f4f5;
}

.rl-side-cart__summary div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.rl-side-cart__summary span,
.rl-side-cart__summary p {
    font-family: var(--rl-cond);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rl-side-cart__summary p {
    margin: 0;
    color: #666;
}

.rl-side-cart__summary strong {
    font-family: var(--rl-display);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}

.rl-side-cart__button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--rl-black);
    background: var(--rl-black);
    color: #fff;
    font-family: var(--rl-cond);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
}

.rl-side-cart__button:hover {
    background: #fff;
    color: var(--rl-black);
    text-decoration: none;
}

.rl-side-cart__button--ghost {
    background: #fff;
    color: var(--rl-black);
}

.rl-side-cart__button--ghost:hover {
    background: var(--rl-black);
    color: #fff;
}

.rl-side-cart__empty {
    display: grid;
    gap: 16px;
    align-content: center;
    min-height: 100%;
    padding: 36px 24px;
    text-align: center;
}

.rl-side-cart__empty h3 {
    margin: 0;
    font-family: var(--rl-display);
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rl-side-cart__empty p {
    margin: 0;
    font-family: var(--rl-cond);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .woocommerce-message,
    .woocommerce-info,
    .woocommerce-error {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 18px 18px 52px;
    }

    .woocommerce-message .button,
    .woocommerce-info .button,
    .woocommerce-error .button {
        width: 100%;
        margin-left: 0;
    }

    .rl-side-cart__item {
        grid-template-columns: 72px minmax(0, 1fr) auto;
        padding-inline: 16px;
    }

    .rl-side-cart__thumb {
        width: 72px;
    }
}

/* ============================================================
   Homepage helpers
   ============================================================ */

.woocommerce .products .product-category a img,
.wc-block-grid__product-image img { border-radius: var(--rl-radius-s); }

/* product_categories shortcode grid */
.woocommerce ul.products li.product-category { text-align: center; }
.woocommerce ul.products li.product-category h2.woocommerce-loop-category__title {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: none;
}

/* ============================================================
   Prescription (Rx) UI — flat
   ============================================================ */

.raptor-rx-badge {
    display: inline-block;
    background: var(--rl-fg);
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.62rem;
    padding: 4px 10px;
    margin-bottom: 10px;
}
.raptor-rx-notice {
    border: 1px solid var(--rl-border);
    border-left: 3px solid var(--rl-fg);
    box-shadow: none;
    background: var(--rl-surface);
    border-radius: var(--rl-radius-s);
    padding: 16px;
    margin: 0 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.5;
}
.raptor-rx-notice strong { text-transform: none; letter-spacing: 0; }
.raptor-rx-checkout {
    border: 1px solid var(--rl-border) !important;
    border-left: 3px solid var(--rl-fg) !important;
    box-shadow: none !important;
    border-radius: var(--rl-radius-s);
    background: var(--rl-surface);
}
.raptor-rx-checkout input.input-text,
.raptor-rx-checkout input[type="file"] { font-family: 'Inter', sans-serif; }

/* ============================================================
   Footer
   ============================================================ */

.rl-footer {
    background: var(--rl-dark);
    color: #d4d4d8;
    margin-top: 64px;
    padding: 56px 0 28px;
}
.rl-footer__cols {
    max-width: var(--rl-maxw);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}
.rl-footer__brand .rl-logo {
    justify-content: flex-start;
}
.rl-footer__brand .rl-logo__img {
    width: min(190px, 70vw);
    max-height: 52px;
    filter: invert(1);
}
.rl-footer__brand p { color: #a1a1aa; margin: 14px 0 0; max-width: 320px; font-size: 0.92rem; }
.rl-footer__contacts {
    margin-top: 20px !important;
}
.rl-footer__contacts li {
    margin-bottom: 8px;
}
.rl-footer__contacts span {
    display: block;
    color: #a1a1aa;
    font-family: var(--rl-cond);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.rl-footer__contacts a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
}
.rl-footer__contacts svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: currentColor;
}
.rl-footer h4 {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 16px;
}
.rl-footer ul { list-style: none; margin: 0; padding: 0; }
.rl-footer li { margin-bottom: 10px; }
.rl-footer__shop-list,
.rl-footer__hot-list {
    columns: 2;
    column-gap: 24px;
}
.rl-footer__shop-list li,
.rl-footer__hot-list li {
    break-inside: avoid;
    page-break-inside: avoid;
}
.rl-footer a {
    color: #a1a1aa;
    font-size: 0.92rem;
    text-decoration-color: transparent;
}
.rl-footer a:hover {
    color: #fff;
    text-decoration-color: var(--rl-pink);
    transform: translateX(3px);
}
.rl-footer__bottom {
    max-width: var(--rl-maxw);
    margin: 40px auto 0;
    padding: 22px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 12px;
    color: #71717a;
    font-size: 0.85rem;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
    .raptor-shop-layout { grid-template-columns: 200px 1fr; gap: 28px; }
    .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
    .rl-header__inner {
        position: relative;
        display: flex;
        justify-content: flex-start;
    }
    .rl-header__inner .rl-logo {
        justify-self: start;
        position: relative;
        z-index: 2;
    }
    .rl-header__inner .rl-utils {
        position: static;
        display: contents;
    }
    .rl-nav, .rl-utils .rl-account-label { display: none; }
    .rl-utils .rl-shop-btn,
    .rl-utils .rl-account { display: none; }
    .rl-utils .rl-cart {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .rl-utils .rl-cart:hover {
        transform: translate(-50%, -50%);
    }
    .rl-burger {
        position: absolute;
        right: 24px;
        top: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 2px solid var(--rl-black);
        background: #fff;
        box-shadow: 4px 4px 0 var(--rl-black);
        transform: translateY(-50%);
    }
    .rl-mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 5000;
        display: none;
        min-height: 100vh;
        min-height: 100dvh;
        background: #fff;
        color: var(--rl-black);
    }
    .rl-mobile-menu.is-open {
        display: flex;
        flex-direction: column;
    }
    .rl-mobile-menu__top {
        display: flex;
        min-height: 72px;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--rl-border);
        padding: 0 16px;
    }
    .rl-mobile-menu__logo {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }
    .rl-mobile-menu__logo img {
        display: block;
        width: 185px;
        max-height: 42px;
        object-fit: contain;
    }
    .rl-mobile-menu__close {
        display: inline-flex;
        width: 34px;
        height: 34px;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: var(--rl-black);
        font-family: Arial, sans-serif;
        font-size: 1.55rem;
        line-height: 1;
        cursor: pointer;
    }
    .rl-mobile-menu__nav {
        display: grid;
        padding: 46px 16px 0;
    }
    .rl-mobile-menu__nav a {
        display: flex;
        min-height: 55px;
        align-items: center;
        border-bottom: 1px solid var(--rl-border);
        font-family: var(--rl-cond);
        font-size: 1.22rem;
        font-weight: 900;
        letter-spacing: 0.06em;
        line-height: 1;
        text-transform: uppercase;
        color: var(--rl-black);
        text-decoration: none;
    }
    .rl-mobile-menu__nav a:hover {
        color: var(--rl-black);
        text-decoration: none;
        transform: none;
    }
    .rl-mobile-menu__cta-wrap {
        margin-top: auto;
        border-top: 1px solid var(--rl-border);
        padding: 20px 14px 18px;
    }
    .rl-mobile-menu__cta {
        display: inline-flex;
        width: 100%;
        min-height: 60px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 999px;
        background: var(--rl-black);
        color: #fff;
        font-family: var(--rl-cond);
        font-size: 1rem;
        font-weight: 900;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        text-decoration: none;
    }
    .rl-mobile-menu__cta:hover {
        color: #fff;
        text-decoration: none;
        transform: none;
    }
    .rl-mobile-menu__cta svg {
        width: 16px;
        height: 16px;
    }
    .raptor-shop-layout { grid-template-columns: 1fr; }
    .raptor-shop-sidebar {
        position: static;
        max-width: none;
    }
    .raptor-sidebar-section {
        margin-bottom: 34px;
    }
    .raptor-cat-list {
        display: block;
    }
    .raptor-cat-list a {
        border: 1px solid transparent;
        border-radius: 0;
        padding: 0 14px;
    }
    .rl-footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    body.woocommerce-cart,
    html:has(body.woocommerce-cart) {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .woocommerce-cart #content,
    .woocommerce-cart main,
    .woocommerce-cart article,
    .woocommerce-cart .page-content,
    .woocommerce-cart .site-main,
    .woocommerce-cart .entry-content {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        overflow-x: hidden;
    }
    .woocommerce-cart .entry-content {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
    .woocommerce-cart .wp-block-woocommerce-cart.alignwide,
    .woocommerce-cart .wp-block-woocommerce-cart,
    .woocommerce-cart .wc-block-cart {
        box-sizing: border-box;
        width: min(100%, calc(100vw - max(32px, env(safe-area-inset-left) + env(safe-area-inset-right))));
        max-width: calc(100vw - max(32px, env(safe-area-inset-left) + env(safe-area-inset-right)));
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: clip;
    }
    .woocommerce-cart .wc-block-cart__main,
    .woocommerce-cart .wc-block-components-main,
    .woocommerce-cart .wc-block-components-sidebar-layout,
    .woocommerce-cart .wc-block-components-sidebar-layout__main,
    .woocommerce-cart .wc-block-components-sidebar-layout__sidebar,
    .woocommerce-cart .wc-block-cart-items,
    .woocommerce-cart .wc-block-cart-items__row,
    .woocommerce-cart .wc-block-cart-item__wrap,
    .woocommerce-cart .wc-block-components-sidebar,
    .woocommerce-cart .wc-block-cart__totals-title,
    .woocommerce-cart .wc-block-components-totals-wrapper {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .woocommerce-cart .wc-block-cart-items__row,
    .woocommerce-cart .wc-block-components-totals-item {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 12px;
    }
    .woocommerce-cart .wc-block-components-product-name,
    .woocommerce-cart .wc-block-components-product-metadata,
    .woocommerce-cart .wc-block-components-totals-item__label {
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: normal;
    }
    .woocommerce-cart .wc-block-cart__submit-container,
    .woocommerce-cart .wc-block-cart__submit-button {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }
    .woocommerce-cart .wc-block-cart__submit-button {
        white-space: normal;
    }
    .rl-footer__cols { grid-template-columns: 1fr; gap: 28px; }
    .rl-footer__shop-list,
    .rl-footer__hot-list { columns: 1; }
    .woocommerce div.product .product_title { font-size: 1.5rem; }
}

@media (max-width: 900px) {
    .post-type-archive-product .raptor-shop-layout,
    .tax-product_cat .raptor-shop-layout,
    .tax-product_tag .raptor-shop-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 28px;
        width: 100%;
        max-width: 100vw;
        padding: 24px 16px 56px;
        overflow-x: hidden;
    }

    .post-type-archive-product .raptor-shop-sidebar,
    .tax-product_cat .raptor-shop-sidebar,
    .tax-product_tag .raptor-shop-sidebar {
        position: static;
        width: 100%;
        max-width: none;
        top: auto;
    }

    .raptor-shop-sidebar__title {
        margin-bottom: 18px;
        font-size: clamp(2rem, 13vw, 3.4rem);
    }

    .raptor-shop-search {
        margin-bottom: 28px;
    }

    .raptor-sidebar-section {
        margin-bottom: 26px;
    }

    .raptor-cat-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .raptor-cat-list a {
        min-width: 0;
        padding: 9px 10px;
        border-color: #d8d8dc;
        background: #fff;
    }

    .raptor-cat-list__name {
        white-space: normal;
    }

    .raptor-shop-main {
        width: 100%;
        min-width: 0;
    }

    .raptor-mobile-shop-heading {
        display: block;
        margin: 0;
        order: 1;
    }

    .raptor-shop-main {
        order: 2;
    }

    .raptor-shop-sidebar {
        order: 3;
    }

    .raptor-shop-main .woocommerce-products-header {
        display: none;
    }

    .raptor-shop-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .raptor-shop-main .woocommerce-products-header__title {
        max-width: 100%;
        font-size: clamp(2.75rem, 16vw, 4.4rem);
        line-height: 0.88;
        overflow-wrap: anywhere;
    }

    .raptor-shop-main .woocommerce-result-count {
        width: 100%;
        font-size: 1rem;
        line-height: 1.15;
    }

    .post-type-archive-product .woocommerce ul.products,
    .tax-product_cat .woocommerce ul.products,
    .tax-product_tag .woocommerce ul.products {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 16px !important;
        width: 100%;
        max-width: 100%;
    }

    .post-type-archive-product .woocommerce ul.products li.product,
    .tax-product_cat .woocommerce ul.products li.product,
    .tax-product_tag .woocommerce ul.products li.product {
        grid-column: 1 / -1 !important;
        width: auto !important;
        min-width: 0;
        min-height: 0;
        margin: 0 !important;
        padding: 14px;
    }

    .post-type-archive-product .woocommerce ul.products li.product:nth-child(4n + 2),
    .tax-product_cat .woocommerce ul.products li.product:nth-child(4n + 2),
    .tax-product_tag .woocommerce ul.products li.product:nth-child(4n + 2),
    .post-type-archive-product .woocommerce ul.products li.product:nth-child(4n + 4),
    .tax-product_cat .woocommerce ul.products li.product:nth-child(4n + 4),
    .tax-product_tag .woocommerce ul.products li.product:nth-child(4n + 4) {
        margin-top: 0 !important;
    }

    .rl-product-card__entry {
        min-height: 0;
        margin-bottom: 8px;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }

    .post-type-archive-product .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .tax-product_cat .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .tax-product_tag .woocommerce ul.products li.product .woocommerce-loop-product__title {
        min-height: 2.2em;
        font-size: clamp(1.18rem, 6vw, 1.55rem);
        line-height: 1;
    }

    .rl-product-card__tags {
        gap: 6px;
        margin-top: 10px;
    }

    .rl-product-card__tags span {
        min-height: 30px;
        padding: 0 8px;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }

    .post-type-archive-product .woocommerce ul.products li.product a img,
    .tax-product_cat .woocommerce ul.products li.product a img,
    .tax-product_tag .woocommerce ul.products li.product a img {
        margin: 14px 0 16px;
    }

    .rl-product-card__stock {
        left: 20px;
        top: 46%;
        min-height: 32px;
        max-width: calc(100% - 40px);
        padding: 0 10px;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        box-shadow: 3px 3px 0 #ff8aa2;
    }

    .post-type-archive-product .woocommerce ul.products li.product .price,
    .tax-product_cat .woocommerce ul.products li.product .price,
    .tax-product_tag .woocommerce ul.products li.product .price {
        margin: auto 0 12px;
        padding-top: 12px;
        font-size: clamp(1.28rem, 6vw, 1.75rem);
    }

    .post-type-archive-product .woocommerce ul.products li.product .button,
    .tax-product_cat .woocommerce ul.products li.product .button,
    .tax-product_tag .woocommerce ul.products li.product .button {
        min-height: 40px;
        width: 100%;
        margin: 0;
        padding: 0 10px;
        font-size: 0.76rem;
        letter-spacing: 0.12em;
        white-space: normal;
    }
}

@media (max-width: 420px) {
    .raptor-cat-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .post-type-archive-product .woocommerce ul.products,
    .tax-product_cat .woocommerce ul.products,
    .tax-product_tag .woocommerce ul.products {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 16px !important;
    }

    .post-type-archive-product .woocommerce ul.products li.product,
    .tax-product_cat .woocommerce ul.products li.product,
    .tax-product_tag .woocommerce ul.products li.product {
        padding: 16px;
    }
}

@media (max-width: 900px) {
    body.post-type-archive-product ul.products,
    body.tax-product_cat ul.products,
    body.tax-product_tag ul.products {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    body.post-type-archive-product ul.products li.product,
    body.tax-product_cat ul.products li.product,
    body.tax-product_tag ul.products li.product {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 16px !important;
    }

    body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
    body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
    body.tax-product_tag ul.products li.product .woocommerce-loop-product__title {
        min-height: 0;
        font-size: clamp(1.5rem, 8vw, 2rem);
        line-height: 1;
    }

    body.post-type-archive-product ul.products li.product .price,
    body.tax-product_cat ul.products li.product .price,
    body.tax-product_tag ul.products li.product .price {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
}

/* Keep the side-cart click-away layer invisible in every button state. */
.rl-side-cart,
.rl-side-cart__shade,
.rl-side-cart__shade:hover,
.rl-side-cart__shade:focus,
.rl-side-cart__shade:active {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
    transform: none !important;
}

/* Strong archive pagination override. */
.woocommerce nav.woocommerce-pagination {
    clear: both;
    display: block;
    margin: clamp(34px, 4vw, 58px) 0 0 !important;
    padding: 0 !important;
    text-align: left;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    list-style: none !important;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers > li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    list-style: none !important;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers > li::marker {
    content: '' !important;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers > li > .page-numbers {
    display: inline-flex !important;
    min-width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--rl-black);
    background: #fff;
    color: var(--rl-black);
    padding: 0 15px;
    font-family: var(--rl-cond);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow: 4px 4px 0 var(--rl-black);
}

.woocommerce nav.woocommerce-pagination ul.page-numbers > li > .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul.page-numbers > li > a.page-numbers:hover {
    background: var(--rl-black);
    color: #fff;
    box-shadow: 2px 2px 0 var(--rl-black);
    transform: translate(2px, 2px);
}

.woocommerce nav.woocommerce-pagination ul.page-numbers > li > .prev,
.woocommerce nav.woocommerce-pagination ul.page-numbers > li > .next {
    min-width: 66px;
}

#raptor-age-gate {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
