:root {
    --red: #d90010;
    --red-dark: #a6000c;
    --ink: #080808;
    --muted: #676767;
    --line: #e8e8e8;
    --soft: #f6f6f6;
    --white: #fff;
    --shadow: 0 18px 55px rgba(0, 0, 0, .10);
}

/* Premium home refinement */
.home .container {
    width: min(1320px, calc(100% - 56px));
}
.home .topbar {
    font-size: 13px;
    padding: 9px 12px;
}
.home .site-header__inner {
    height: 82px;
}
.home .brand span {
    font-size: 42px;
    letter-spacing: .01em;
}
.home .primary-nav ul {
    gap: 30px;
}
.home .primary-nav a {
    font-size: 13px;
    text-transform: uppercase;
}
.home-hero {
    min-height: 760px;
    isolation: isolate;
    background: #030405;
}
.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.66) 34%, rgba(0,0,0,.18) 62%, rgba(0,0,0,.72) 100%), var(--hero-image);
    background-size: cover;
    background-position: center right;
    transform: scale(1.02);
}
.home-hero::before {
    z-index: 1;
    background: radial-gradient(circle at 70% 30%, rgba(217,0,16,.16), transparent 24%), repeating-linear-gradient(112deg, rgba(255,255,255,.045) 0 1px, transparent 1px 42px);
}
.home-hero .hero__track {
    z-index: 2;
    opacity: .42;
}
.home-hero .hero__grid {
    z-index: 3;
    min-height: 760px;
    grid-template-columns: 520px 1fr;
    padding-top: 96px;
}
.home-hero .hero__copy {
    max-width: 520px;
}
.home-hero .hero__image {
    display: none;
}
.home-hero .hero__kicker {
    font-size: 56px;
    letter-spacing: .01em;
}
.home-hero h1 {
    font-size: clamp(112px, 9vw, 174px);
    letter-spacing: 0;
}
.home-hero .hero__after {
    font-size: 57px;
}
.home-hero .hero__text {
    max-width: 410px;
    margin-top: 22px;
    color: rgba(255,255,255,.9);
    font-size: 19px;
}
.home-hero .button {
    min-height: 50px;
    padding-inline: 32px;
}
.home .feature-strip {
    margin-top: -54px;
}
.home .feature-strip__grid {
    max-width: 1260px;
    padding: 26px 58px;
    border-radius: 8px;
    box-shadow: 0 22px 58px rgba(0,0,0,.2);
}
.home .section {
    padding: 58px 0 28px;
}
.home .section__head {
    margin-bottom: 24px;
}
.home .section__head h2,
.why-lewe h2 {
    font-size: 35px;
    letter-spacing: .01em;
}
.home-category-card {
    min-height: 245px;
    border-radius: 7px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.home-category-card img {
    min-height: 245px;
    filter: saturate(1.08) contrast(1.08);
}
.product-card {
    border-color: #dedede;
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(0,0,0,.035);
}
.product-card__media {
    padding: 22px;
    background: linear-gradient(180deg, #fff, #f7f7f7);
}
.product-card__body {
    min-height: 118px;
}
.product-card__title {
    min-height: 42px;
    font-size: 14px;
}
.product-card__price {
    font-size: 15px;
}
.promo-banner {
    min-height: 300px;
    border-radius: 9px;
}
.promo-banner img {
    height: 300px;
}
.promo-banner h2 {
    font-size: 62px;
}
.why-lewe {
    padding-top: 34px;
}
.social-newsletter {
    padding-top: 14px;
}
.newsletter {
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0,0,0,.12);
}
.site-footer {
    margin-top: 42px;
}

.nav-toggle-control {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

@media (max-width: 900px) {
    .home .container {
        width: min(100% - 28px, 1320px);
    }
    .home-hero,
    .home-hero .hero__grid {
        min-height: 680px;
    }
    .home-hero .hero__grid {
        grid-template-columns: 1fr;
        padding-top: 116px;
    }
    .home-hero h1 {
        font-size: 92px;
    }
    .home-hero .hero__kicker,
    .home-hero .hero__after {
        font-size: 38px;
    }
}

@media (max-width: 560px) {
    .home .container {
        width: min(100% - 22px, 1320px);
    }
    .home .brand span {
        font-size: 30px;
    }
    .home-hero,
    .home-hero .hero__grid {
        min-height: 620px;
    }
    .home-hero::after {
        background-position: 62% center;
    }
    .home-hero h1 {
        font-size: 74px;
    }
    .home-hero .hero__kicker,
    .home-hero .hero__after {
        font-size: 30px;
    }
    .home .feature-strip {
        margin-top: 0px;
    }
    .home .feature-strip__grid {
        padding: 20px;
    }
}

* { box-sizing: border-box; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
    background: var(--red);
    color: var(--white);
    text-align: center;
    font: 800 12px/1 Barlow Condensed, sans-serif;
    letter-spacing: .04em;
    padding: 8px 12px;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.site-header__inner { height: 74px; display: flex; align-items: center; gap: 30px; }
.brand span {
    display: inline-block;
    font: 900 34px/1 Barlow Condensed, sans-serif;
    font-style: italic;
    letter-spacing: .02em;
    transform: skewX(-10deg);
}
.brand--footer span { font-size: 40px; }
.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.primary-nav a { font-size: 13px; font-weight: 700; transition: color .2s ease; }
.primary-nav a:hover,
.primary-nav .current-menu-item > a { color: var(--red); }
.header-actions { display: flex; gap: 18px; align-items: center; }
.action-icon,
.icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: currentColor;
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
}
.icon-search { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 20-5.2-5.2a7 7 0 1 0-1.4 1.4L20 21zM5 10a5 5 0 1 1 10 0 5 5 0 0 1-10 0Z'/%3E%3C/svg%3E"); }
.icon-user { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0 2c-4.4 0-8 2.2-8 5v2h16v-2c0-2.8-3.6-5-8-5Z'/%3E%3C/svg%3E"); }
.icon-cart { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM3 3h2l2.2 10.5A3 3 0 0 0 10.1 16H18a3 3 0 0 0 2.8-2l1.8-6H7.1L6.6 5H3V3Z'/%3E%3C/svg%3E"); }
.icon-truck { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5h12v9h2.2l1.8-3h2v6h-2a3 3 0 0 1-6 0H9a3 3 0 0 1-6 0H1v-4h2V5Zm3 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm10 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z'/%3E%3C/svg%3E"); }
.icon-shield { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Zm-1 14-4-4 1.4-1.4L11 13.2l5.6-5.6L18 9l-7 7Z'/%3E%3C/svg%3E"); }
.icon-rotate { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.7 6.3A8 8 0 1 0 20 12h-2a6 6 0 1 1-1.8-4.2L13 11h8V3l-3.3 3.3Z'/%3E%3C/svg%3E"); }
.icon-lock { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 9V7A5 5 0 0 0 7 7v2H5v13h14V9h-2Zm-8 0V7a3 3 0 0 1 6 0v2H9Z'/%3E%3C/svg%3E"); }
.icon-mail, .icon-phone, .icon-pin, .icon-clock { border: 1px solid currentColor; border-radius: 50%; background: none; mask-image: none; }
.nav-toggle { display: none; background: none; border: 0; width: 38px; height: 38px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 7px 0; }

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(100deg, #fff 0%, #fff 42%, #f0f0f0 100%);
}
.hero__track {
    position: absolute;
    inset: auto -10% 0 38%;
    height: 74%;
    background: linear-gradient(115deg, rgba(217,0,16,.16), transparent 36%), repeating-linear-gradient(-8deg, transparent 0 26px, rgba(0,0,0,.035) 27px 28px);
    transform: skewX(-13deg);
}
.hero__grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; min-height: 620px; gap: 20px; }
.hero__kicker, .hero__after, h1, h2, h3 { font-family: Barlow Condensed, sans-serif; text-transform: uppercase; }
.hero__kicker { margin: 0; font-size: 48px; font-style: italic; font-weight: 800; line-height: .92; }
.hero h1 { margin: 0; color: var(--red); font-size: 118px; font-style: italic; line-height: .82; letter-spacing: 0; }
.hero__after { margin: 6px 0 16px; font-size: 46px; font-style: italic; font-weight: 800; line-height: .92; }
.hero__text { max-width: 360px; color: #333; font-size: 17px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 26px;
    border-radius: 4px;
    border: 1px solid var(--line);
    font: 800 13px/1 Barlow Condensed, sans-serif;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.button--red { background: var(--red); color: var(--white); border-color: var(--red); }
.button--ghost { background: var(--white); }
.hero__image img { width: 100%; filter: drop-shadow(0 30px 35px rgba(0,0,0,.25)); animation: float-bike 5s ease-in-out infinite; }

@keyframes float-bike {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.feature-strip { border-block: 1px solid var(--line); background: var(--white); }
.feature-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 26px 0; }
.feature-strip__item { display: flex; align-items: center; gap: 14px; }
.feature-strip .icon { flex: 0 0 44px; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; padding: 12px; color: var(--ink); background-color: var(--ink); }
.feature-strip strong { display: block; font: 800 15px/1.1 Barlow Condensed, sans-serif; text-transform: uppercase; }
.feature-strip small { color: var(--muted); }
.section { padding: 56px 0; }
.section--gray { background: #fafafa; }
.section__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 22px; }
.section__head h2, .page-title h1, .archive-hero h1 { margin: 0; font-size: 38px; line-height: 1; }
.section__head a { font: 800 12px/1 Barlow Condensed, sans-serif; text-transform: uppercase; }
.category-grid, .product-grid { display: grid; gap: 22px; }
.category-grid { grid-template-columns: repeat(4, 1fr); }
.category-card, .product-card, .shop-sidebar, .contact-form, .faq, .product-tabs {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 6px;
}
.category-card { padding: 16px; transition: transform .2s ease, box-shadow .2s ease; }
.category-card:hover, .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-card img { aspect-ratio: 1.35; object-fit: contain; width: 100%; }
.category-card strong { display: block; margin-top: 12px; font: 800 17px/1 Barlow Condensed, sans-serif; text-transform: uppercase; }
.category-card span { display: block; margin-top: 4px; font: 800 11px/1 Barlow Condensed, sans-serif; text-transform: uppercase; }
.product-grid { grid-template-columns: repeat(4, 1fr); }
.product-grid--three { grid-template-columns: repeat(3, 1fr); }
.product-card { overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,.12); }
.product-card__media { position: relative; display: block; background: #f8f8f8; padding: 18px; overflow: hidden; }
.product-card__media-link { display: block; }
.product-card__media-link img { width: 100%; aspect-ratio: 1; object-fit: contain; transition: transform .45s ease; }
.product-card:hover .product-card__media-link img { transform: scale(1.08); }
.product-card__badge { position: absolute; top: 12px; left: 12px; padding: 4px 8px; background: var(--red); color: var(--white); font: 800 10px/1 Barlow Condensed, sans-serif; text-transform: uppercase; border-radius: 2px; z-index: 2; }
.product-card__body { padding: 14px 16px 18px; }
.product-card__title { display: block; font-weight: 700; }
.product-card__price { margin-top: 4px; font-weight: 800; color: var(--red); }
.archive-hero {
    min-height: 280px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center right;
    border-bottom: 1px solid var(--line);
}
.archive-hero p, .page-title p { max-width: 520px; color: var(--muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split__media { background: #f5f5f5; padding: 24px; border-radius: 6px; }
.split__copy h2 { font-size: 48px; line-height: .95; margin: 0 0 18px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.stat-row span { border-left: 3px solid var(--red); padding-left: 12px; color: var(--muted); }
.stat-row strong { display: block; color: var(--ink); font-size: 28px; }
.collection-toolbar, .page-title--shop { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
select, input, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 13px 14px;
    font: inherit;
    background: var(--white);
}
.collection-toolbar select, .page-title--shop select { width: auto; padding: 9px 34px 9px 12px; }
.filter-button { border: 0; background: transparent; font: 800 12px/1 Barlow Condensed, sans-serif; text-transform: uppercase; }
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 24px; }
.shop-sidebar { padding: 22px; align-self: start; position: sticky; top: 96px; }
.shop-sidebar h2 { margin: 0 0 18px; font-size: 20px; }
.filter-block { border-top: 1px solid var(--line); padding-top: 18px; margin-top: 18px; }
.filter-block h3 { margin: 0 0 12px; font-size: 15px; }
.filter-block label { display: block; margin: 8px 0; color: var(--muted); }
.filter-block input[type="checkbox"] { width: auto; margin-right: 8px; }
.color-dots span { display: inline-block; width: 17px; height: 17px; border-radius: 50%; border: 1px solid #bbb; background: var(--dot); margin-right: 7px; }
.product-detail { display: grid; grid-template-columns: 1.08fr .92fr; gap: 38px; align-items: start; }
.product-gallery { display: grid; grid-template-columns: 84px 1fr; gap: 18px; }
.product-gallery__thumbs { display: grid; gap: 12px; align-content: start; }
.product-gallery__thumbs img { border: 1px solid var(--line); border-radius: 5px; padding: 6px; cursor: pointer; aspect-ratio: 1; object-fit: cover; }
.product-gallery__main { background: #f6f6f6; border-radius: 6px; padding: 28px; }
.product-gallery__main img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.product-summary h1 { font-size: 36px; margin: 12px 0 4px; line-height: 1; }
.single-price { font-size: 26px; font-weight: 900; margin-bottom: 18px; }
.single-excerpt { color: var(--muted); margin-bottom: 22px; }
.variations_form.cart, form.cart { display: grid; gap: 16px; }
.quantity { display: inline-flex; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; vertical-align: middle; }
.quantity input { width: 68px; border: 0; text-align: center; }
.single_add_to_cart_button, .woocommerce button.button {
    min-height: 44px;
    padding: 0 30px;
    border: 0;
    border-radius: 4px;
    background: var(--red);
    color: var(--white);
    font: 800 13px/1 Barlow Condensed, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}
.product-promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.product-promises span { display: flex; gap: 8px; align-items: center; font-size: 12px; font-weight: 700; }
.product-tabs { margin-top: 34px; padding: 24px; }
.woocommerce-tabs ul.tabs { display: flex; gap: 28px; list-style: none; padding: 0 0 14px; border-bottom: 1px solid var(--line); }
.woocommerce-tabs ul.tabs a { font: 800 13px/1 Barlow Condensed, sans-serif; text-transform: uppercase; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.contact-info h2 { font-size: 28px; margin-top: 0; }
.contact-info ul { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 18px; }
.contact-info li { display: flex; gap: 12px; align-items: center; }
.contact-form { padding: 24px; display: grid; gap: 14px; }
.contact-form .button { width: max-content; border: 0; cursor: pointer; }
.faq { margin-top: 34px; padding: 6px 22px; }
.faq details { border-bottom: 1px solid var(--line); padding: 17px 0; }
.faq details:last-child { border-bottom: 0; }
.faq summary { cursor: pointer; font-weight: 800; }
.site-footer { background: #f7f7f7; border-top: 1px solid var(--line); padding: 42px 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.1fr .9fr 1.2fr; gap: 28px; align-items: center; }
.site-footer p { margin: 8px 0 0; font: 700 13px/1 Barlow Condensed, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.site-footer .developer-credit { color: var(--red); letter-spacing: .08em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 18px; flex-wrap: wrap; }
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; justify-content: end; }
.footer-badges span { border: 1px solid var(--line); border-radius: 4px; padding: 8px 10px; background: var(--white); font-size: 12px; font-weight: 700; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
/* shop-sidebar uses translateX for drawer — never let reveal override it */
.shop-sidebar.reveal,
.shop-sidebar.reveal.is-visible { opacity: 1; transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1); }
.shop-sidebar.reveal.is-open { transform: translateX(0); }

.home .site-header {
    position: absolute !important;
    top: 33px !important;
    left: 0 !important;
    right: 0 !important;
    background: transparent;
    border-bottom: 0;
    color: var(--white);
}
.home .topbar { position: relative; z-index: 70; }
.home .primary-nav a { color: var(--white); }
.home .primary-nav a:hover,
.home .primary-nav .current-menu-item > a { color: var(--white); border-bottom: 2px solid var(--red); padding-bottom: 8px; }
.home .nav-toggle span { background: var(--white); }
.home-hero {
    min-height: 720px;
    color: var(--white);
    background: radial-gradient(circle at 64% 42%, rgba(217, 0, 16, .28), transparent 25%), linear-gradient(90deg, #030405 0%, #07090c 42%, #141414 100%);
}
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.22) 48%, rgba(0,0,0,.66)), repeating-linear-gradient(112deg, rgba(255,255,255,.035) 0 1px, transparent 1px 38px);
}
.home-hero .hero__track {
    inset: 0 0 0 45%;
    height: auto;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.12) 48%, transparent 49%), linear-gradient(0deg, rgba(255,255,255,.12), transparent 26%);
    transform: skewX(-12deg);
}
.home-hero .hero__grid { min-height: 720px; padding-top: 72px; grid-template-columns: .72fr 1.28fr; }
.home-hero .hero__kicker { color: var(--white); font-size: 50px; }
.home-hero .hero h1,
.home-hero h1 { font-size: 132px; text-shadow: 0 14px 38px rgba(217,0,16,.22); }
.home-hero .hero__after { color: var(--white); font-size: 52px; }
.home-hero .hero__text { color: var(--white); font-size: 18px; }
.home-hero .hero__image img { transform: scale(1.16); transform-origin: center; filter: drop-shadow(0 34px 50px rgba(0,0,0,.55)); }
.button--dark { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.65); color: var(--white); }
.hero-dots { display: flex; gap: 34px; align-items: end; margin-top: 58px; font-weight: 900; }
.hero-dots span { position: relative; color: rgba(255,255,255,.78); }
.hero-dots .is-active { color: var(--white); font-size: 20px; }
.hero-dots .is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 34px;
    height: 3px;
    background: var(--red);
}
.home .feature-strip {
    position: relative;
    z-index: 5;
    margin-top: -42px;
    border: 0;
    background: transparent;
}
.home .feature-strip__grid {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 18px 42px rgba(0,0,0,.16);
    padding: 25px 52px;
}
.view-link { color: var(--red); display: inline-flex; align-items: center; gap: 11px; }
.view-link span {
    width: 25px;
    height: 25px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.view-link span::after {
    content: ">";
    position: absolute;
    inset: -2px 0 0;
    text-align: center;
    color: var(--red);
    font-size: 22px;
}
.home-category-card {
    min-height: 220px;
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: #070707;
    color: var(--white);
}
.home-category-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    opacity: .82;
    transform: scale(1.05);
    transition: transform .3s ease, opacity .3s ease;
}
.home-category-card:hover img { transform: scale(1.12); opacity: .98; }
.category-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.88));
}
.home-category-card strong,
.home-category-card em {
    position: absolute;
    left: 20px;
    z-index: 2;
}
.home-category-card strong { bottom: 50px; margin: 0; color: var(--white); font-size: 25px; }
.home-category-card em { bottom: 26px; font-style: normal; font: 800 12px/1 Barlow Condensed, sans-serif; text-transform: uppercase; }
.section--tight { padding-top: 24px; }
.home-product-row { grid-template-columns: repeat(5, 1fr); }
.product-card { position: relative; }
.product-card__add {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    padding: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.product-card__add:hover,
.product-card__add:focus {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}
.product-card__add.is-loading {
    opacity: .5;
    pointer-events: none;
}
.product-card__rating { margin-top: 9px; color: var(--red); font-size: 12px; letter-spacing: .04em; }
.product-card__rating span { color: var(--muted); letter-spacing: 0; margin-left: 3px; }
.promo-banner-section { padding: 0 0 28px; }
.promo-banner {
    min-height: 250px;
    border-radius: 7px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: radial-gradient(circle at 25% 44%, rgba(217,0,16,.32), transparent 22%), #030405;
    color: var(--white);
    position: relative;
}
.promo-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.08), #030405 55%);
}
.promo-banner img { width: 100%; height: 260px; object-fit: cover; position: relative; opacity: .88; }
.promo-banner div { position: relative; padding: 36px 48px; }
.promo-banner span { color: var(--red); font: 900 18px/1 Barlow Condensed, sans-serif; text-transform: uppercase; font-style: italic; }
.promo-banner h2 { margin: 5px 0 8px; font-size: 52px; line-height: .95; font-style: italic; }
.promo-banner p { margin: 0 0 20px; color: rgba(255,255,255,.84); }
.home-slider { position: relative; }
.slider-arrow {
    position: absolute;
    top: 44%;
    z-index: 4;
    border: 0;
    background: transparent;
    color: var(--red);
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
}
.slider-arrow--prev { left: -32px; }
.slider-arrow--next { right: -32px; }
.why-lewe { padding: 4px 0 28px; text-align: center; }
.why-lewe h2 { margin: 0 0 10px; font-size: 30px; }
.why-lewe__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,.07);
}
.why-lewe__grid div { display: flex; align-items: center; gap: 16px; text-align: left; padding: 25px 30px; border-right: 1px solid var(--line); }
.why-lewe__grid div:last-child { border-right: 0; }
.why-lewe__grid .icon { color: var(--red); background-color: var(--red); flex: 0 0 32px; width: 32px; height: 32px; }
.why-lewe__grid strong { display: block; font: 900 14px/1.1 Barlow Condensed, sans-serif; text-transform: uppercase; }
.why-lewe__grid small { display: block; color: var(--muted); margin-top: 3px; }
.social-newsletter { padding: 0 0 42px; }
.social-newsletter__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.insta-strip h2, .newsletter h2 { margin: 0 0 14px; font-size: 25px; }
.insta-strip > div { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.insta-strip img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; background: #111; }
.newsletter {
    background: #050708;
    color: var(--white);
    border-radius: 7px;
    padding: 30px;
}
.newsletter p { margin: 0 0 24px; color: rgba(255,255,255,.78); }
.newsletter form { display: grid; grid-template-columns: 1fr 160px; gap: 12px; }
.newsletter input { background: transparent; border-color: rgba(255,255,255,.22); color: var(--white); }
.site-footer {
    background: radial-gradient(circle at 12% 0, rgba(217,0,16,.16), transparent 20%), #030506;
    color: var(--white);
    border-top: 0;
    padding: 46px 0 0;
}
.site-footer__grid { grid-template-columns: 1.55fr repeat(4, 1fr); align-items: start; }
.site-footer p { color: rgba(255,255,255,.75); letter-spacing: 0; text-transform: none; font-family: Inter, Arial, sans-serif; font-weight: 500; max-width: 260px; }
.site-footer .developer-credit { color: var(--red); font-weight: 800; }
.footer-column h2 { margin: 0 0 18px; font-size: 16px; color: var(--white); }
.footer-column a { display: block; color: rgba(255,255,255,.72); margin: 8px 0; font-size: 13px; }
.footer-column a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.22);
    display: grid;
    place-items: center;
    font-size: 11px;
    text-transform: uppercase;
}
.footer-bottom {
    margin-top: 34px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
}

@media (max-width: 900px) {
    .site-header__inner { height: 64px; gap: 14px; }
    .brand span { font-size: 28px; }
    .nav-toggle { display: block; margin-left: auto; }
    .primary-nav { position: fixed;
        left: 0;
        right: 0;
        top: 93px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        padding: 18px 24px;
        transform: translateY(-120%);
        visibility: hidden;
        opacity: 0;
        transition: transform .3s ease, opacity .3s ease, visibility 0s linear .3s; }
    .home .primary-nav { background: #060707; }
    .primary-nav.is-open { 
        transform: translateY(0); 
        visibility: visible; 
        opacity: 1;
        transition: transform .3s ease, opacity .3s ease, visibility 0s linear 0s; 
    }
    .primary-nav.is-open ~ .header-actions .nav-toggle { visibility: hidden; }
    .primary-nav ul { display: grid; gap: 14px; }
    .header-actions { gap: 12px; }
    .hero, .hero__grid { min-height: auto; }
    .hero__grid { grid-template-columns: 1fr; padding: 42px 0 26px; }
    .home-hero .hero__grid { grid-template-columns: 1fr; min-height: auto; padding-top: 104px; }
    .hero h1 { font-size: 76px; }
    .home-hero h1 { font-size: 88px; }
    .hero__kicker, .hero__after { font-size: 34px; }
    .home-hero .hero__kicker, .home-hero .hero__after { font-size: 36px; }
    .hero__image { order: -1; }
    .home-hero .hero__image { order: 0; }
    .home .feature-strip { margin-top: 0; }
    .home .feature-strip__grid { padding: 24px; }
    .feature-strip__grid, .category-grid, .product-grid, .product-grid--three, .home-product-row, .site-footer__grid, .why-lewe__grid, .social-newsletter__grid { grid-template-columns: repeat(2, 1fr); }
    .promo-banner { grid-template-columns: 1fr; }
    .promo-banner::before { background: linear-gradient(180deg, rgba(0,0,0,.08), #030405 58%); }
    .why-lewe__grid div { border-right: 0; border-bottom: 1px solid var(--line); }
    .shop-layout, .product-detail, .contact-grid, .split { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
    .container { width: min(100% - 22px, 1180px); }
    .topbar { font-size: 10px; }
    .header-actions .icon-user { display: none; }
    .hero__grid { padding-top: 20px; }
    .home-hero .hero__grid { padding-top: 92px; }
    .hero h1 { font-size: 62px; }
    .home-hero h1 { font-size: 72px; }
    .hero__kicker, .hero__after { font-size: 28px; }
    .home-hero .hero__kicker, .home-hero .hero__after { font-size: 30px; }
    .hero-dots { margin-top: 32px; }
    .button { width: 100%; }
    .feature-strip__grid, .category-grid, .product-grid, .product-grid--three, .home-product-row, .stat-row, .product-promises, .site-footer__grid, .why-lewe__grid, .social-newsletter__grid { grid-template-columns: 1fr; }
    .home .feature-strip__grid { padding: 20px; }
    .section { padding: 38px 0; }
    .section__head, .collection-toolbar, .page-title--shop { align-items: flex-start; gap: 14px; flex-direction: column; }
    .promo-banner div { padding: 28px 22px; }
    .promo-banner h2 { font-size: 40px; }
    .newsletter form { grid-template-columns: 1fr; }
    .insta-strip > div { grid-template-columns: repeat(3, 1fr); }
    .product-gallery { grid-template-columns: 1fr; }
    .product-gallery__thumbs { grid-template-columns: repeat(4, 1fr); order: 2; }
    .footer-badges { justify-content: start; }
    .variations_form.cart, form.cart { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; align-items: stretch; }
    .quantity { flex: 0 0 auto; height: 44px; display: inline-flex; align-items: stretch; }
    .quantity input { width: 44px; }
    .single_add_to_cart_button, .woocommerce button.button { flex: 1 1 auto; width: 100%; min-width: 0; padding: 0 10px; }
}

/* Final home polish overrides */
.home .container { width: min(1320px, calc(100% - 56px)); }
.home .topbar { font-size: 13px; padding: 9px 12px; }
.home .site-header__inner { height: 82px; }
.home .brand span { font-size: 42px; letter-spacing: .01em; }
.home .primary-nav ul { gap: 30px; }
.home .primary-nav a { font-size: 13px; text-transform: uppercase; }
.home-hero { min-height: 760px; isolation: isolate; background: #030405; }
.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.66) 34%, rgba(0,0,0,.18) 62%, rgba(0,0,0,.72) 100%), var(--hero-image);
    background-size: cover;
    background-position: center right;
    transform: scale(1.02);
}
.home-hero::before {
    z-index: 1;
    background: radial-gradient(circle at 70% 30%, rgba(217,0,16,.16), transparent 24%), repeating-linear-gradient(112deg, rgba(255,255,255,.045) 0 1px, transparent 1px 42px);
}
.home-hero .hero__track { z-index: 2; opacity: .42; }
.home-hero .hero__grid { z-index: 3; min-height: 760px; grid-template-columns: 520px 1fr; padding-top: 96px; }
.home-hero .hero__copy { max-width: 520px; }
.home-hero .hero__image { display: none; }
.home-hero .hero__kicker { font-size: 56px; letter-spacing: .01em; }
.home-hero h1 { font-size: clamp(112px, 9vw, 174px); letter-spacing: 0; }
.home-hero .hero__after { font-size: 57px; }
.home-hero .hero__text { max-width: 410px; margin-top: 22px; color: rgba(255,255,255,.9); font-size: 19px; }
.home-hero .button { min-height: 50px; padding-inline: 32px; }
.home .feature-strip { margin-top: -54px; }
.home .feature-strip__grid { max-width: 1260px; padding: 26px 58px; border-radius: 8px; box-shadow: 0 22px 58px rgba(0,0,0,.2); }
.home .section { padding: 58px 0 28px; }
.home .section__head { margin-bottom: 24px; }
.home .section__head h2, .why-lewe h2 { font-size: 35px; letter-spacing: .01em; }
.home-category-card { min-height: 245px; border-radius: 7px; box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.home-category-card img { min-height: 245px; filter: saturate(1.08) contrast(1.08); }
.product-card { border-color: #dedede; border-radius: 7px; box-shadow: 0 8px 20px rgba(0,0,0,.035); }
.product-card__media { padding: 22px; background: linear-gradient(180deg, #fff, #f7f7f7); }
.product-card__body { min-height: 118px; }
.product-card__title { min-height: 42px; font-size: 14px; }
.product-card__price { font-size: 15px; }
.promo-banner { min-height: 300px; border-radius: 9px; }
.promo-banner img { height: 300px; }
.promo-banner h2 { font-size: 62px; }
.why-lewe { padding-top: 34px; }
.social-newsletter { padding-top: 14px; }
.newsletter { border-radius: 8px; box-shadow: 0 18px 42px rgba(0,0,0,.12); }
.site-footer { margin-top: 42px; }

@media (max-width: 900px) {
    .home .container { width: min(100% - 28px, 1320px); }
    .home-hero, .home-hero .hero__grid { min-height: 680px; }
    .home-hero .hero__grid { grid-template-columns: 1fr; padding-top: 116px; }
    .home-hero h1 { font-size: 92px; }
    .home-hero .hero__kicker, .home-hero .hero__after { font-size: 38px; }
}

@media (max-width: 560px) {
    .home .container { width: min(100% - 22px, 1320px); }
    .home .brand span { font-size: 30px; }
    .home-hero, .home-hero .hero__grid { min-height: 620px; }
    .home-hero::after { background-position: 62% center; }
    .home-hero h1 { font-size: 74px; }
    .home-hero .hero__kicker, .home-hero .hero__after { font-size: 30px; }
    .home .feature-strip { margin-top: 0px; }
    .home .feature-strip__grid { padding: 20px; }
}

/* Font and carousel refinement */
body,
button,
input,
textarea,
select {
    font-family: Sora, Inter, Arial, sans-serif;
}

.brand span,
.hero__kicker,
.hero__after,
h1,
h2,
h3,
.button,
.feature-strip strong,
.section__head a,
.category-card strong,
.category-card span,
.filter-button,
.single_add_to_cart_button,
.woocommerce button.button,
.woocommerce-tabs ul.tabs a,
.site-footer p,
.home-category-card em,
.promo-banner span,
.why-lewe__grid strong,
.footer-column h2 {
    font-family: Oswald, Barlow Condensed, Arial, sans-serif;
}

.home-slider {
    overflow: visible;
    padding-inline: 4px;
}

.home-carousel {
    display: flex;
    grid-template-columns: none;
    gap: 34px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 0 18px;
}

.home-carousel::-webkit-scrollbar {
    display: none;
}

.home-carousel .product-card {
    flex: 0 0 calc((100% - 136px) / 5);
    scroll-snap-align: start;
}

.home-slider .slider-arrow {
    opacity: 0;
    pointer-events: none;
    top: 42%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(217,0,16,.24);
    background: rgba(255,255,255,.92);
    color: var(--red);
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
    transition: opacity .22s ease, transform .22s ease, background .22s ease;
}

.home-slider:hover .slider-arrow,
.home-slider:focus-within .slider-arrow {
    opacity: 1;
    pointer-events: auto;
}

.home-slider .slider-arrow:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.home-slider .slider-arrow--prev {
    left: -22px;
}

.home-slider .slider-arrow--next {
    right: -22px;
}

.home-slider .slider-arrow {
    transform: translateY(-50%);
}

.home-slider .slider-arrow:hover {
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 1024px) {
    .home-slider .slider-arrow {
        opacity: 1 !important;
        pointer-events: auto !important;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .home-slider .slider-arrow--prev {
        left: 4px;
    }
    .home-slider .slider-arrow--next {
        right: 4px;
    }
}

@media (max-width: 1100px) {
    .home-carousel .product-card {
        flex-basis: calc((100% - 68px) / 3);
    }
}

@media (max-width: 700px) {
    .home-carousel {
        gap: 18px;
    }

    .home-carousel .product-card {
        flex-basis: 78%;
    }

    .home-slider .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
        opacity: 1;
        pointer-events: auto;
    }
    .home-slider .slider-arrow--prev { left: 4px; }
    .home-slider .slider-arrow--next { right: 4px; }
}

/* ============================================
   HERO SLIDER
   ============================================ */

/* Disable old static hero pseudo-elements when slider is active */
.home-hero.hero-slider::after,
.home-hero.hero-slider::before {
    display: none;
}

/* Slider container */
.hero-slider {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: #030405;
}

/* Individual slides - all stacked absolutely */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.75s ease;
    background: radial-gradient(circle at 64% 42%, var(--slide-accent, rgba(217,0,16,.28)), transparent 26%), #030405;
}

/* Each slide's background image + gradient overlay */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.66) 34%, rgba(0,0,0,.18) 62%, rgba(0,0,0,.72) 100%),
        var(--slide-image);
    background-size: cover;
    background-position: center right;
    transition: transform 6s ease;
    transform: scale(1.04);
}

/* Active slide is visible and image slowly zooms out */
.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-slide.is-active::after {
    transform: scale(1);
}

/* Diagonal accent line */
.hero-slider .hero__track {
    z-index: 3;
    position: absolute;
    inset: 0 0 0 45%;
    height: auto;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255,255,255,.10) 48%, transparent 49%),
        linear-gradient(0deg, rgba(255,255,255,.10), transparent 26%);
    transform: skewX(-12deg);
    opacity: 0.38;
    pointer-events: none;
}

/* Grid layout inside each slide */
.hero-slide .hero__grid {
    position: relative;
    z-index: 4;
    min-height: 760px;
    padding-top: 96px;
    grid-template-columns: 520px 1fr;
    align-items: center;
}

/* Copy column */
.hero-slide .hero__copy {
    max-width: 520px;
    color: var(--white);
}

.hero-slide .hero__kicker { color: var(--white); font-size: 56px; letter-spacing: .01em; }
.hero-slide h1 {
    font-size: clamp(112px, 9vw, 174px);
    letter-spacing: 0;
    text-shadow: 0 14px 38px rgba(217, 0, 16, .22);
}
.hero-slide .hero__after { color: var(--white); font-size: 57px; }
.hero-slide .hero__text {
    color: rgba(255,255,255,.9);
    font-size: 19px;
    max-width: 410px;
    margin-top: 22px;
}
.hero-slide .hero__actions { margin-top: 32px; }
.hero-slide .button { min-height: 50px; padding-inline: 32px; }

/* Staggered content animation on active slide */
.hero-slide .hero__copy > * {
    opacity: 0;
    transform: translateY(26px);
    transition: none;
}

.hero-slide.is-active .hero__copy > * {
    animation: heroItemIn 0.6s ease both;
}

.hero-slide.is-active .hero__kicker  { animation-delay: 0.05s; }
.hero-slide.is-active h1             { animation-delay: 0.15s; }
.hero-slide.is-active .hero__after   { animation-delay: 0.23s; }
.hero-slide.is-active .hero__text    { animation-delay: 0.31s; }
.hero-slide.is-active .hero__actions { animation-delay: 0.40s; }

@keyframes heroItemIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Dot navigation */
.hero-slider-dots {
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 36px;
    align-items: flex-end;
}

.hero-slider-dots span {
    position: relative;
    color: rgba(255,255,255,.45);
    cursor: pointer;
    user-select: none;
    transition: color .25s ease, font-size .25s ease;
    font: 900 13px/1 Oswald, Barlow Condensed, sans-serif;
    letter-spacing: .08em;
}

.hero-slider-dots span:hover { color: rgba(255,255,255,.82); }

.hero-slider-dots .is-active {
    color: var(--white);
    font-size: 20px;
}

.hero-slider-dots .is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 34px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}

/* Prev / Next arrow buttons */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

.hero-nav:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav--prev { left: 28px; }
.hero-nav--next { right: 28px; }

/* Progress bar at bottom */
.hero-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--red);
    z-index: 10;
    width: 0%;
    border-radius: 0 2px 2px 0;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-slider { min-height: 680px; }
    .hero-slide .hero__grid {
        min-height: 680px;
        grid-template-columns: 1fr;
        padding-top: 120px;
    }
    .hero-slide h1 { font-size: 92px; }
    .hero-slide .hero__kicker,
    .hero-slide .hero__after { font-size: 38px; }
    .hero-nav { display: none; }
    .hero-slider-dots { bottom: 28px; }
}

