/* ============================================================
   MOTOHUB — Stylesheet
   OpenCart 3 integration:
   Load in catalog/controller/common/header.php or via
   $this->document->addStyle('catalog/view/theme/YOUR_THEME/stylesheet/motohub.css');
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

@keyframes phoneRing {
    0%,
    100% {
        transform: rotate(0) scale(1);
    }

    2% {
        transform: rotate(12deg) scale(1.1);
    }

    4% {
        transform: rotate(-12deg) scale(1.1);
    }

    6% {
        transform: rotate(10deg) scale(1.1);
    }

    8% {
        transform: rotate(-10deg) scale(1.1);
    }

    10% {
        transform: rotate(6deg) scale(1.05);
    }

    12% {
        transform: rotate(-6deg) scale(1.05);
    }

    14% {
        transform: rotate(0) scale(1);
    }

    /* 1–6s: wait */
    14%,
    100% {
        transform: rotate(0) scale(1);
    }
}

.highlight-color {
    color: var(--accent);
}

.phone {
    animation: phoneRing 6s ease-in-out infinite;
    transform-origin: center;
}

.underline {
    position: relative;
}

.underline:before {
    content: '';

    display: block;
    width: 0%;
    height: 1px;
    background: currentColor;

    position: absolute;

    bottom: -2px;
    right: 0;

    transition: width 0.15s linear;
}

.underline:hover:before {
    width: 100%;
    left: 0;
    right: unset;
}

/* ── Variables ─────────────────────────────────────────── */
:root {
    --c-white: #fff;
    --bg: #0d0d0d;
    --bg2: #111111;
    --bg3: #161616;
    --bg4: #1e1e1e;
    --border: rgba(255, 255, 255, 0.08);
    --accent: #f04f00;
    --accent-dk: #d43c00;
    --danger: #d4183d;
    --success: #1a8a3c;
    --text: #f0f0f0;
    --text-muted: #888888;
    --text-dim: #555555;
    --text-faint: #333333;
    --ff-display: 'Barlow Condensed', sans-serif;
    --ff-body: 'Inter', sans-serif;
    --radius: 2px;
    --transition: 0.15s linear;

    --gap: 16px;

    /* White theme colors */
    --bg: #fff;
    --bg2: #e7e7e7;
    --bg3: #161616;
    --bg4: #e9e8e8;
    --border: rgba(0, 0, 0, 0.08);
    --accent: #f04f00;
    --text: #222;
    --text-white: #fff;
    --text-muted: #555;
    --text-dim: #969696;
    --text-faint: #454545;
    --faint: #333;
}

/* ── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    font-family: var(--ff-body);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body::-webkit-scrollbar {
    display: none;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
}
input,
textarea,
select {
    font: inherit;
}

/* ── Utility ────────────────────────────────────────────── */
.mh-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 768px) {
    .mh-container {
        padding: 0 32px;
    }
}

/* PRODUCT.HTML */

.wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 768px) {
    .wrap {
        padding: 0 32px;
    }
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    padding: 8px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition:
        opacity var(--tr),
        transform var(--tr);
    z-index: 200;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.dropdown a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #bbb;
    transition: var(--tr);
}
.dropdown a:hover {
    color: var(--text);
    background: rgba(240, 79, 0, 0.08);
    padding-left: 20px;
}
.nav-sale {
    margin-left: 8px;
    padding: 6px 12px;
    border: 1px solid rgba(240, 79, 0, 0.4);
    color: var(--accent);
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: var(--tr);
    white-space: nowrap;
}
.nav-sale:hover {
    background: var(--accent);
    color: #fff;
}
.search-form {
    position: relative;
    flex: 1;
    max-width: 380px;
    margin-left: auto;
}
.search-form input {
    width: 100%;
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 40px 10px 14px;
    font-size: 14px;
    outline: none;
    transition: border-color var(--tr);
}
.search-form input::placeholder {
    color: var(--dim);
}
.search-form input:focus {
    border-color: rgba(240, 79, 0, 0.5);
}
.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 12px;
    color: var(--dim);
    transition: color var(--tr);
    display: flex;
    align-items: center;
}
.search-form button:hover {
    color: var(--accent);
}
.header-icons {
    display: flex;
    align-items: center;
    gap: 2px;
}
.icon-btn {
    position: relative;
    padding: 10px;
    color: var(--muted);
    transition: color var(--tr);
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
}
.icon-btn:hover {
    color: var(--text);
}
.icon-btn.cart-btn:hover {
    color: var(--accent);
}
.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
}
.icon-desktop {
    display: none;
}
@media (min-width: 640px) {
    .icon-desktop {
        display: flex;
    }
}
.hamburger {
    display: flex;
}
@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 88px;
    background: var(--bg);
    z-index: 90;
    overflow-y: auto;
}
.mobile-menu.open {
    display: block;
}
.mob-search {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}
.mob-search input {
    flex: 1;
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
}
.mob-search button {
    background: var(--accent);
    color: #fff;
    padding: 0 14px;
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
}
.mob-nav-btn {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    cursor: pointer;
}
.mob-nav-btn svg {
    color: var(--accent);
    transition: transform var(--tr);
}
.mob-nav-btn.open svg {
    transform: rotate(180deg);
}
.mob-sub {
    display: none;
    background: var(--bg3);
}
.mob-sub.open {
    display: block;
}
.mob-sub a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #aaa;
    border-bottom: 1px solid var(--border);
    transition: color var(--tr);
}
.mob-sub a:hover {
    color: var(--accent);
}

/* Breadcrumb */
.breadcrumb {
    width: 100%;
    min-width: fit-content;
    background: var(--c-white);
    border-bottom: 1px solid var(--border);
    /* padding: 10px 0; */
    font-size: 12px;
    color: var(--dim);

    @media (max-width: 1024px) {
        min-width: unset;
        max-width: 100%;
        overflow: auto;
    }
}
.breadcrumb-in {
    /* max-width: 1400px; */
    min-width: fit-content;
    margin: 0 16px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
}
@media (min-width: 768px) {
    .breadcrumb-in {
        padding: 0 32px;
    }
}
.breadcrumb a {
    display: block;
    padding: 10px 0;

    color: var(--accent);
    transition: color var(--transition);
    cursor: pointer;
}
.breadcrumb a:hover {
    color: #ff7733;
}
.breadcrumb-sep {
    color: var(--accent);
    margin-left: 6px;
}
.breadcrumb-cur {
    color: var(--muted);
}

.product-breadcrumb {
    border-bottom: 0;
    background: var(--accent);
    color: #ffec0d;
}

.product-breadcrumb .breadcrumb-sep {
    color: var(--c-white);
}

.product-breadcrumb .breadcrumb-in {
    margin: 0;
}

.product-breadcrumb a {
    color: var(--c-white);
}

.product-breadcrumb a:hover {
    /* opacity: 0.6; */
    opacity: 1;
    color: var(--c-white);
}

.breadcrumb .underline:before {
    right: 14px;
    bottom: 7px;
}

.breadcrumb .underline:hover:before {
    width: calc(100% - 6px - 8px);
}

.fa-home:after {
    content: 'Головна';
    font-style: normal;
}

