:root {
    --bg: #000000;
    --card-bg: rgba(24, 24, 27, 0.8);
    --card-border: rgba(255, 255, 255, 0.1);

    --theme: #7B00FF;
    --theme-gradient: linear-gradient(180deg, #9933FF 0%, #7B00FF 100%);
    --theme-glow: rgba(123, 0, 255, 0.5);

    --red: #FF3B30;
    --orange: #FF5F1F;
    --green: #00E676;
    --cyan: #00E5FF;

    --text: #FFFFFF;
    --text-muted: #A1A1AA;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-display: 'Montserrat', var(--font);

    --radius-card: 36px;
    --radius-md: 22px;
    --radius-sm: 18px;

    --field-h: 60px;

    --gutter: 16px;
    --content-width: 440px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    touch-action: manipulation;
}

body {
    min-height: 100vh;
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

input,
textarea {
    font: inherit;
    color: inherit;
}

a {
    color: inherit;
}

s {
    text-decoration: line-through;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-color: var(--bg);
    background-image: radial-gradient(circle at 50% 100%, #100020 0%, #000000 90%);
}

.layout {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding-bottom: 120px;
    position: relative;
}

.layout--footer {
    padding-bottom: 0;
}

.section {
    padding: 0 var(--gutter);
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    margin-bottom: 50px;
}

.card--hero {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-bottom: 30px;
}

.card--order {
    padding-bottom: 25px;
}

.section-head {
    padding: 25px 20px 10px;
    text-align: center;
}

.section-body {
    padding: 0 20px;
    margin-top: 15px;
}

.divider {
    height: 1px;
    border: none;
    background: var(--card-border);
    margin: 10px 0 25px;
}

.media {
    background: #000;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    margin-top: 10px;
}

.media img {
    width: 100%;
}

.section-title,
.heading {
    font-size: 25px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    background: linear-gradient(180deg, #fff 40%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    margin-bottom: 8px;
}

.heading {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--theme);
    text-shadow: 0 0 15px var(--theme-glow);
}

.prose {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    padding-bottom: 20px;
}

.prose h3 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.prose p {
    margin-bottom: 15px;
}

.prose b {
    color: #fff;
    font-weight: 900;
}

.prose img {
    width: 100%;
    max-width: 600px;
    margin: 10px auto 0;
    border-radius: 12px;
}

.prose-block + .prose-block {
    margin-top: 40px;
}

.prose-block__media:empty {
    display: none;
}

.prose-block__text > :last-child {
    margin-bottom: 0;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 68px;
    padding: 0 16px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;

    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease, opacity 0.2s ease;
}

.btn:active {
    transform: scale(0.97);
}

.btn:disabled {
    opacity: 0.6;
    cursor: default;
}

.btn--primary {
    color: #fff;
    background: var(--theme-gradient);
    box-shadow: 0 0 30px var(--theme-glow);
    margin-top: 10px;
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite ease-in-out;
    pointer-events: none;
}

.btn--secondary {
    min-height: 52px;
    font-size: 15px;
    border-radius: 12px;
    color: #fff;
    background: var(--theme-gradient);
    box-shadow: 0 5px 20px rgba(123, 0, 255, 0.3);
}

@keyframes shine {
    0%   { left: -100%; }
    20%  { left: 200%; }
    100% { left: 200%; }
}

.price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    row-gap: 6px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price__current {
    font-size: 60px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #fff 40%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price__aside {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price__old-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price__old {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-muted);
}

.badge {
    background: var(--orange);
    color: #000;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    transform: rotate(-2deg);
    box-shadow: 0 0 10px rgba(255, 95, 31, 0.4);
}

.badge[hidden] {
    display: none;
}

.stock {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    margin-bottom: 25px;
    border: 1px solid var(--orange);
    border-radius: var(--radius-sm);
    background: linear-gradient(90deg, rgba(255, 95, 31, 0.15), rgba(255, 95, 31, 0.05));
}

.stock__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stock__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    animation: pulse 1.5s infinite ease-in-out;
    filter: drop-shadow(0 0 8px rgba(255, 59, 48, 0.8));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50%      { transform: scale(1.15); opacity: 1; }
}

.stock__title {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--orange);
}

.stock__text {
    font-size: 11px;
    color: #ccc;
}

.stock__count {
    background: var(--orange);
    color: #000;
    font-weight: 800;
    padding: 0 4px;
    border-radius: 4px;
}

.stock__track {
    height: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.stock__fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #FF3B30, #FF9F0A);
    box-shadow: 0 0 15px rgba(255, 95, 31, 0.4);
    transition: width 1s ease;
}

.bundles {
    background: rgba(30, 30, 35, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 50px;
}

.bundles__title {
    padding: 16px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bundle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;

    min-height: 74px;
    padding: 16px 10px;
    position: relative;
    border: 1px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease;
}

.bundle:last-child {
    border-bottom-color: transparent;
}

.bundle:hover {
    background: rgba(255, 255, 255, 0.03);
}

.bundle--featured {
    background: rgba(123, 0, 255, 0.1);
    border-color: var(--theme);
}

.bundle__qty {
    font-size: 16px;
    font-weight: 500;
    color: #ccc;
}

.bundle--featured .bundle__qty {
    color: #fff;
}

.bundle__price {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    color: #fff;
}

.bundle__tag {
    width: 52px;
    padding: 4px 0;
    border-radius: 5px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.bundle__ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 78px;
    height: 78px;
    overflow: hidden;
    pointer-events: none;

    font-size: 0;
}

.bundle__ribbon::after {
    content: 'Хіт';
    position: absolute;
    top: 14px;
    right: -34px;
    width: 120px;
    line-height: 22px;
    transform: rotate(45deg);
    background: var(--theme);
    color: #fff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.benefits {
    --benefit-gap: 20px;
    list-style: none;
    margin-bottom: 50px;
}

.benefit {
    padding: 22px;
    margin-bottom: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
}

.benefit:last-child {
    margin-bottom: 0;
}

.benefit__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.benefit__text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

.specs {
    margin-bottom: 20px;
}

.spec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec:first-child {
    padding-top: 0;
}

.spec:last-child {
    border-bottom: none;
}

.spec dt {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.spec dd {
    font-size: 14px;
    font-weight: 700;
    text-align: right;
}

.trust {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.9), rgba(15, 15, 15, 0.95));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.trust__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.trust__logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.trust__name {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.trust__shop {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.trust__verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #aaa;
    white-space: nowrap;
}

.trust__score {
    text-align: right;
    flex-shrink: 0;
}

.trust__score b {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.trust__score span {
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

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

.trust__track {
    height: 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.trust__fill {
    width: 94%;
    height: 100%;
    border-radius: 10px;
    background: var(--green);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
}

.trust__stats {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 500;
    color: #888;
}

.trust__satisfied {
    color: var(--green);
    font-weight: 700;
}

.review-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--theme);
    border-radius: 16px;
    background: rgba(123, 0, 255, 0.15);
    box-shadow: 0 0 15px rgba(123, 0, 255, 0.1);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.review-toggle:hover {
    background: rgba(123, 0, 255, 0.3);
}

.review-toggle:active {
    transform: scale(0.98);
}

.review-form {
    max-height: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #111;
    transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
}

.review-form.is-open {
    max-height: 600px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--theme);
    box-shadow: 0 0 30px rgba(123, 0, 255, 0.15);
}

.review-form__title {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 15px;
}

.rating__star {

    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    font-size: 26px;
    line-height: 1;
    color: #444;
    transition: color 0.2s ease, transform 0.2s ease;
}

.rating__star.is-on {
    color: #FFD700;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.field {
    width: 100%;
    min-height: var(--field-h);
    padding: 0 20px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    font-size: 16px;
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.field::placeholder {
    color: var(--text-muted);
}

.field:focus {
    outline: none;
    background: #000;
    border-color: var(--theme);
    box-shadow: 0 0 15px var(--theme-glow);
}

.field--area {
    min-height: 90px;
    padding: 14px 20px;
    resize: vertical;
}

.review-form .field {
    margin-bottom: 10px;
}

.field-group {
    position: relative;
    margin-bottom: 14px;
}

.field--icon {
    padding-left: 55px;
}

.field-group__icon {
    position: absolute;
    top: calc(var(--field-h) / 2);
    left: 20px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    opacity: 0.5;
    pointer-events: none;
}

.field-group:focus-within .field-group__icon {
    opacity: 1;
}

.form-error {
    margin-bottom: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 59, 48, 0.4);
    border-radius: 12px;
    background: rgba(255, 59, 48, 0.1);
    color: #FF8A80;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.form-error[hidden] {
    display: none;
}

.order-form--cf7 .wpcf7-form,
.order-form--cf7 form {
    display: block;
}

.order-form--cf7 .wpcf7-form-control-wrap {
    display: block;
    position: static;
}

.order-form--cf7 .field-group br {
    display: none;
}

.order-form--cf7 p {
    margin: 0;
}

.order-form--cf7 .wpcf7-spinner {
    display: block;
    margin: 10px auto 0;
}

.order-form--cf7 .wpcf7-not-valid-tip {
    margin: 8px 0 0;
    padding: 0 20px;
    color: #FF8A80;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.order-form--cf7 .field.wpcf7-not-valid {
    border-color: var(--red);
    background: rgba(255, 59, 48, 0.08);
    box-shadow: 0 0 12px rgba(255, 59, 48, 0.25);
}

.order-form--cf7 .field.wpcf7-not-valid:focus {
    border-color: var(--red);
    background: #000;
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.45);
}

.order-form--cf7 .field-group:has(.wpcf7-not-valid) .field-group__icon {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(36%) sepia(84%)
            saturate(3200%) hue-rotate(348deg) brightness(103%) contrast(101%);
}

.order-form--cf7 .wpcf7-response-output {
    margin: 14px 0 0;
    padding: 10px 14px;
    border: 1px solid rgba(255, 59, 48, 0.4);
    border-radius: 12px;
    background: rgba(255, 59, 48, 0.1);
    color: #FF8A80;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.order-form--cf7 form.sent .wpcf7-response-output {
    border-color: rgba(52, 199, 89, 0.4);
    background: rgba(52, 199, 89, 0.12);
    color: #7CE495;
}

.form-note {
    margin-bottom: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.form-note[hidden] {
    display: none;
}

.form-note--ok {
    border: 1px solid rgba(52, 199, 89, 0.4);
    background: rgba(52, 199, 89, 0.12);
    color: #7CE495;
}

.form-note--error {
    border: 1px solid rgba(255, 59, 48, 0.4);
    background: rgba(255, 59, 48, 0.1);
    color: #FF8A80;
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.review {
    padding: 16px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    background: var(--card-bg);
    animation: slide-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review[hidden] {
    display: none;
}

@keyframes slide-in {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .review {
        animation: none;
    }
}

.review__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.review__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 13px;
    font-weight: 800;
}

.review__name {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3px;
}

.review__stars {
    display: flex;
    align-items: center;
    gap: 1px;
}

.review__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    padding: 4px 8px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 6px;
    background: rgba(0, 230, 118, 0.1);
    color: var(--green);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.review__text {
    font-size: 13px;
    line-height: 1.5;
    color: #ccc;
}

.review__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.review__date {
    font-size: 10px;
    font-weight: 500;
    color: #666;
}

.review__actions {
    display: flex;
    gap: 4px;
}

.review__reaction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 44px;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 600;
    color: #777;
    transition: color 0.2s ease;
}

.review__reaction:last-child {
    padding-right: 0;
}

.review__reaction img {
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.review__reaction:hover {
    color: #fff;
}

.review__reaction:hover img,
.review__reaction.is-active img {
    opacity: 1;
    transform: scale(1.15);
}

.review__reaction.is-active[data-reaction="like"]    { color: var(--theme); }
.review__reaction.is-active[data-reaction="dislike"] { color: var(--red); }

.qty {
    border: none;
    margin-bottom: 10px;

    min-width: 0;
}

.quantity__list {
    display: flex;
    gap: 10px;
    padding: 10px 5px 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.quantity__list::-webkit-scrollbar {
    display: none;
}

.quantity__card {
    display: flex;
    flex: 0 0 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    padding: 18px 10px 12px;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.quantity__card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.quantity__card:has(input:checked) {
    background: rgba(123, 0, 255, 0.14);
    border-color: var(--theme);
    box-shadow: inset 0 0 12px rgba(123, 0, 255, 0.25), 0 0 14px rgba(123, 0, 255, 0.25);
}

.quantity__card:has(input:focus-visible) {
    outline: 2px solid var(--theme);
    outline-offset: 2px;
}

.quantity__count {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
}

.quantity__price {
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
}

.quantity__badge {
    position: absolute;
    top: 6px;
    right: 6px;
    padding: 2px 6px;
    border-radius: 6px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 10px 15px 20px;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.4) 0%, rgba(0, 0, 0, 0.95) 70%);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sticky-bar.is-visible {
    transform: translateY(0);
}

.sticky-bar__info {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.sticky-bar__line {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.sticky-bar__line--sub {
    margin-top: 3px;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
}

.sticky-bar__btn {
    flex-grow: 1;
    padding: 16px 10px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--theme-gradient);
    box-shadow: 0 0 25px var(--theme-glow);
    color: #fff;
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-bar__btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite ease-in-out;
    pointer-events: none;
}

.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 94%;
    padding: 6px 14px 6px 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-150%);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast--success {
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.8), rgba(0, 200, 83, 0.4));
    box-shadow: 0 20px 40px rgba(0, 200, 83, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.toast__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 2px solid var(--theme);
    border-radius: 50%;
    background: #fff;
}

.toast--success .toast__icon {
    border-color: #fff;
}

.toast__body {
    flex: 1;
    min-width: 0;
}

.toast__title {
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.toast__text {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0.9;
}

.toast__time {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
    color: var(--theme);
}

.toast--success .toast__time {
    color: #fff;
    opacity: 0.85;
}

.footer {
    padding: 0 var(--gutter);
    text-align: center;
}

.footer__copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
    font-size: 11px;
    opacity: 0.4;
}

.footer__info {
    max-width: 400px;
    margin: 0 auto 15px;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.4);
}

.footer__info p {
    margin-bottom: 4px;
}

.footer__info a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 2px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 12px;
    list-style: none;
}

.footer__links a {

    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 4px;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
    opacity: 0.6;
    transition: opacity 0.3s ease, text-decoration-color 0.3s ease;
}

.footer__links a:hover {
    opacity: 1;
    text-decoration-color: #fff;
}

.card--thanks {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-bottom: 10px;
    text-align: center;
}

.thanks__icon {
    display: block;
    width: 72px;
    height: auto;
    margin: 0 auto 15px;
}

.thanks__text {
    padding-bottom: 10px;
}

.thanks__text > :last-child {
    margin-bottom: 0;
}

.card--products {
    padding-bottom: 30px;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    /* Explicit on the items too: if the stylesheet is ever served stale or the
       layout is overridden, a bare <li> would otherwise show its bullet. */
    list-style: none;
}

.products > li {
    list-style: none;
}

.product-card {
    display: flex;
    flex-direction: column;
    /* One per row on mobile; the breakpoints below narrow the basis. Flex
       items size from their content, so the width lives here rather than in
       a column track on the list. Growth is off so a card left alone on the
       last row keeps its column width instead of stretching across it. */
    flex: 0 1 100%;
    min-width: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.product-card__media {
    display: block;
    position: relative;
    background: #000;
    line-height: 0;
}

.product-card__media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* .product-card__media sets line-height: 0 to kill the inline-image gap, which the
   badge would inherit — collapsing its box so the text spilled out of its own
   background and read as clipped by the card corner. */
.product-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    line-height: 1.4;
    white-space: nowrap;
}

.product-card__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 8px;
    /* Wider inset than the 16px sides so the button is not crowded against
       the card's rounded bottom corners. */
    padding: 16px 20px 20px;
}

.product-card__title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
}

.product-card__title a {
    color: #fff;
    text-decoration: none;
}

.product-card__title a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-card__text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* The auto top margin absorbs the body's spare height, pushing the price and
   the button below it to the bottom of the card. Cards in a row stretch to
   equal height, so this bottom-aligns the price/button pair across the row
   even when descriptions differ in length. Vertical spacing between the body
   rows comes from the body's own gap. */
.product-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.product-card__price-current {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.product-card__price-old {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}

.product-card__btn {
    margin-top: 4px;
    min-height: 56px;
    padding: 0 20px;
}

@media (min-width: 767px) {
    :root {
        --gutter: 24px;
        --content-width: 720px;
    }

    .layout {
        padding-top: 30px;
        padding-bottom: 140px;
    }

    .card--hero {
        border-top: 1px solid var(--card-border);
        border-top-left-radius: var(--radius-card);
        border-top-right-radius: var(--radius-card);
    }

    .section-head {
        padding: 34px 32px 12px;
    }

    .section-body {
        padding: 0 32px;
        margin-top: 20px;
    }

    .section-title,
    .heading {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .prose {
        font-size: 16px;

        text-align: left;
    }

    .prose h3 {
        font-size: 20px;
    }

    .prose-block {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 28px;
    }

    .prose-block + .prose-block {
        margin-top: 56px;
    }

    .prose-block__text {
        min-width: 0;
    }

    .prose-block__media {
        min-width: 0;
    }

    .prose-block:nth-child(even) .prose-block__text {
        order: 2;
    }

    .prose-block .prose img {
        margin: 0;
    }

    .prose-block__media img {
        margin: 0;
        max-width: 100%;
    }

    .prose-block:not(:has(.prose-block__media img)) {
        display: block;
    }

    .price__current {
        font-size: 72px;
    }

    .price__old {
        font-size: 22px;
    }

    .benefits {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--benefit-gap);
    }

    .benefit {
        margin-bottom: 0;
    }

    .benefit:last-child:nth-child(odd) {
        grid-column: 1 / 2;
        transform: translateX(calc(50% + (var(--benefit-gap) / 2)));
    }

    .quantity__list {
        justify-content: center;
        min-width: 0;
    }

    .quantity__card {
        flex: 1 1 0;
        max-width: 160px;
        min-width: 0;
    }

    .review-form .field,
    .form-error {
        font-size: 15px;
    }

    .sticky-bar {
        max-width: var(--content-width);
        padding: 12px 24px 20px;
        border-radius: 24px 24px 0 0;
    }

    .toast {
        max-width: 420px;
    }

    /* Two per row: half the width minus this item's share of the 16px gap. */
    .product-card {
        flex-basis: calc((100% - 16px) / 2);
    }
}

@media (min-width: 1024px) {
    :root {
        --gutter: 0px;
        --content-width: 1080px;
    }

    .layout {
        padding: 48px 32px 160px;
    }

    .card {
        margin-bottom: 64px;
    }

    .card--hero,
    .card--order,
    .card--split {
        display: grid;
        grid-template-columns: 1fr 1fr;

        grid-template-rows: auto 1fr;
        grid-template-areas:
            "media head"
            "media body";
        padding-bottom: 0;
    }

    .card--hero .section-head,
    .card--order .section-head,
    .card--split .section-head {
        grid-area: head;
        padding: 40px 40px 24px;
        text-align: left;
    }

    .card--hero .section-title,
    .card--order .section-title,
    .card--split .section-title,
    .card--hero .section-subtitle,
    .card--order .section-subtitle,
    .card--split .section-subtitle {
        text-align: left;
    }

    .card--hero .media,
    .card--order .media,
    .card--split .media {
        grid-area: media;
        grid-row: 1 / -1;
        height: 100%;

        max-height: 640px;
        margin-top: 0;
        border-top: none;
        border-bottom: none;
        border-right: 1px solid var(--card-border);
    }

    .card--hero .media img,
    .card--order .media img,
    .card--split .media img {
        height: 100%;
        object-fit: cover;
    }

    .card--hero .section-body,
    .card--order .section-body,
    .card--split .section-body {
        grid-area: body;
        align-self: start;

        min-width: 0;
        padding: 0 40px 40px;
    }

    .card--hero .section-head,
    .card--order .section-head,
    .card--split .section-head {
        min-width: 0;
    }

    .card--split .media {
        max-height: none;
    }

    .card:not(.card--hero, .card--order, .card--split) .section-head {
        padding: 40px 40px 12px;
    }

    .card:not(.card--hero, .card--order, .card--split) .section-body {
        padding: 0 40px 8px;
    }

    .section-title,
    .heading {
        font-size: 38px;
    }

    .heading {
        margin-bottom: 28px;
    }

    .price {
        justify-content: flex-start;
    }

    .price__current {
        font-size: 76px;
    }

    .prose {
        max-width: 760px;
        margin: 0 auto;
        font-size: 17px;
    }

    .benefits {
        --benefit-gap: 24px;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--benefit-gap);
        margin-bottom: 64px;
    }

    .benefit {
        padding: 28px;
    }

    .benefit:last-child:nth-child(odd) {
        grid-column: auto;
        transform: none;
    }

    .benefit:last-child:nth-child(3n + 1) {
        grid-column: 1 / 2;
        transform: translateX(calc(100% + var(--benefit-gap)));
    }

    .benefit:nth-last-child(2):nth-child(3n + 1),
    .benefit:nth-last-child(2):nth-child(3n + 1) ~ .benefit:last-child {
        transform: translateX(calc(50% + (var(--benefit-gap) / 2)));
    }

    .reviews {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
        gap: 20px;
        margin-bottom: 64px;
    }

    .review {
        padding: 20px;
    }

    .trust {
        padding: 28px 32px;
    }

    .trust__shop {
        font-size: 17px;
    }

    .trust__score b {
        font-size: 34px;
    }

    .review-toggle,
    .review-form.is-open {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .review-toggle {
        font-size: 14px;
    }

    .quantity__card {
        flex: 1 1 0;
        padding: 22px 12px 16px;
    }

    .btn {
        min-height: 74px;
        font-size: 20px;
    }

    .btn--primary:hover,
    .sticky-bar__btn:hover {
        filter: brightness(1.08);
    }

    .bundles {
        max-width: 720px;
        margin: 0 auto 64px;
    }

    .bundle {
        padding: 20px 10px;
    }

    .sticky-bar {
        max-width: 1080px;
        padding: 14px 32px 18px;
        border-radius: 24px 24px 0 0;
    }

    .sticky-bar__btn {
        flex-grow: 0;
        min-width: 320px;
        margin-left: auto;
    }

    .footer {
        padding-top: 16px;
    }

    .footer__info {
        max-width: 640px;
        font-size: 13px;
    }

    .card--thanks {
        padding: 20px 0 30px;
    }

    .products {
        gap: 24px;
    }

    /* Three per row, accounting for the two 24px gaps between them. */
    .product-card {
        flex-basis: calc((100% - 48px) / 3);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