@media (max-width: 560px) {
    .hero-slider { min-height: 620px; }
    .hero-slide .hero__grid { min-height: 620px; padding-top: 96px; }
    .hero-slide h1 { font-size: 74px; }
    .hero-slide .hero__kicker,
    .hero-slide .hero__after { font-size: 30px; }
    .hero-slide .hero__text { font-size: 16px; }
    .hero-slider-dots { bottom: 22px; gap: 24px; }
}
.feature-strip {
    margin-top: -55px;
    position: relative;
    z-index: 10;
}

.feature-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 15px;
}

.feature-item:not(:last-child) {
    border-right: 1px solid #ececec;
}

.feature-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

.feature-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

@media (max-width:991px){

    .feature-strip__grid{
        grid-template-columns:repeat(2,1fr);
    }

    .feature-item:nth-child(2){
        border-right:none;
    }

    .feature-item{
        border-bottom:1px solid #ececec;
    }

    .feature-item:nth-child(3),
    .feature-item:nth-child(4){
        border-bottom:none;
    }

}

@media (max-width:767px){

    .feature-strip__grid{
        grid-template-columns:1fr;
    }

    .feature-item{
        border-right:none !important;
        border-bottom:1px solid #ececec;
    }

    .feature-item:last-child{
        border-bottom:none;
    }

}