/* Product layout */
.product-page {
    padding: 32px 0 64px;
    padding-top: 0;
}
.product-grid {
    display: flex;
    /* align-items: flex-start; */
    /* display: grid; */
    gap: 40px;
}
@media (max-width: 1024px) {
    .product-grid {
        /* grid-template-columns: 1fr 1fr; */
        gap: 56px;
        flex-direction: column;
    }
}

/* Gallery */
.gallery-wrap-cont {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    @media (max-width: 1024px) {
        width: 100%;
    }
}

.gallery {
    user-select: none;
    width: 100%;
    position: sticky;
    bottom: 0;
}

.gallery-wrap-stick {
    width: 100%;
    background: red;
}

.gallery-main {
    position: relative;
    background: var(--c-white);
    overflow: hidden;
    /* cursor: zoom-in; */
    aspect-ratio: 4/3;
    margin-bottom: 10px;
}

.gallery-main.swiper-slide {
    width: 100%;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}
.gallery-main:hover img {
    /* transform: scale(1.04); */
}
.gallery-tags {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}
.g-tag {
    padding: 3px 10px;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.07em;
    color: #fff;
}
.gallery-zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(13, 13, 13, 0.8);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    opacity: 0;
    transition: opacity var(--tr);
}
.gallery-main:hover .gallery-zoom {
    opacity: 1;
}
.gallery-thumbs {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px; */
}

.swiper-slide {
    width: 100px;
}

.thumb {
    /* background: var(--bg2); */
    /* overflow: hidden; */
    cursor: pointer;
    /* aspect-ratio: 4/3; */
    /* border: 2px solid transparent; */
    /* transition: border-color var(--tr); */
}
.thumb.active {
    /* border-color: var(--accent); */
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* opacity: 0.6; */
    transition: opacity var(--tr);
}
.thumb:hover img,
.thumb.active img {
    opacity: 1;
}

/* Product info */
.prod-info {
    width: 50%;
    padding-top: 32px;

    @media (max-width: 1024px) {
        width: 100%;
        padding-top: 0;
    }
}
.prod-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.prod-brand-label {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--accent);

    @media (max-width: 768px) {
        font-size: 14px;
    }
}
.prod-share {
    color: var(--dim);
    transition: color var(--tr);
    padding: 4px;
}
.prod-share:hover {
    color: var(--text);
}
.prod-title {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(36px, 4vw, 56px);
    letter-spacing: -0.02em;
    line-height: 0.92;
    color: var(--text);
    margin-bottom: 14px;
}
.prod-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.stars {
    display: flex;
    gap: 2px;
}
.star {
    color: var(--accent);
}
.star.on {
    color: var(--accent);
    fill: var(--accent);
}
.rating-val {
    font-size: 14px;
    color: var(--text);
}
.rating-ct {
    font-size: 13px;
    color: var(--dim);
}
.in-stock {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--success);
}
.prod-price-block {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.prod-old-price {
    font-size: 14px;
    color: var(--dim);
    text-decoration: line-through;
    margin-bottom: 2px;
}
.prod-price {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(24px, 4vw, 36px);
    /* color: var(--text); */
    /* color: #3cc73cd1; */
    color: var(--accent);
    line-height: 1;
}

.prod-price-tel {
    font-size: clamp(36px, 2vw, 48px);
}

.prod-price-icon {
    width: 30px;
}

.prod-savings {
    background: rgba(212, 24, 61, 0.12);
    border: 1px solid rgba(212, 24, 61, 0.25);
    padding: 6px 12px;
}
.prod-savings p {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 13px;
    color: var(--danger);
}

/* Color picker */
.color-label {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 8px;
}
.color-label span {
    color: var(--text);
}
.colors {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.color-swatch {
    width: 32px;
    height: 32px;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    transition: all var(--tr);
}
.color-swatch.active {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
.color-swatch:hover {
    outline: 1px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}
.color-swatch.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.color-swatch.disabled::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top right,
        transparent 45%,
        rgba(255, 255, 255, 0.5) 45%,
        rgba(255, 255, 255, 0.5) 55%,
        transparent 55%
    );
}

/* Actions */
.prod-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;

    @media (max-width: 768px) {
        flex-direction: column;
    }
}
.qty-ctrl {
    display: flex;
    border: 1px solid var(--border);
}
.qty-ctrl button {
    width: 40px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--muted);
    transition: var(--tr);

    @media (max-width: 768px) {
        width: 80px;
    }
}
.qty-ctrl button:hover {
    color: var(--text);
    background: rgba(0, 0, 0, 0.04);
}
.qty-ctrl span {
    width: 40px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);

    @media (max-width: 768px) {
        width: unset;
        flex: 1;
    }
}
.add-cart-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    height: 44px;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: var(--tr);

    @media (max-width: 768px) {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}
.add-cart-btn.default {
    background: var(--accent);
    color: #fff;
}
.add-cart-btn.default:hover {
    background: var(--accent-dk);
}
.add-cart-btn.added {
    background: var(--success);
    color: #fff;
}
.wish-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim);
    transition: var(--tr);
}
.wish-btn:hover,
.wish-btn.active {
    border-color: var(--accent);
    color: var(--accent);
}
.wish-btn.active svg {
    fill: var(--accent);
}
.buy-now-btn {
    width: 100%;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: #ccc;
    transition: var(--tr);
    margin-bottom: 20px;
}
.buy-now-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text);
}

/* Trust grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;

    @media (max-width: 768px) {
        grid-template-columns: 1fr;
    }
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg2);
    padding: 10px 12px;
}
.trust-item svg {
    color: var(--accent);
    flex-shrink: 0;
}
.trust-item span {
    font-size: 12px;
    color: var(--muted);
}

/* Specs accordion */
.accordion {
    border: 1px solid var(--border);
}

.accordion + .accordion {
    margin-top: 32px;
}
.accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: var(--text);
    background: none;
    border: none;
    transition: background var(--tr);
    cursor: normal;
}
.accordion-btn:hover {
    /* background: rgba(255, 255, 255, 0.03); */
}
.accordion-btn svg {
    /* transition: transform var(--tr); */
    color: var(--dim);
}
.accordion-btn.open svg {
    transform: rotate(180deg);
}
.accordion-body {
    border-top: 1px solid var(--border);
}
.spec-row {
    display: flex;
    padding: 10px 16px;
    gap: 12px;
}
.spec-row:nth-child(even) {
    background: var(--bg2);
}
.spec-label {
    width: 180px;
    flex-shrink: 0;
    font-size: 13px;
    color: var(--dim);
}
.spec-val {
    font-size: 13px;
    color: #474747;
}

/* Reviews */
.reviews-section {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.sec-label {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 6px;
}
.sec-title {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--text);
}
.rating-big {
    font-family: var(--fd);
    font-weight: 900;
    font-size: 52px;
    color: var(--text);
    line-height: 1;
}
.reviews-grid {
    display: grid;
    gap: 12px;
}
@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.review-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 18px;
}
.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.review-date {
    font-size: 11px;
    color: var(--dim);
}
.review-text {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 10px;
}
.review-author {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}
.reviews-more {
    text-align: center;
    margin-top: 20px;
}

