: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;
}

@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: -22px;
    }
    .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__media { position: relative; display: block; background: #f8f8f8; padding: 18px; }
.product-card__media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.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; }
.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); }

.home .site-header {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    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__heart {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 25px;
    height: 25px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--ink);
    font-size: 17px;
}
.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%); transition: transform .25s ease; }
    .home .primary-nav { background: #060707; top: 91px; }
    .primary-nav.is-open { transform: translateY(0); }
    .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); }
    .slider-arrow { display: none; }
    .product-gallery { grid-template-columns: 1fr; }
    .product-gallery__thumbs { grid-template-columns: repeat(4, 1fr); order: 2; }
    .footer-badges { justify-content: start; }
}

/* 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: -22px; }
    .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: 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 {
        display: none;
    }
}

/* ============================================
   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; }
}