/* ============== SIDECART ============== */
.sidecart-overlay {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index:9998;
    opacity:0;
    pointer-events:none;
    transition:opacity .35s ease;
}
.sidecart-overlay.is-open {
    opacity:1;
    pointer-events:auto;
}

.sidecart {
    position:fixed;
    top:0; right:0; bottom:0;
    width:480px;
    max-width:100vw;
    background:#fff;
    z-index:9999;
    transform:translateX(100%);
    transition:transform .4s cubic-bezier(.25,1,.35,1);
    display:flex;
    flex-direction:column;
    box-shadow:-10px 0 40px rgba(0,0,0,.15);
    font-family: 'Sora', 'Inter', sans-serif;
}
.sidecart.is-open {
    transform:translateX(0);
}

.sidecart-header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:24px 32px;
    border-bottom:1px solid #f0f0f0;
    flex-shrink:0;
    background: #fafafa;
}
.sidecart-header h3 {
    margin:0;
    font-size:22px;
    font-weight:700;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color:#111;
}
.sidecart-close {
    background:none;
    border:none;
    font-size:32px;
    line-height:1;
    cursor:pointer;
    color:#888;
    padding:4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s, transform .2s;
}
.sidecart-close:hover {
    color:#d90010;
    transform: rotate(90deg);
}