/* Related */
.related-section {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.related-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}
@media (min-width: 540px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.rel-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color var(--tr);
}
.rel-card:hover {
    border-color: rgba(240, 79, 0, 0.3);
}
.rel-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition:
        opacity 0.5s,
        transform 0.5s;
}
.rel-card:hover .rel-img img {
    opacity: 1;
    transform: scale(1.05);
}
.rel-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 8px;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.07em;
    color: #fff;
}
.rel-body {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rel-name {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
}
.rel-price {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 17px;
    color: var(--accent);
    margin-top: 2px;
}
.rel-cart {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: var(--tr);
    flex-shrink: 0;
}
.rel-cart:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Zoom modal */
.zoom-modal {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.95);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.zoom-modal.open {
    opacity: 1;
    pointer-events: all;
}
.zoom-modal img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
}
.zoom-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 32px;
    color: var(--muted);
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
}
.zoom-close:hover {
    color: var(--text);
}

/* Cart drawer */
.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.75);
    backdrop-filter: blur(4px);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.backdrop.open {
    opacity: 1;
    pointer-events: all;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 460px;
    background: var(--bg2);
    border-left: 1px solid var(--border);
    z-index: 310;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.cart-drawer.open {
    transform: translateX(0);
}
.cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.cart-head-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.04em;
    color: var(--text);
}
.cart-badge-inline {
    background: var(--accent);
    color: #fff;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 11px;
    padding: 1px 6px;
    min-width: 20px;
    text-align: center;
}
.cart-close-btn {
    color: var(--dim);
    transition: color var(--tr);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.cart-close-btn:hover {
    color: var(--text);
}
.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart-item {
    display: flex;
    gap: 10px;
    background: var(--bg3);
    padding: 10px;
    border: 1px solid var(--border);
}
.cart-item img {
    width: 76px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}
.cart-item-info {
    flex: 1;
    min-width: 0;
}
.ci-brand {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.07em;
    color: var(--accent);
}
.ci-name {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ci-color {
    font-size: 11px;
    color: var(--dim);
}
.ci-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}
.qty {
    display: flex;
    border: 1px solid var(--border);
}
.qty button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--muted);
    transition: var(--tr);
    background: none;
    border: none;
    cursor: pointer;
}
.qty button:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}
.qty span {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.ci-price {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 15px;
    color: var(--text);
}
.cart-remove {
    color: var(--accent);
    transition: color var(--tr);
    flex-shrink: 0;
    align-self: flex-start;
    padding: 2px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
}
.cart-remove:hover {
    color: var(--danger);
}
.cart-foot {
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    flex-shrink: 0;
    background: var(--bg);
}
.cart-totals {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}
.cart-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
}
.cart-row.total {
    border-top: 1px solid var(--border);
    padding-top: 10px;
}
.cart-row.total span:first-child {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 15px;
    color: var(--text);
}
.cart-row.total span:last-child {
    font-family: var(--fd);
    font-weight: 900;
    font-size: 20px;
    color: var(--text);
}
.free {
    color: #1a8a3c;
}
.promo-row {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}
.promo-row input {
    flex: 1;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
    transition: border-color var(--tr);
}
.promo-row input::placeholder {
    color: var(--accent);
}
.promo-row input:focus {
    border-color: rgba(240, 79, 0, 0.4);
}
.promo-row button {
    padding: 0 14px;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    transition: var(--tr);
    background: none;
    cursor: pointer;
}
.promo-row button:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text);
}
.checkout-btn {
    width: 100%;
    padding: 14px;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.05em;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background var(--tr);
    margin-bottom: 8px;
}
.checkout-btn:hover {
    background: var(--accent-dk);
}
.cart-continue {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: var(--dim);
    transition: color var(--tr);
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
}
.cart-continue:hover {
    color: var(--muted);
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border);
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 14px 0;
}
.footer-bottom-in {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
    color: var(--faint);
}
@media (min-width: 640px) {
    .footer-bottom-in {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 32px;
    }
}
.footer-bottom a:hover {
    color: var(--muted);
}
.legal {
    display: flex;
    gap: 16px;
}
.footer-main-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
@media (min-width: 768px) {
    .footer-main-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 40px 32px;
    }
}
@media (min-width: 1200px) {
    .footer-main-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
    }
}
.footer-brand-col {
    grid-column: 1/-1;
}
@media (min-width: 768px) {
    .footer-brand-col {
        grid-column: 1;
    }
}
.footer-col-title {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.07em;
    color: var(--text);
    margin-bottom: 14px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col a {
    font-size: 13px;
    color: var(--dim);
    transition: color var(--tr);
}
.footer-col a:hover {
    color: var(--accent);
}
.socials {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.social {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim);
    transition:
        border-color var(--tr),
        color var(--tr);
}
.social:hover {
    border-color: var(--accent);
    color: var(--accent);
}
/* /PRODUCT.HTML */

.mh-section-label {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 6px;
}
.mh-section-title {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--text);
    text-transform: uppercase;
}
.mh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.mh-btn-primary {
    background: var(--accent);
    color: #fff;
}
.mh-btn-primary:hover {
    background: var(--accent-dk);
}
.mh-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.6);
}
.mh-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.4);
}

/* ── Top Bar ────────────────────────────────────────────── */
.mh-topbar {
    /* background: #0a0a0a; */
    background: #fdfdfd;
    border-bottom: 1px solid var(--border);
    padding: 7px 0px;
    font-size: 12px;
    color: var(--text-muted);
}
.mh-topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.mh-topbar-left,
.mh-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mh-topbar-left {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mh-topbar-right {
    margin-left: auto;
    /* position: relative; */
}

.mh-topbar a:hover {
    /* color: var(--text); */
}
.mh-topbar-promo {
    color: var(--accent);
}
.mh-topbar-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    font-weight: 600;
    font-size: 1.125rem;

    transition: color var(--transition);

    @media (max-width: 1024px) {
        padding: 14px 10px;
        margin-top: 8px;
    }
}
.mh-topbar-phone svg {
    width: 1.5rem;
    color: var(--accent);
    margin-bottom: -0.125rem;
}
@media (max-width: 640px) {
    .mh-topbar-hours,
    .mh-topbar-promo {
        display: none;
    }
}

/* ── Header ─────────────────────────────────────────────── */
.mh-header {
    position: sticky;
    top: 0;
    z-index: 100;
}
.mh-header-main {
    /* background: var(--bg2); */
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mh-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mh-header-inner.--bottom {
    @media (max-width: 1024px) {
        flex-direction: column;
        height: auto;
        padding-bottom: 16px;
        gap: 8px;
    }
}

@media (min-width: 768px) {
    .mh-header-inner {
        padding: 0 32px;
    }
}

/* Logo */
.mh-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-right: 16px;
}

.mh-header-logo {
    @media (max-width: 1024px) {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.mh-logo-icon {
    width: 110px;
    margin-bottom: -10px;
    /* clip-path: polygon(0 0,100% 0,85% 100%,0 100%); */
    /* display: flex; align-items: center; justify-content: center; */
}
.mh-logo-icon span {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 14px;
    color: #fff;
}
.mh-logo-text {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--text);
}
.mh-logo-text em {
    font-style: normal;
    color: var(--accent);
}

/* Desktop Nav */
.mh-nav {
    display: none;
    flex: 1;
    align-items: center;
}
@media (min-width: 1024px) {
    .mh-nav {
        display: flex;
    }
}

.mh-nav-item {
    position: relative;
}
.mh-nav-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: var(--text);
    white-space: nowrap;
    border: none;
    background: none;
    cursor: pointer;
    transition: all var(--transition);
}