.sidecart-body {
    flex:1;
    overflow-y:auto;
    padding:24px 32px;
    display: flex;
    flex-direction: column;
}
.sidecart-body .widget_shopping_cart_content {
    display:flex;
    flex-direction:column;
    height:100%;
}
/* ---- sidecart item layout ---- */
.sidecart-body .woocommerce-mini-cart {
    list-style:none;
    margin:0;
    padding:0;
    flex: 1;
}
.sidecart-body .woocommerce-mini-cart li {
    display:grid;
    grid-template-columns:85px 1fr;
    grid-template-rows:auto auto;
    gap:0 18px;
    padding:20px 0;
    border-bottom:1px solid #f2f2f2;
    align-items:start;
    position:relative;
}
.sidecart-body .woocommerce-mini-cart li:first-child {
    padding-top:0;
}
.sidecart-body .woocommerce-mini-cart li:last-child {
    border-bottom: none;
}
.sidecart-body .woocommerce-mini-cart li .sc-thumb {
    width:85px;
    height:85px;
    object-fit:contain;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius:8px;
    grid-column:1;
    grid-row:1/3;
    align-self:start;
    padding: 4px;
}
.sidecart-body .woocommerce-mini-cart li .sc-info {
    grid-column:2;
    grid-row:1/3;
    display:flex;
    flex-direction:column;
    gap:4px;
    min-width:0;
    padding-right: 30px;
}
.sidecart-body .woocommerce-mini-cart li a:not(.remove) {
    text-decoration:none;
    color:#111;
    font-weight:600;
    font-size:15px;
    line-height:1.4;
    min-width:0;
    transition: color .2s;
}
.sidecart-body .woocommerce-mini-cart li a:not(.remove):hover {
    color: #d90010;
}
.sidecart-body .woocommerce-mini-cart li .variation {
    font-size:12px;
    color:#777;
    margin:4px 0 0;
    padding:0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sidecart-body .woocommerce-mini-cart li .variation dt {
    display:none;
}
.sidecart-body .woocommerce-mini-cart li .variation dd {
    display:inline-flex;
    align-items: center;
    margin:0;
    background: #f4f4f4;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}
.sidecart-body .woocommerce-mini-cart li .remove {
    position:absolute;
    top:18px;
    right:0;
    color:#aaa;
    font-size:18px;
    text-decoration:none;
    line-height:1;
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:all .2s ease;
    background: #f9f9f9;
}
.sidecart-body .woocommerce-mini-cart li .remove:hover {
    color:#fff;
    background:#d90010;
    transform: scale(1.1);
}
.sidecart-body .woocommerce-mini-cart li .quantity {
    margin-top:10px;
}

/* ---- +/- quantity buttons ---- */
.sc-qty {
    display:inline-flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:6px;
    overflow:hidden;
    height:36px;
    background:#fff;
}
.sc-qty button {
    width:36px;
    height:36px;
    border:none;
    background:transparent;
    font-size:18px;
    font-weight:600;
    color:#444;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .2s, color .2s;
    -webkit-user-select:none;
    user-select:none;
    line-height:1;
}
.sc-qty button:hover {
    background:#f0f0f0;
    color: #111;
}
.sc-qty button:active {
    background:#e4e4e4;
}
.sc-qty .sc-qty-val {
    width:40px;
    text-align:center;
    font-size:14px;
    font-weight:600;
    color:#111;
    border-left:1px solid #ddd;
    border-right:1px solid #ddd;
    line-height:36px;
    pointer-events:none;
}
.sc-qty-price {
    display:inline-block;
    font-size:14px;
    font-weight:700;
    color:#111;
    margin-left:14px;
}

.sidecart-body .total {
    text-align:center;
    padding:20px 0 16px;
    font-size:18px;
    font-weight:700;
    color:#111;
    border-top:2px solid #f0f0f0;
    margin-top:auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidecart-body .total strong {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 20px;
}
.sidecart-body .total .amount {
    color:#d90010;
    font-size: 24px;
    font-family: 'Oswald', sans-serif;
}
.sidecart-body .buttons {
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:16px;
}
.sidecart-body .buttons a {
    display:flex;
    align-items: center;
    justify-content: center;
    padding:16px;
    border-radius:6px;
    font-weight:700;
    font-size:15px;
    text-decoration:none;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.08em;
    transition:all .2s ease;
}
.sidecart-body .buttons .button.wc-forward {
    background:#d90010;
    color:#fff;
    box-shadow: 0 4px 14px rgba(217,0,16,.25);
}
.sidecart-body .buttons .button.wc-forward:hover {
    background:#a6000c;
    box-shadow: 0 6px 20px rgba(217,0,16,.35);
    transform: translateY(-2px);
}
.sidecart-body .buttons .button:not(.wc-forward) {
    background:#f0f0f0;
    color:#111;
    border: 1px solid #e0e0e0;
}
.sidecart-body .buttons .button:not(.wc-forward):hover {
    background:#e4e4e4;
    transform: translateY(-2px);
}

.sidecart-loading,
.sidecart-error {
    text-align:center;
    padding:60px 0;
    color:#777;
    font-size:15px;
    font-weight: 500;
}

/* responsive */
@media (max-width:520px){
    .sidecart {
        width:100vw;
    }
    .sidecart-header,
    .sidecart-body {
        padding: 20px;
    }
}

/* Hide the default WooCommerce cart-count style injected via JS — our header already shows it */
.cart-count {
    display:inline;
}
/* Base nav layout */
.primary-nav .menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav .menu > li {
    position: relative; /* anchor for dropdown */
}

.primary-nav .menu > li > a {
    display: block;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Dropdown menu — hidden by default */
.primary-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #111;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 100;
    flex-direction: column; /* stack vertically, not inline */
}

.primary-nav .sub-menu li {
    width: 100%;
}

.primary-nav .sub-menu a {
    display: block;
    padding: 10px 18px;
    color: #fff;
    font-size: 13px;
    text-transform: none;
    font-weight: 500;
    white-space: nowrap;
}

.primary-nav .sub-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: #e30613; /* your brand red */
}

/* Show dropdown on hover / focus */
.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
    display: flex;
}

/* Optional: small arrow indicator on parent items with children */
.primary-nav .menu-item-has-children > a::after {
    content: "▾";
    margin-left: 6px;
    font-size: 10px;
    display: inline-block;
}
/* Default: black nav text for all inner pages (Shop, About, Contact, etc.) */
.primary-nav .menu > li > a {
    color: #000;
}

.primary-nav .menu-item-has-children > a::after {
    color: #000; /* the ▾ arrow */
}

.header-search-btn,
.header-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-cart-btn .cart-count {
    position: absolute;
    top: -6px;
    right: -9px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-count {
    color: #fff; /* keep badge text white so it's visible on the red circle */
}

/* Homepage only: revert nav text back to white (for the transparent hero header) */
.home .primary-nav .menu > li > a {
    color: #fff;
}

.home .primary-nav .menu-item-has-children > a::after {
    color: #fff;
}

.home .header-search-btn,
.home .header-cart-btn {
    color: #fff;
}
.footer-payments {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-payments img {
    height: 28px;
    width: auto;
    max-width: 48px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    display: block;
}

/* Layout: bottom bar with copyright on one side, payment icons on the other */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom span {
    font-size: 13px;
    opacity: 0.8;
}

/* Mobile: stack copyright above payment icons, centered */
@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-payments {
        justify-content: center;
    }
}

/* ============ MOBILE NAV-TOGGLE VISIBILITY FIX ============
   Your theme already has a complete, working mobile nav system
   (see the ".nav-toggle" base rule above and the ".primary-nav.is-open"
   logic inside the existing "@media (max-width: 900px)" block).
   This just guarantees the hamburger icon itself always renders
   correctly at that same breakpoint — it does NOT redefine the
   panel, positioning, or open/close behavior, so it won't conflict
   with the rules that already work. */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 26px;
        height: 22px;
        min-width: 26px;
        flex: 0 0 26px;   /* locks size so flexbox can't shrink it */
        padding: 0;
        z-index: 60;
    }

    .nav-toggle span {
        display: block;
        width: 26px;      /* fixed px instead of 100% of a collapsing parent */
        height: 2px;
        margin: 0;
        flex-shrink: 0;
        background: var(--ink);
        border-radius: 2px;
    }

    .home .nav-toggle span {
        background: var(--white);
    }
}