.mh-nav-btn:hover {
    color: var(--c-white);
    background: var(--accent);
}
.mh-nav-btn svg {
    transition: transform var(--transition);
}
.mh-nav-item:hover .mh-nav-btn svg {
    transform: rotate(180deg);
}

.mh-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #f4f4f4;
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 8px 0;
    /* box-shadow: 0 20px 40px rgba(0,0,0,.5); */
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition:
        opacity var(--transition),
        transform var(--transition);
    z-index: 200;
}
.mh-nav-item:hover .mh-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.mh-dropdown a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
}
.mh-dropdown a:hover {
    color: var(--c-white);
    background: var(--accent);
    padding-left: 20px;
    /* transform: translateX(1.25rem); */
}

.mh-nav-sale {
    margin-left: 8px;
    padding: 6px 12px;
    border: 1px solid rgba(240, 79, 0, 0.4);
    color: var(--accent);
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: var(--transition);
    white-space: nowrap;
}
.mh-nav-sale:hover {
    background: var(--accent);
    color: #fff;
}

/* Search */
.mh-search {
    position: relative;
    flex: 1;
    max-width: 380px;
    margin-left: auto;

    @media (max-width: 1024px) {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }
}
.mh-search input {
    width: 100%;
    background: #eee;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 40px 10px 14px;
    font-size: 16px;
    outline: none;
    transition: border-color var(--transition);
    border-radius: var(--radius);
}
.mh-search input::placeholder {
    color: var(--text-dim);
}
.mh-search input:focus {
    border-color: rgba(240, 79, 0, 0.8);
}
.mh-search input:hover {
    border-color: rgba(240, 79, 0, 0.4);
}
.mh-search button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 12px;
    color: var(--text-dim);
    transition: color var(--transition);
}
.mh-search button:hover {
    color: var(--accent);
}

/* Header icons */
.mh-header-icons {
    display: none;
    align-items: center;
    gap: 2px;
}

.mh-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    position: relative;
    padding: 10px 14px;

    /* background: var(--accent);
    color: var(--c-white); */
    transition: background var(--transition);
    font-weight: 500;
    font-size: 14px;
    border-radius: 9999px;
    border: 1px solid var(--accent);
    color: var(--accent);

    color: var(--c-white);
    background: var(--accent);

    @media (max-width: 1024px) {
        border-radius: 2px;
    }
}

.mh-icon-btn.active {
    background: var(--success);
    border-color: var(--success);
}

.mh-icon-btn.empty {
    /* padding-left: 0;
    padding-right: 0;
    width: 47px; */
}

.mh-icon-btn:hover {
    /* color: var(--text); */
    @media (min-width: 1024px) {
        background: transparent;
        color: var(--accent);
    }
}

.mh-cart-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0;
}

.mh-cart-highlight {
    color: var(--accent);
}

.mh-cart-head-label {
    display: flex;
    gap: 4px;

    /* @media (max-width: 1024px) {
        position: absolute;
        top: 0;
        right: 0;
        color: var(--c-white);
        width: 5px;
        height: 5px;
        border-radius: 100%;
        background: var(--accent-dk);
    } */
}

.mh-icon-btn.cart:hover {
    /* color: var(--accent); */
    /* color: var(--c-white);
    background: var(--accent); */
}

.mh-icon-btn-svg {
    width: 25px;
    height: 25px;
}
.mh-cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: var(--ff-display);
}
.mh-icon-btn.icon-desktop {
    display: none;
}
@media (min-width: 640px) {
    .mh-icon-btn.icon-desktop {
        display: flex;
    }
}

/* Hamburger */
.mh-hamburger {
    display: flex;
}
@media (min-width: 1024px) {
    .mh-hamburger {
        /* display: none; */
    }
}

/* ── Mobile Menu ────────────────────────────────────────── */
.mh-mobile-menu {
    /* display: none; */
    position: fixed;
    inset: 0;
    top: 79px;
    left: 0;
    transform: translateX(-100%);
    background: var(--bg);
    z-index: 90;
    overflow-y: auto;
    transition: transform 0.3s ease;
}
.mh-mobile-menu.is-open {
    display: block;
    transform: translateX(0%);
}

.mh-mobile-search {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}
.mh-mobile-search input {
    flex: 1;
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
}
.mh-mobile-search button {
    background: var(--accent);
    color: #fff;
    padding: 0 14px;
    display: flex;
    align-items: center;
}

.mh-mobile-nav-item {
}
.mh-mobile-nav-btn {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mh-mobile-nav-btn svg {
    color: var(--accent);
    transition: transform var(--transition);
}
.mh-mobile-nav-btn.is-open svg {
    transform: rotate(180deg);
}
.mh-mobile-sub {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        opacity 0s 0.2s,
        height var(--transition);
    background: #eee;
}
.mh-mobile-sub.is-open {
    display: block;
    opacity: 1;
    transition: height var(--transition);
}
.mh-mobile-sub a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}
.mh-mobile-sub a:hover {
    color: var(--accent);
}

/* ── Hero ───────────────────────────────────────────────── */
.mh-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 64px - 57px);
    min-height: 520px;
    max-height: 820px;
    overflow: hidden;
    background: var(--bg);

    @media (max-width: 1024px) {
        height: calc(100svh - 71px - 129px);
    }
}
.mh-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}
.mh-slide.is-active {
    opacity: 1;
    pointer-events: all;
}
.mh-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mh-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0d0d0d 0%, rgba(13, 13, 13, 0.7) 50%, transparent 100%);
}
.mh-slide-overlay-b {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0d0d0d 0%, transparent 50%);
}
.mh-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}
.mh-slide-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}
@media (min-width: 768px) {
    .mh-slide-inner {
        padding: 0 48px;
    }
}

.mh-slide-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 4px 10px;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}
.mh-slide-title {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(52px, 9vw, 110px);
    letter-spacing: -0.02em;
    line-height: 0.9;
    /* color: var(--text); */
    color: var(--text-white);
    margin-bottom: 14px;
    white-space: pre-line;
}
.mh-slide-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}
.mh-slide-price {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--accent);
    margin-right: 16px;
}
.mh-slide-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 1024px) {
    .mh-slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Hero controls */
.mh-hero-controls {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    z-index: 10;
}
.mh-hero-controls-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}
@media (min-width: 768px) {
    .mh-hero-controls-inner {
        padding: 0 48px;
    }
}
.mh-dots {
    display: flex;
    gap: 6px;
    flex: 1;
}
.mh-dot {
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    width: 16px;
    border: none;
    padding: 0;
    transition: all 0.3s;
    cursor: pointer;
}
.mh-dot.is-active {
    width: 40px;
    background: var(--accent);
}
.mh-hero-arrows {
    display: flex;
    gap: 6px;
}
.mh-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.mh-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.mh-hero-counter {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-white);
}

/* ── Benefits ───────────────────────────────────────────── */
.mh-benefits {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.mh-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
}
@media (min-width: 768px) {
    .mh-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {
    .mh-benefits-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.mh-benefit {
    background: var(--c-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 22px 12px;
    /* border-right: 1px solid var(--border); */
    /* border-bottom: 1px solid var(--border); */
    transition: background var(--transition);
}

.--hover {
    cursor: pointer;
}

.mh-benefit.--hover:hover {
    background: var(--accent);
}

.mh-benefit.--hover:hover .mh-benefit-icon {
    background: rgba(255, 255, 255, 0.2);
}

.mh-benefit.--hover:hover .mh-benefit-icon,
.mh-benefit.--hover:hover .mh-benefit-title,
.mh-benefit.--hover:hover .mh-benefit-sub {
    color: var(--text-white);
}

.mh-benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(240, 79, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all var(--transition);
    border-radius: 5px;
}

.mh-benefit-svg {
    width: 22px;
    height: 22px;
}

.mh-benefit-title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
    transition: all var(--transition);
}
.mh-benefit-sub {
    font-size: 11px;
    color: var(--text-dim);
    transition: all var(--transition);
}

/* ── Categories ─────────────────────────────────────────── */
.mh-categories {
    padding: 56px 0;
}
.mh-categories-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}
.mh-view-all {
    display: none;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    transition: color var(--transition);
}
@media (min-width: 768px) {
    .mh-view-all {
        display: flex;
    }
}
.mh-view-all:hover {
    color: var(--accent);
}

.mh-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
}
@media (min-width: 768px) {
    .mh-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    .mh-cat-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.mh-cat-card {
    position: relative;
    overflow: hidden;
    background: var(--c-white);
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mh-cat-card .mh-cat-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}
.mh-cat-card:hover .mh-cat-card-img {
    /* opacity: 0.8; */
    @media (min-width: 1023px) {
        transform: scale(0.9);
    }
}

.mh-cat-card .mh-cat-card-img-helmet {
    width: 60%;
}

.mh-cat-card:hover .mh-cat-name {
    opacity: 1;
}

.mh-cat-card-overlay {
    opacity: 0;
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0d0d0d 0%, rgba(13, 13, 13, 0.15) 55%, transparent 100%);
}
.mh-cat-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
}
.mh-cat-count {
    font-size: 11px;
    color: var(--text);
    margin-bottom: 4px;
}
.mh-cat-name {
    text-align: center;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 17px;
    margin-top: 6px;
    color: var(--text);
    opacity: 0.7;
    transition: opacity var(--transition);
}
.mh-cat-line {
    margin-top: 8px;
    height: 2px;
    width: 0;
    background: var(--accent);
    transition: width 0.35s ease;
}
.mh-cat-card:hover .mh-cat-line {
    width: 100%;
}
.mh-cat-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.3s,
        transform 0.3s;
}
.mh-cat-card:hover .mh-cat-arrow {
    @media (min-width: 1023px) {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Products ───────────────────────────────────────────── */
.mh-products {
    padding: 56px 0;
    border-top: 1px solid var(--border);
}
.mh-products-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}
@media (min-width: 768px) {
    .mh-products-head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}
.mh-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.mh-tab {
    padding: 6px 14px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
    cursor: pointer;
}
.mh-tab:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.3);
}
.mh-tab.is-active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.mh-product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
}
@media (min-width: 540px) {
    .mh-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .mh-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* OpenCart 3 note: use foreach $products as $product in your twig loop */
.mh-product-card {
    position: relative;
    background: var(--c-white);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    cursor: pointer;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

.mh-product-card:hover {
    /* background: var(--bg3); */
    /* border-color: rgba(240, 79, 0, 0.3); */
    @media (min-width: 1023px) {
        box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.1);
    }
}

.mh-product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    /* background: var(--bg); */
}

.mh-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: all var(--transition);
    object-fit: contain;
}

.mh-product-img-wrap img.mh-product-img-2 {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.05);
}

.mh-product-card:hover .mh-product-img-wrap img.mh-product-img-1 {
    opacity: 1;
}

.mh-product-card:hover .mh-product-img-wrap img {
    @media (min-width: 1023px) {
        opacity: 1;
        transform: scale(1.2);
    }
}
.mh-product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 8px;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.07em;
    color: #fff;
}
.mh-product-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(13, 13, 13, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity var(--transition);
}
.mh-product-card:hover .mh-product-wish {
    opacity: 1;
}
.mh-product-wish.is-wished {
    color: var(--accent);
}
.mh-product-wish.is-wished svg {
    fill: var(--accent);
}

.mh-product-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.mh-product-brand {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.07em;
    color: var(--accent);
    margin-bottom: 4px;
}
.mh-product-name {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}
.mh-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}
.mh-star {
    color: var(--text-faint);
}
.mh-star.on {
    color: var(--accent);
    fill: var(--accent);
}
.mh-rating-count {
    font-size: 11px;
    color: var(--text-dim);
    margin-left: 4px;
    align-self: center;
}

.mh-product-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
}
.mh-product-price {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 19px;
    color: var(--text);
}

.mh-product-price-phone {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}

.mh-product-price-icon {
    width: 14px;
    margin-left: 5px;
    margin-top: -2px;
}

.mh-cart-badge:not(.active) {
    opacity: 0;
}

.mh-product-old-price {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: line-through;
}

.mh-cart-change {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mh-add-to-cart,
.mh-pag-btn {
    cursor: pointer;

    width: 36px;
    height: 36px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    flex-shrink: 0;
}

.mh-pag-btn {
    border-radius: 1px;
    font-weight: 600;
}

.mh-pag-btn.active {
    background: var(--bg2);
    color: var(--text-dim);
    cursor: unset;
}

.mh-product-card .mh-add-to-cart {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 5;
}

.mh-add-to-cart:hover,
.mh-pag-btn:hover:not(.active) {
    background: var(--accent-dk);
}

.mh-products-more {
    text-align: center;
    margin-top: 28px;
}

/* ── Promo Banner ───────────────────────────────────────── */
.mh-promo {
    position: relative;
    background: var(--accent);
    overflow: hidden;
}
.mh-promo-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
    background-size: 20px 20px;
}
.mh-promo-inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
@media (min-width: 768px) {
    .mh-promo-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 36px 32px;
    }
}
.mh-promo-label {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}
.mh-promo-title {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(28px, 4vw, 56px);
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1;
}
.mh-promo-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}
.mh-countdown {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mh-countdown-block {
    text-align: center;
    background: rgba(13, 13, 13, 0.28);
    padding: 10px 14px;
    min-width: 60px;
}
.mh-countdown-num {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 34px;
    color: #fff;
    line-height: 1;
}
.mh-countdown-lbl {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}
.mh-countdown-sep {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 26px;
    color: rgba(255, 255, 255, 0.4);
}
.mh-promo-btn {
    background: var(--bg);
    color: #fff;
    flex-shrink: 0;
}
.mh-promo-btn:hover {
    background: #1a1a1a;
}

/* ── Split Promo ────────────────────────────────────────── */
.mh-split {
    padding: 6px 0;
}
.mh-split-grid {
    display: grid;
    gap: 10px;
}
@media (min-width: 768px) {
    .mh-split-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mh-split-card {
    position: relative;
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
@media (min-width: 768px) {
    .mh-split-card {
        height: 280px;
    }
}
.mh-split-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition:
        opacity 0.5s,
        transform 0.5s;
}
.mh-split-card:hover img {
    opacity: 0.55;
    transform: scale(1.05);
}
.mh-split-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 13, 13, 0.9), transparent);
}
.mh-split-card.accent .mh-split-overlay {
    background: linear-gradient(to right, rgba(240, 79, 0, 0.85), transparent);
}
.mh-split-body {
    position: relative;
    padding: 24px;
    z-index: 1;
}
.mh-split-label {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 6px;
}
.mh-split-card.accent .mh-split-label {
    color: rgba(255, 255, 255, 0.65);
}
.mh-split-title {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 30px;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.05;
}
.mh-split-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--accent);
    transition: gap var(--transition);
}
.mh-split-card.accent .mh-split-cta {
    color: #fff;
}
.mh-split-card:hover .mh-split-cta {
    gap: 10px;
}