/* Header layout: keep uploaded logo dimensions from affecting page geometry. */
.brand {
    display: inline-flex;
    align-items: center;
    width: 132px;
    height: 42px;
    flex: 0 0 132px;
}

.brand__logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 900px) {
    .site-header__inner,
    .home .site-header__inner {
        height: 64px;
        gap: 12px;
    }

    .brand {
        width: 102px;
        height: 36px;
        flex-basis: 102px;
    }

}

@media (max-width: 560px) {
    .site-header__inner,
    .home .site-header__inner {
        gap: 10px;
    }

    .brand {
        width: 84px;
        height: 32px;
        flex-basis: 84px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-search-btn svg,
    .header-cart-btn svg {
        width: 20px;
        height: 20px;
    }
}



body.search-modal-open { overflow: hidden; }

.search-modal {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: grid;
    place-items: start center;
    padding: 12vh 24px 24px;
}
.search-modal[hidden] { display: none; }
.search-modal__backdrop { position: absolute; inset: 0; background: rgba(3, 5, 6, .82); backdrop-filter: blur(8px); }
.search-modal__panel {
    position: relative;
    width: min(760px, 100%);
    padding: 48px;
    color: var(--white);
    background: #101415;
    border-top: 4px solid var(--red);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .42);
}
.search-modal__close { position: absolute; top: 12px; right: 18px; border: 0; background: transparent; color: var(--white); font-size: 38px; line-height: 1; cursor: pointer; }
.search-modal__eyebrow { margin: 0 0 10px; color: var(--red); font: 700 13px/1.2 Oswald, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.search-modal h2 { margin: 0 0 24px; font-size: clamp(30px, 5vw, 48px); color: var(--white); }
.search-modal__form { display: flex; gap: 10px; }
.search-modal__form input { min-width: 0; flex: 1; height: 56px; border: 1px solid rgba(255,255,255,.35); background: #fff; padding: 0 18px; color: var(--ink); font: 600 16px Sora, sans-serif; }
.search-modal__form button { height: 56px; border: 0; padding: 0 28px; background: var(--red); color: var(--white); font: 700 14px Oswald, sans-serif; text-transform: uppercase; cursor: pointer; }
.search-modal__hint { margin: 14px 0 0; color: rgba(255,255,255,.65); font-size: 13px; }

.search-results { padding: 74px 0 90px; background: #f7f7f7; min-height: 60vh; }
.search-results__eyebrow { margin: 0 0 8px; color: var(--red); font: 700 13px/1.2 Oswald, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.search-results__heading { margin: 8px 0 30px; font-size: clamp(34px, 5vw, 58px); }
.search-results__query { color: var(--red); }
.search-results__count { margin: 0 0 30px; color: #676b6c; font-weight: 600; }
.search-results__empty { max-width: 640px; padding: 44px; background: var(--white); border-left: 4px solid var(--red); }
.search-results__empty h2 { margin-top: 0; }
@media (max-width: 560px) {
    .search-modal { padding: 72px 16px 16px; }
    .search-modal__panel { padding: 42px 22px 28px; }
    .search-modal__form { flex-direction: column; }
    .search-modal__form button { width: 100%; }
    .search-results { padding: 46px 0 60px; }
}

@media (max-width: 560px) {
    .brand {
        width: 72px !important;
        height: 28px !important;
        flex-basis: 72px !important;
        overflow: hidden;
    }

    .brand__logo {
        width: 72px !important;
        height: 28px !important;
    }
}

/* Final mobile header and drawer rules: one predictable menu state. */
.header-search-btn { border: 0; padding: 0; background: transparent; color: inherit; cursor: pointer; }

/* ===============================
   NEW MOBILE HEADER
================================*/

@media (max-width:900px){

body.menu-open{
overflow:hidden;
}

.home .site-header{

position:absolute !important;
top:35px !important;
left:0 !important;
right:0 !important;

background:transparent;

border:none;

backdrop-filter:none;

box-shadow:none;

z-index:9999;

}

body:not(.home) .site-header{

background:#fff;

position:sticky;

top:0;

backdrop-filter:none !important;

}

.site-header__inner{

height:72px;

display:flex;

align-items:center;

}

.brand{

width:120px;

height:40px;

}

.header-actions{

margin-left:auto;

display:flex;

align-items:center;

gap:12px;

}

.nav-toggle{

display:flex;

width:38px;

height:38px;

align-items:center;

justify-content:center;

flex-direction:column;

gap:5px;

background:none;

border:none;

cursor:pointer;

margin-left:5px;

z-index:10001;

}

.nav-toggle__bar{

width:22px;

border-radius:2px;

height:2px;

transition:.3s;

background:#000;

}

.home .nav-toggle__bar{

background:#fff;

}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2){

transform:rotate(45deg) translateY(10px);

}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3){

opacity:0;

}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(4){

transform:rotate(-45deg) translateY(-10px);

}

.primary-nav{

display:block;
position:fixed;
top:0;
right:0;
width:320px;
max-width:85vw;
height:100vh;
background:linear-gradient(180deg,#0a0a0a 0%,#111 100%);
padding:0 30px 40px;
z-index:9998;
overflow-y:auto;
transform:translateX(100%);
transition:transform 0.35s cubic-bezier(.4,0,.2,1);

}

/* ── Close button inside sidebar ── */
.sidebar-close{
position:absolute;
top:12px;
right:12px;
width:36px;
height:36px;
display:flex;
align-items:center;
justify-content:center;
border:none;
background:rgba(255,255,255,0.08);
color:#fff;
font-size:28px;
line-height:1;
border-radius:50%;
cursor:pointer;
z-index:10;
transition:background 0.2s, transform 0.2s;
}

.sidebar-close:hover{
background:rgba(217,0,16,0.6);
transform:rotate(90deg);
}

.sidebar-brand{
display:flex;
align-items:center;
justify-content:space-between;
padding:36px 0 28px;
border-bottom:1px solid rgba(255,255,255,0.1);
margin-bottom:8px;
}

.sidebar-brand__logo{
height:28px !important;
width:auto !important;
max-height:28px !important;
object-fit:contain;
}

.sidebar-brand__right{
display:flex;
flex-direction:column;
align-items:flex-end;
text-align:right;
}

.sidebar-brand__tagline{
font-family:'Oswald',sans-serif;
font-size:11px;
font-weight:500;
letter-spacing:.14em;
text-transform:uppercase;
color:rgba(255,255,255,0.35);
line-height:1.3;
}

.primary-nav.is-open{
transform:translateX(0);
}

.primary-nav[hidden]{
display:none;
}

.primary-nav ul{

display:flex;
flex-direction:column;
gap:0;

}

.primary-nav .menu > li{
border-bottom:1px solid rgba(255,255,255,0.06);
}

.primary-nav .menu > li:last-child{
border-bottom:none;
}

.primary-nav a{

color:rgba(255,255,255,0.85)!important;
font-family:'Oswald',sans-serif;
font-size:18px;
font-weight:500;
letter-spacing:.04em;
text-transform:uppercase;
padding:15px 0;
display:block;
position:relative;
transition:color .25s ease, padding-left .25s ease;

}

.primary-nav a:hover{
color:#fff!important;
padding-left:8px;
}

.primary-nav .menu > li > a::after{
content:'';
position:absolute;
right:0;
top:50%;
transform:translateY(-50%);
width:0;
height:2px;
background:#d90010;
transition:width .25s ease;
}

.primary-nav .menu > li > a:hover::after{
width:20px;
}

.primary-nav .menu-item-has-children > a{
padding-right:28px;
}

.primary-nav .menu-item-has-children > a::before{
content:'\25BE';
position:absolute;
right:0;
top:50%;
transform:translateY(-50%);
font-size:14px;
line-height:1;
color:rgba(255,255,255,0.4);
transition:transform .3s ease, color .3s ease;
pointer-events:none;
}

.primary-nav .menu-item-has-children.is-open > a::before{
transform:translateY(-50%) rotate(180deg);
color:#d90010;
}

.primary-nav .menu-item-has-children > a:hover::after{
width:0;
}

.primary-nav .sub-menu{

position:relative;
background:none;
box-shadow:none;
padding-left:16px;
margin-top:0;
padding-bottom:0;
padding-top:0;
border-left:2px solid rgba(217,0,16,0.3);
max-height:0;
overflow:hidden;
opacity:0;
transition:max-height .35s cubic-bezier(.4,0,.2,1), opacity .25s ease, padding .3s ease;

}

.primary-nav .sub-menu.is-expanded{
max-height:300px;
opacity:1;
padding-bottom:8px;
}

.primary-nav .sub-menu a{

font-family:'Oswald',sans-serif;
font-size:15px;
font-weight:400;
letter-spacing:.03em;
padding:9px 0;
color:rgba(255,255,255,0.5)!important;
transition:color .25s ease, padding-left .25s ease;

}

.primary-nav .sub-menu a:hover{
color:rgba(255,255,255,0.9)!important;
padding-left:6px;
}

/* ── Sidebar backdrop (inside header's stacking context) ── */
body.menu-open .site-header::before{
    content:'';
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    z-index:9997;
    opacity:1;
    pointer-events:auto;
}

}

/* ── Desktop: hide sidebar-only elements ── */
@media (min-width:901px){
.sidebar-close,
.sidebar-brand{
display:none !important;
}
}

/* ============== CHECKOUT FORM SPACING ============== */
.woocommerce form.checkout .form-row,
.woocommerce-page form.checkout .form-row {
    margin: 0 0 16px;
    padding: 0;
}
.woocommerce form.checkout .form-row label,
.woocommerce-page form.checkout .form-row label {
    display: block;
    margin-bottom: 6px;
}

/* ============== CHECKOUT COD NOTICE CARD ============== */
.checkout-cod-card {
    margin-top: 16px;
    padding: 16px 18px;
    background: #fffaf0;
    border: 1px solid #f2e2bd;
    border-left: 4px solid var(--red);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #5c4a1f;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.checkout-cod-card:hover {
    transform: translateY(-3px);
    background: #fff6e0;
    border-color: var(--red);
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.checkout-cod-card__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: var(--red);
}
.checkout-cod-card__head strong {
    font-weight: 700;
}
.checkout-cod-card__icon {
    font-size: 16px;
}
.checkout-cod-card__text {
    margin: 0 0 12px;
}
.checkout-cod-card__accounts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.checkout-cod-card__account {
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #f0e3c0;
    border-radius: 6px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.checkout-cod-card:hover .checkout-cod-card__account {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.checkout-cod-card__account strong {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--red);
}
.checkout-cod-card__account ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.checkout-cod-card__account li {
    font-size: 13px;
    color: #5c4a1f;
    margin: 2px 0;
}
@media (max-width: 600px) {
    .checkout-cod-card__accounts {
        grid-template-columns: 1fr;
    }
}

/* ───────────── Quick View modal ───────────── */
.qv-overlay {
    position: fixed; inset: 0; z-index: 9900;
    background: rgba(8, 8, 8, .6);
    opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.qv-overlay.is-open { opacity: 1; visibility: visible; }
.qv-modal {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%);
    z-index: 9901; width: min(880px, 92vw); max-height: 90vh; overflow: auto;
    background: #fff; border-radius: 6px; box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
    opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.qv-modal.is-open { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }
.qv-close {
    position: absolute; top: 10px; right: 14px; z-index: 5;
    border: 0; background: none; font-size: 34px; line-height: 1; color: var(--ink);
    cursor: pointer; padding: 0 6px;
}
.qv-close:hover { color: var(--red); }
.qv-content { padding: 28px; }
.qv-loading, .qv-error { text-align: center; padding: 40px 0; color: var(--muted); }
.qv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.qv-media { background: #f8f8f8; border-radius: 4px; overflow: hidden; }
.qv-media img { width: 100%; aspect-ratio: 1; object-fit: contain; display: block; }
.qv-title { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.qv-title a { color: var(--ink); text-decoration: none; }
.qv-title a:hover { color: var(--red); }
.qv-price { font-size: 20px; font-weight: 800; color: var(--red); margin-bottom: 10px; }
.qv-price del { color: var(--muted); font-weight: 400; font-size: 15px; margin-right: 6px; }
.qv-attr { margin-bottom: 14px; }
.qv-attr__label {
    display: block; margin-bottom: 6px;
    font: 700 11px/1 Barlow Condensed, sans-serif; text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
}
.qv-attr__options { display: flex; flex-wrap: wrap; gap: 8px; }
.qv-opt {
    min-width: 44px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 3px;
    background: #fff; font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.qv-opt:hover { border-color: var(--ink); }
.qv-opt.is-active { border-color: var(--red); background: var(--red); color: #fff; }
.qv-action-row { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.qv-qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 3px; }
.qv-qty button {
    width: 38px; height: 44px; border: 0; background: none; font-size: 18px; color: var(--ink);
    cursor: pointer; transition: color .15s ease, background .15s ease;
}
.qv-qty button:hover { color: var(--red); background: #f8f8f8; }
.qv-qty-val { min-width: 40px; text-align: center; font-weight: 700; }
.qv-add {
    flex: 1; height: 46px; border: 0; border-radius: 3px;
    background: var(--red); color: #fff; font: 700 14px/1 Barlow Condensed, sans-serif;
    text-transform: uppercase; letter-spacing: .08em; cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}
.qv-add:hover { background: #b5000d; transform: translateY(-1px); }
.qv-add:disabled { opacity: .6; cursor: wait; }
.qv-full {
    display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 700;
    color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink);
}
.qv-full:hover { color: var(--red); border-color: var(--red); }
@media (max-width: 640px) {
    .qv-grid { grid-template-columns: 1fr; gap: 16px; }
    .qv-content { padding: 20px; }
    .qv-modal { max-height: 92vh; }
}