/* ── Brands ─────────────────────────────────────────────── */
.mh-brands {
    /* border-top: 1px solid var(--border); */
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
    overflow: hidden;
    background: var(--c-white);
}
.mh-brands-label {
    text-align: center;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-bottom: 28px;
}
.mh-brands-track-wrap {
    overflow: hidden;
}
.mh-brands-track {
    display: flex;
    width: max-content;
    animation: mh-marquee 30s linear infinite;
}
.mh-brands-track:hover {
    /* animation-play-state: paused; */
}
.mh-brand-item {
    width: 281px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 40px;
    border-right: 1px solid var(--border);
    /* cursor: pointer; */
    transition: background var(--transition);
    flex-shrink: 0;

    @media (max-width: 1024px) {
        height: 100px;
    }
}
.mh-brand-item:hover {
    background: rgba(255, 255, 255, 0.02);
}
.mh-brand-item-img {
    width: 200px;
}
.mh-brand-item-img.--lifan {
    width: 150px;
}
.mh-brand-item-img.--kayo {
    width: 120px;
}
.mh-brand-item-img.--cfmoto {
    width: 120px;
}
.mh-brand-item-img.--bse {
    width: 150px;
}
.mh-brand-name {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    white-space: nowrap;
    transition: color var(--transition);
}
.mh-brand-item:hover .mh-brand-name {
    color: var(--text);
}
.mh-brand-sub {
    font-size: 11px;
    color: var(--text-faint);
    transition: color var(--transition);
}
.mh-brand-item:hover .mh-brand-sub {
    color: var(--text-dim);
}

@keyframes mh-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ── Footer ─────────────────────────────────────────────── */
.mh-footer {
    background: #0a0a0a;
    margin-top: auto;

    /* border-top: 1px solid var(--border); */
}

.mh-footer-newsletter {
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
}
.mh-footer-newsletter-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 768px) {
    .mh-footer-newsletter-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 32px;
    }
}
.mh-newsletter-title {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--text);
}
.mh-newsletter-sub {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 2px;
}
.mh-newsletter-form {
    display: flex;
    max-width: 400px;
    width: 100%;
}
.mh-newsletter-form input {
    flex: 1;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-right: none;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
}
.mh-newsletter-form input:focus {
    border-color: rgba(240, 79, 0, 0.4);
}
.mh-newsletter-form input::placeholder {
    color: var(--text-faint);
}
.mh-newsletter-form button {
    background: var(--accent);
    color: #fff;
    padding: 0 18px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.mh-newsletter-form button:hover {
    background: var(--accent-dk);
}

.mh-footer-main {
    padding: 24px 0;
    background: #f4f4f4;
}
.mh-footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
@media (min-width: 768px) {
    .mh-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 32px;
    }
}
@media (min-width: 1024px) {
    .mh-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mh-footer-logo {
    width: 110px;
}

.mh-footer-brand {
    grid-column: 1 / -1;
}
@media (min-width: 768px) {
    .mh-footer-brand {
        grid-column: 1;
    }
}

.mh-footer-label {
    color: var(--text);
}

.mh-footer-contacts {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mh-footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
    transition: color var(--transition);
}
.mh-footer-contact-row a:hover {
    color: var(--accent);
}
.mh-footer-contact-row svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.mh-footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.mh-social {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition:
        border-color var(--transition),
        color var(--transition);
}
.mh-social:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.mh-footer-col-title {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.07em;
    color: var(--text);
    margin-bottom: 14px;
}
.mh-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mh-footer-col a {
    font-size: 13px;
    color: var(--text);
    transition: color var(--transition);
}

.mh-footer-col ul li a {
    color: var(--text-dim);
}

.mh-footer-col a:hover {
    color: var(--accent);
}

.mh-footer-bottom {
    border-top: 1px solid var(--border);
    padding: 14px 0;
}
.mh-footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--c-white);
}
@media (min-width: 640px) {
    .mh-footer-bottom-inner {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0 32px;
    }
}
.mh-footer-bottom a:hover {
    color: var(--text-muted);
}
.mh-footer-legal {
    display: flex;
    gap: 16px;
}

/* ── Cart Drawer ────────────────────────────────────────── */
.mh-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.75);
    backdrop-filter: blur(4px);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mh-backdrop.is-open {
    opacity: 1;
    pointer-events: all;
}

.mh-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 460px;
    /* background: var(--bg2); */
    background: #f7f7f7;
    border-left: 1px solid var(--border);
    z-index: 310;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mh-cart-drawer.is-open {
    transform: translateX(0);
}

.mh-cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.mh-cart-head-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.04em;
    color: var(--text);
}
.mh-cart-head-badge {
    background: var(--accent);
    color: #fff;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 11px;
    padding: 1px 6px;
    min-width: 20px;
    text-align: center;
}
.mh-cart-close {
    width: 35px;
    height: 35px;
    color: var(--text-dim);
    transition: color var(--transition);
}
.mh-cart-close:hover {
    color: var(--text);
}

.mh-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mh-cart-empty {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.mh-cart-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--c-white);
    padding: 10px;
    border: 1px solid var(--border);
}
.mh-cart-item-img {
    /* width: 76px; */
    width: 110px;
    /* height: 60px; */
    aspect-ratio: 16/14;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.mh-cart-item-info {
    flex: 1;
    min-width: 0;
}
.mh-cart-item-brand {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.07em;
    color: var(--accent);
}
.mh-cart-item-name {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mh-cart-item-color {
    font-size: 11px;
    color: var(--text-dim);
}
.mh-cart-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}
.mh-qty {
    display: flex;
    border: 1px solid var(--border);
}
.mh-qty button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
    transition: var(--transition);
}
.mh-qty button:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}
.mh-qty span {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.mh-cart-item-price {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 15px;
    color: var(--accent);
}
.mh-cart-item-remove {
    position: absolute;
    top: 4px;
    right: 8px;

    width: 32px;
    height: 32px;
    color: var(--text-faint);
    transition: color var(--transition);
    flex-shrink: 0;
    align-self: flex-start;
    padding: 2px;
}
.mh-cart-item-remove:hover {
    color: var(--danger);
}

.mh-cart-footer {
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    flex-shrink: 0;
    background: var(--bg);
}
.mh-cart-totals {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}
.mh-cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}
.mh-cart-total-row.total {
    border-top: 1px solid var(--border);
    padding-top: 10px;
}
.mh-cart-total-row.total span:first-child {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 15px;
    color: var(--text);
}
.mh-cart-total-row.total span:last-child {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 20px;
    color: var(--accent);
}

.mh-cart-free {
    color: #1a8a3c;
}
.mh-promo-row {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}
.mh-promo-row input {
    flex: 1;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
    transition: border-color var(--transition);
}
.mh-promo-row input:focus {
    border-color: rgba(240, 79, 0, 0.4);
}
.mh-promo-row input::placeholder {
    color: var(--text-faint);
}
.mh-promo-row button {
    padding: 0 14px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
}
.mh-promo-row button:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text);
}
.mh-cart-checkout {
    width: 100%;
    padding: 14px;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.05em;
    background: var(--accent);
    color: var(--c-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
    margin-bottom: 8px;
}

.mh-cart-checkout[disabled] {
    pointer-events: none;
    background: #ccc;
}

.mh-cart-checkout:hover {
    background: var(--accent-dk);
    color: var(--c-white);
}

.mh-cart-continue {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
    transition: color var(--transition);
    padding: 4px;
}
.mh-cart-continue:hover {
    color: var(--text-muted);
}

/* ── SVG Icons ──────────────────────────────────────────── */
svg {
    display: inline-block;
    vertical-align: middle;
}

/* custom */

html {
    scrollbar-gutter: stable;
}

/* Custom css */
@media (max-width: 1024px) {
    .--desktop {
        display: none;
    }
}

@media (min-width: 1025px) {
    .--mobile {
        display: none;
    }
}

/* Live Search Ajax */
.live-search {
    margin-top: 0px;
    box-shadow: unset;
}

.mh-topbar-cart {
    position: absolute;
    right: 0;
    /* margin-left: auto; */
}

.category-container {
    margin-bottom: 48px;
}

.category-title {
    margin: 16px 0 24px;
}

.category-pagination {
    margin-top: 24px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.pagination-nav-icon {
    width: 20px;
    opacity: 0.8;
}

.pagination-nav-icon.--singular {
    margin-right: -6px;
}

.pagination-nav-icon.--reverse {
    /* margin-right: -6px; */
    transform: rotate(180deg);
}

.pagination-nav-icon.--reverse.--singular {
    margin-right: 0;
    margin-left: -6px;
}

/* Product layout */
.product-page {
    padding: 32px 0 64px;
    padding-top: 0;
}
.product-grid {
    display: flex;
    gap: 40px;
}
@media (min-width: 1025px) {
    .product-grid {
        /* grid-template-columns: 1fr 1fr; */
        gap: 56px;
    }
}

.gallery-slider {
    height: calc(100vh - 64px - 72px - 36px - 100px);

    @media (max-width: 1024px) {
        height: auto;
        aspect-ratio: 4/2;
        /* max-height: 600px; */
    }

    @media (max-width: 768px) {
        aspect-ratio: 1/1;
    }
}

.gallery-slider,
.gallery-thumbs {
    width: 100%;
}

.gallery-thumbs .thumb {
    transition: all var(--transition);
}

.gallery-thumbs .thumb:not(.swiper-slide-thumb-active):hover {
    opacity: 0.7;
}

.gallery-thumbs .thumb:not(.swiper-slide-thumb-active) {
    opacity: 0.4;
}

.product-btn {
    position: absolute;
    top: 50%;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    border-radius: 100%;
    background: var(--accent);
    color: var(--c-white);

    transition: background var(--transition);
}

.product-btn:not([disabled]):hover {
    background: var(--accent-dk);
    cursor: pointer;
}

.product-btn[disabled] {
    opacity: 0.6;
}

.product-btn-prev {
    left: 0;
    transform: translateY(-50%);
}

.product-btn-next {
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}

.product-btn-icon {
    width: 32px;
}

.product__colors {
    display: flex;
    align-items: center;
    gap: var(--gap);
    margin-top: var(--gap);
}
.product__color {
    width: 3rem;
    height: 3rem;
    border-radius: 8px;
    opacity: 1;
    transition: all var(--transition);
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 0.625rem;
    border: 2px solid transparent;
}

.product__color-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
    border-radius: 4px;
}

.product__color.active {
    opacity: 1;
}

.product__radio-input {
    display: none;
}

.product__radio-input:checked + .product__color {
    border-color: var(--accent);
}

.product__radio-input:checked + .product__color .product__color-img {
    transform: scale(0.8);
}
.product__color.--blue {
    background: var(--c-brand);
}
.product__color.--yellow {
    background: #dddd2a;
}
.product__color.--green {
    background: #79c626;
}
.product__options > * + * {
    margin-top: var(--gap);
}

/* toast */

.toast-wrap {
    position: fixed;
    bottom: 32px;
    right: 52px;
    z-index: 10;

    display: flex;
    flex-direction: column;
    gap: 16px;

    @media (max-width: 1024px) {
        right: 32px;
    }

    @media (max-width: 768px) {
        left: 16px;
        right: 16px;
    }
}

.toast {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 16px;

    background: var(--success);
    color: var(--c-white);
}

.toast-title {
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    display: flex;
    font-size: 14px;
    gap: 6px;
    padding-right: 24px;
}

.toast-title h4 {
    font-size: 20px;
}

.toast-icon {
    position: absolute;
    right: 16px;
    top: 16px;

    width: 16px;
    height: 16px;
}

.toast-icon-svg {
    width: 26px;
    color: var(--success);
}

.toast-inner {
    width: 100%;
}

.toast-cart-btn {
    display: block;
    text-align: center;
    /* width: fit-content; */
    font-weight: 500;
    background: var(--c-white);
    padding: 12px 20px;
    border-radius: 4px;
    margin-top: 16px;
    color: var(--success);
    text-transform: uppercase;
    transition: opacity var(--transition);

    width: 100%;
}

.toast-cart-btn:hover {
    opacity: 0.6;
}

.empty-title {
    margin: 10px auto;
    color: #666;
    text-align: center;
    max-width: 80%;
}

/* Empty state */
.empty-page {
    /* min-height: 70vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    text-align: center;
}
.empty-icon-wrap {
    position: relative;
    margin-bottom: 32px;
}
.empty-icon {
    width: 120px;
    height: 120px;
    border: 2px dashed var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.empty-dot1 {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 14px;
    height: 14px;
    background: rgba(240, 79, 0, 0.3);
}
.empty-dot2 {
    position: absolute;
    bottom: -6px;
    left: -6px;
    width: 10px;
    height: 10px;
    background: rgba(240, 79, 0, 0.15);
}
.empty-label {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 10px;
}
.empty-title {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(40px, 6vw, 72px);
    letter-spacing: -0.02em;
    line-height: 0.95;
    color: var(--text);
    margin-bottom: 16px;
}
.empty-sub {
    font-size: 15px;
    color: var(--dim);
    max-width: 420px;
    line-height: 1.65;
    margin-bottom: 28px;
}
.cat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}
.cat-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--muted);
    transition: var(--tr);
}
.cat-chip:hover {
    border-color: rgba(240, 79, 0, 0.5);
    color: var(--accent);
}
.cat-chip svg {
    opacity: 0;
    transition: opacity var(--tr);
}
.cat-chip:hover svg {
    opacity: 1;
}
.empty-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
}

.empty-btns.no-mb {
    margin-bottom: 0;
}

.notify-note {
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 8px;
}
.notify-form {
    display: flex;
    max-width: 340px;
    width: 100%;
}
.notify-form input {
    flex: 1;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 14px;
    font-size: 13px;
    outline: none;
    transition: border-color var(--tr);
}
.notify-form input::placeholder {
    color: var(--accent);
}
.notify-form input:focus {
    border-color: rgba(240, 79, 0, 0.4);
}
.notify-form button {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-left: none;
    color: var(--muted);
    padding: 0 16px;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: var(--tr);
    white-space: nowrap;
}
.notify-form button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.notify-success {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-size: 14px;
    margin-top: 8px;
}
.notify-success.show {
    display: flex;
}

.empty-btns a {
    padding: 12px 24px;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: var(--c-white);
    font-weight: 500;
    transition: all var(--transition);
}

.empty-btns a:hover {
    opacity: 0.7;
}

.empty-search {
    font-size: 28px;
}

.empty-no-goods {
    margin: 12px 0;
}

.empty-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-page.mb-32 {
    margin-bottom: 32px;
}

/* checkout */

/* Checkout page */
.checkout-page {
    padding: 32px 0 64px;
}

/* Steps */
.steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--dim);
    white-space: nowrap;
    background: none;
    border: none;
    cursor: default;
    transition: color var(--tr);
}
.step.done {
    color: var(--accent);
    cursor: pointer;
}
.step.active {
    color: var(--text);
}
.step-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-family: var(--fd);
    font-weight: 800;
    flex-shrink: 0;
}
.step.active .step-num {
    background: var(--accent);
    color: #fff;
}
.step.done .step-num {
    background: rgba(240, 79, 0, 0.15);
    color: var(--accent);
}
.step.pending .step-num {
    background: var(--bg3);
    color: var(--dim);
}
.step-arrow {
    color: var(--faint);
    font-size: 16px;
    margin: 0 2px;
}

/* Two-column layout */
.checkout-grid {
    display: grid;
    gap: 24px;
}
@media (min-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr 380px;
        gap: 32px;
        align-items: start;
    }
}

/* Form card */
.form-card {
    background: var(--c-white);
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);

    border: 1px solid var(--border);
    padding: 24px;
}
.form-card-title {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 20px;
}
.field-grid {
    display: grid;
    gap: 14px;
}

.field.has-error label {
    color: red;
}

.field.has-error .input {
    border-color: red;
}

.field-grid .text-danger {
    color: red;
    margin-top: 8px;
}

.field-grid.two {
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
    .field-grid.two {
        grid-template-columns: 1fr;
    }
}

.field-address {
    @media (min-width: 767px) {
        grid-column: span 2;
    }
}

.field label {
    display: block;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.07em;
    color: var(--dim);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 11px 14px;
    font-size: 16px;
    outline: none;
    transition: border-color var(--tr);
}
.field input::placeholder,
.field textarea::placeholder {
    color: #a9a8a8;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: rgba(240, 79, 0, 0.5);
}
.field select {
    appearance: none;
    cursor: pointer;
}
.check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-top: 10px;
}
.check-label input {
    margin-top: 3px;
    accent-color: var(--accent);
    flex-shrink: 0;
}
.check-label span {
    font-size: 13px;
    color: var(--dim);
    line-height: 1.5;
}
.check-label a {
    color: var(--accent);
    text-decoration: underline;
}

/* Radio options */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.radio-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition:
        border-color var(--tr),
        background var(--tr);
}
.radio-opt:hover {
    border-color: rgba(255, 255, 255, 0.2);
}
.radio-opt.selected {
    border-color: var(--accent);
    background: rgba(240, 79, 0, 0.04);
}
.radio-opt input {
    accent-color: var(--accent);
    flex-shrink: 0;
}
.radio-opt-icon {
    color: var(--dim);
    flex-shrink: 0;
    transition: color var(--tr);
}
.radio-opt.selected .radio-opt-icon {
    color: var(--accent);
}
.radio-opt-info {
    flex: 1;
}
.radio-opt-label {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}
.radio-opt-sub {
    font-size: 12px;
    color: var(--dim);
    margin-top: 2px;
}
.radio-opt-price {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}
.radio-opt-price.free {
    color: var(--success);
}

/* Card fields */
.card-fields {
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 16px;
    margin-top: 10px;
}
.card-fields-title {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--dim);
    margin-bottom: 12px;
}

/* Confirm summary */
.confirm-row {
    display: flex;
    gap: 16px;
    font-size: 13px;
    margin-bottom: 10px;
}
.confirm-label {
    color: var(--dim);
    width: 110px;
    flex-shrink: 0;
}
.confirm-val {
    color: var(--text);
}
.confirm-products {
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: 14px;
}
.confirm-prod {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.confirm-prod img {
    width: 52px;
    height: 42px;
    object-fit: cover;
    flex-shrink: 0;
}
.confirm-prod-name {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
}
.confirm-prod-qty {
    font-size: 11px;
    color: var(--dim);
}
.confirm-prod-price {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
    margin-left: auto;
    flex-shrink: 0;
}

/* Nav buttons */
.form-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.form-nav__total {
    font-size: 18px;
    margin-bottom: 10px;
}

.form-nav__total span {
    font-family: 700;
    color: var(--accent);
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--muted);
    padding: 12px 20px;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: var(--tr);
    background: none;
    cursor: pointer;
}
.btn-back:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text);
}
.btn-next {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 14px;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background var(--tr);
}
.btn-next:hover {
    background: var(--accent-dk);
}

/* Order summary sidebar */
.order-summary {
    /* background: var(--bg2); */
    background: #fff;
    border: 1px solid var(--border);
    /* position: sticky;
        top: 80px; */

    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);

    max-height: 350px;
    overflow: auto;
}

.order-products {
    padding: 18px;
}

.summary-title {
    width: 100%;
    padding: 18px;
    background: var(--c-white);
    position: sticky;
    top: 0;

    font-family: var(--fd);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.07em;
    color: var(--text);
    border-bottom: 1px solid #eee;
}
.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.summary-item:hover {
    color: var(--accent);
}

.summary-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-item img {
    width: 85px;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.summary-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.summary-item-name {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
}
.summary-item-color {
    font-size: 11px;
    color: var(--dim);
}
.summary-item-qty {
    font-size: 11px;
    color: var(--dim);
}
.summary-item-price {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 14px;
    color: var(--accent);
    margin-top: 2px;
}
.summary-totals {
    border-top: 1px solid var(--border);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
}
.summary-row.total {
    border-top: 1px solid var(--border);
    padding-top: 10px;
    margin-top: 4px;
}
.summary-row.total span:first-child {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 14px;
    color: var(--text);
}
.summary-row.total span:last-child {
    font-family: var(--fd);
    font-weight: 900;
    font-size: 20px;
    color: var(--accent);
}
.summary-free {
    color: var(--success);
}

/* Success */
.success-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    min-height: 60vh;
}
.success-page.show {
    /* display: flex; */
}
.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 138, 60, 0.12);
    border: 2px solid rgba(26, 138, 60, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.success-title {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
}
.success-num {
    font-size: 14px;
    color: var(--dim);
    margin-bottom: 4px;
}
.success-total {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 16px;
}
.success-msg {
    font-size: 14px;
    color: var(--dim);
    max-width: 380px;
    line-height: 1.6;
    margin-bottom: 28px;
}
.success-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.success-btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: background var(--tr);
}
.success-btn-primary:hover {
    background: var(--accent-dk);
}
.success-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--muted);
    padding: 12px 28px;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: var(--tr);
}
.success-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--text);
}
