        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --yellow: #ffc400;
            --yellow-dark: #e5aa00;
            --black: #0c0c0c;
            --dark: #151515;
            --gray: #f3f3f1;
            --border: #dededb;
            --text: #111;
            --muted: #666;
            --white: #fff;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", Arial, sans-serif;
            color: var(--text);
            background: #fff;
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input {
            font-family: inherit;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            width: min(1400px, calc(100% - 70px));
            margin: auto;
        }

        /* =========================
           TOP BAR
        ========================= */

        .topbar {
            background: var(--black);
            color: #fff;
            height: 34px;
            display: flex;
            align-items: center;
            font-size: 12px;
        }

        .topbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-left,
        .top-right {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .topbar span {
            opacity: .9;
        }

        .topbar strong {
            color: var(--yellow);
        }

        /* =========================
           HEADER
        ========================= */

        header {
            background: #fff;
            border-bottom: 1px solid var(--border);
        }

        .main-header {
            height: 96px;
            display: flex;
            align-items: center;
            gap: 45px;
        }

        .logo {
            min-width: 190px;
        }

        .logo-name {
            font-size: 27px;
            font-weight: 800;
            letter-spacing: -1.5px;
        }

        .logo-name span {
            color: var(--yellow-dark);
        }

        .logo-sub {
            font-size: 8px;
            letter-spacing: 2px;
            text-align: center;
            margin-top: 1px;
        }

        .search {
            flex: 1;
            display: flex;
            height: 48px;
            max-width: 680px;
        }

        .search input {
            flex: 1;
            border: 1px solid #ccc;
            border-right: 0;
            padding: 0 18px;
            outline: none;
            font-size: 14px;
        }

        .search button {
            width: 55px;
            border: none;
            background: var(--black);
            color: white;
            font-size: 20px;
            cursor: pointer;
        }

        .header-actions {
            margin-left: auto;
            display: flex;
            gap: 28px;
        }

        .header-action {
            text-align: center;
            cursor: pointer;
            font-size: 12px;
            position: relative;
        }

        .header-action .icon {
            display: block;
            font-size: 24px;
            margin-bottom: 4px;
        }

        .cart-count {
            position: absolute;
            top: -4px;
            right: -9px;
            width: 17px;
            height: 17px;
            background: var(--yellow);
            border-radius: 50%;
            font-size: 10px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* =========================
           NAV
        ========================= */

        .navigation {
            border-top: 1px solid #eee;
            height: 54px;
            display: flex;
            align-items: center;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .category-button {
            height: 42px;
            background: var(--black);
            color: #fff;
            padding: 0 28px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 13px;
            margin-right: 35px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex: 1;
            font-size: 13px;
            font-weight: 600;
        }

        .nav-links a {
            padding: 19px 10px;
            transition: .2s;
        }

        .nav-links a:hover {
            color: var(--yellow-dark);
        }

        .sale-link {
            background: var(--yellow);
            padding: 11px 18px !important;
        }

        /* =========================
           HERO
        ========================= */

        .hero {
            min-height: 540px;
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(90deg,
                    rgba(245,243,237,1) 0%,
                    rgba(245,243,237,.98) 36%,
                    rgba(245,243,237,.25) 68%,
                    rgba(0,0,0,.15) 100%
                ),
                url("https://images.unsplash.com/photo-1525201548942-d8732f6617a0?auto=format&fit=crop&w=2200&q=90")
                center/cover;
        }

        .hero-content {
            min-height: 540px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: "Barlow Condensed", sans-serif;
            text-transform: uppercase;
            font-size: clamp(55px, 5vw, 90px);
            line-height: .88;
            font-weight: 800;
            max-width: 650px;
            letter-spacing: -2px;
        }

        .hero h1 span {
            display: block;
        }

        .hero-description {
            margin-top: 25px;
            font-size: 18px;
            line-height: 1.5;
            max-width: 420px;
        }

        .primary-button {
            margin-top: 28px;
            width: max-content;
            border: none;
            background: var(--yellow);
            color: #111;
            padding: 16px 25px;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            transition: .2s;
        }

        .primary-button:hover {
            background: #111;
            color: #fff;
            transform: translateY(-2px);
        }

        .hero-benefits {
            display: flex;
            gap: 35px;
            margin-top: 38px;
            font-size: 12px;
            font-weight: 600;
        }

        .hero-benefit {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-benefit-icon {
            font-size: 22px;
        }

        .slider-dots {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .slider-dots span {
            width: 35px;
            height: 4px;
            background: #fff;
            display: block;
        }

        .slider-dots span:first-child {
            background: var(--yellow);
        }

        /* =========================
           CATEGORY
        ========================= */

        .section {
            padding: 55px 0;
        }

        .section-title {
            font-family: "Barlow Condensed", sans-serif;
            font-size: 34px;
            text-transform: uppercase;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
        }

        .section-title::before {
            content: "";
            width: 12px;
            height: 3px;
            background: var(--yellow);
        }

        .categories {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 12px;
        }

        .category-card {
            height: 225px;
            position: relative;
            overflow: hidden;
            padding: 18px;
            transition: .25s;
        }

        .category-card:hover {
            transform: translateY(-5px);
        }

        .category-card img {
            width: 100%;
            height: 145px;
            object-fit: contain;
            position: absolute;
            right: 0;
            bottom: 0;
        }

        .category-card h3 {
            font-family: "Barlow Condensed", sans-serif;
            font-size: 22px;
            text-transform: uppercase;
            line-height: .95;
            position: relative;
            z-index: 2;
            max-width: 125px;
        }

        .category-card p {
            position: relative;
            z-index: 2;
            margin-top: 10px;
            font-size: 10px;
            max-width: 130px;
            line-height: 1.4;
        }

        .category-arrow {
            position: absolute;
            bottom: 12px;
            left: 12px;
            width: 35px;
            height: 35px;
            border: 1px solid #222;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 3;
            background: rgba(255,255,255,.6);
        }

        /* =========================
           PRODUCTS
        ========================= */

        .products-section {
            padding-top: 20px;
            padding-bottom: 65px;
        }

        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .view-all {
            font-size: 13px;
            font-weight: 600;
        }

        .view-all:hover {
            text-decoration: underline;
        }

        .products {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px;
        }

        .product {
            border: 1px solid var(--border);
            background: #fff;
            padding: 12px;
            position: relative;
            transition: .2s;
        }

        .product:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,.08);
        }

        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--yellow);
            padding: 5px 7px;
            font-size: 10px;
            font-weight: 800;
            z-index: 2;
        }

        .product-badge.new {
            background: #42a62b;
            color: #fff;
        }

        .product-image {
            height: 190px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 12px;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .product-brand {
            font-size: 10px;
            font-weight: 800;
            color: #555;
            text-transform: uppercase;
        }

        .product-name {
            margin-top: 5px;
            min-height: 37px;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.3;
        }

        .stars {
            color: #ffb900;
            font-size: 13px;
            margin-top: 8px;
        }

        .reviews {
            color: #777;
            font-size: 10px;
        }

        .product-bottom {
            margin-top: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price {
            font-size: 17px;
            font-weight: 800;
        }

        .old-price {
            color: #aaa;
            text-decoration: line-through;
            font-size: 11px;
            margin-left: 5px;
        }

        .add-cart {
            width: 35px;
            height: 35px;
            background: #111;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 16px;
        }

        .add-cart:hover {
            background: var(--yellow);
            color: #111;
        }

        /* =========================
           BENEFITS
        ========================= */

        .benefits {
            background: #f5f5f2;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
        }

        .benefit {
            padding: 27px 20px;
            border-right: 1px solid #ddd;
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .benefit:last-child {
            border-right: none;
        }

        .benefit-icon {
            font-size: 28px;
        }

        .benefit h4 {
            font-size: 12px;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .benefit p {
            color: #777;
            font-size: 10px;
            line-height: 1.4;
        }

        /* =========================
           NEWSLETTER
        ========================= */

        .newsletter {
            background:
                linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.55)),
                url("https://images.unsplash.com/photo-1510915361894-db8b60106cb1?auto=format&fit=crop&w=1800&q=80")
                center/cover;
            color: #fff;
            padding: 65px 0;
        }

        .newsletter-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .newsletter h2 {
            font-family: "Barlow Condensed", sans-serif;
            text-transform: uppercase;
            font-size: 48px;
            line-height: .9;
        }

        .newsletter p {
            margin-top: 10px;
            color: #ddd;
            max-width: 450px;
            font-size: 14px;
            line-height: 1.5;
        }

        .newsletter-form {
            display: flex;
            width: min(520px, 100%);
            height: 52px;
        }

        .newsletter-form input {
            flex: 1;
            border: none;
            padding: 0 18px;
            outline: none;
        }

        .newsletter-form button {
            width: 140px;
            border: none;
            background: var(--yellow);
            font-weight: 800;
            cursor: pointer;
        }

        /* =========================
           FOOTER
        ========================= */

        footer {
            background: #111;
            color: #fff;
        }

        .footer-main {
            padding: 55px 0 35px;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
            gap: 50px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 800;
        }

        .footer-logo span {
            color: var(--yellow);
        }

        .footer-about {
            margin-top: 15px;
            color: #aaa;
            font-size: 12px;
            line-height: 1.6;
            max-width: 250px;
        }

        .socials {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social {
            width: 32px;
            height: 32px;
            border: 1px solid #555;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .footer-column h4 {
            font-size: 13px;
            margin-bottom: 18px;
            text-transform: uppercase;
        }

        .footer-column a {
            display: block;
            color: #aaa;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .footer-column a:hover {
            color: var(--yellow);
        }

        .footer-contact {
            color: #aaa;
            font-size: 12px;
            line-height: 1.8;
        }

        .payments {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 15px;
        }

        .payment {
            background: #fff;
            color: #111;
            padding: 6px 10px;
            font-weight: 800;
            font-size: 11px;
            border-radius: 3px;
        }

        .footer-bottom {
            border-top: 1px solid #292929;
            padding: 18px 0;
            color: #777;
            font-size: 11px;
            display: flex;
            justify-content: space-between;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        /* =========================
           MOBILE
        ========================= */

        @media (max-width: 1100px) {

            .container {
                width: min(94%, 1000px);
            }

            .main-header {
                gap: 20px;
            }

            .logo {
                min-width: 160px;
            }

            .nav-links {
                gap: 5px;
                overflow-x: auto;
            }

            .categories {
                grid-template-columns: repeat(4, 1fr);
            }

            .products {
                grid-template-columns: repeat(3, 1fr);
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-main {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 700px) {

            .topbar {
                display: none;
            }

            .container {
                width: calc(100% - 28px);
            }

            .main-header {
                height: auto;
                padding: 18px 0;
                flex-wrap: wrap;
            }

            .logo {
                min-width: auto;
            }

            .header-actions {
                gap: 15px;
            }

            .header-action span:not(.icon) {
                display: none;
            }

            .search {
                order: 3;
                flex-basis: 100%;
                max-width: none;
            }

            .navigation {
                height: auto;
            }

            .nav-inner {
                overflow-x: auto;
            }

            .category-button {
                min-width: 150px;
                margin-right: 10px;
            }

            .nav-links {
                min-width: 650px;
            }

            .hero {
                min-height: 570px;
                background:
                    linear-gradient(90deg,
                        rgba(245,243,237,.97),
                        rgba(245,243,237,.6)
                    ),
                    url("https://images.unsplash.com/photo-1525201548942-d8732f6617a0?auto=format&fit=crop&w=1200&q=80")
                    center/cover;
            }

            .hero-content {
                min-height: 570px;
            }

            .hero h1 {
                font-size: 58px;
            }

            .hero-benefits {
                flex-direction: column;
                gap: 12px;
            }

            .categories {
                grid-template-columns: repeat(2, 1fr);
            }

            .category-card {
                height: 190px;
            }

            .products {
                grid-template-columns: repeat(2, 1fr);
            }

            .product-image {
                height: 150px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .benefit {
                border-right: 0;
                border-bottom: 1px solid #ddd;
            }

            .newsletter-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .newsletter h2 {
                font-size: 42px;
            }

            .newsletter-form {
                width: 100%;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
            }
        }

        @media (max-width: 450px) {

            .products {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .product {
                padding: 8px;
            }

            .product-image {
                height: 125px;
            }

            .price {
                font-size: 14px;
            }

            .old-price {
                display: none;
            }

            .category-card h3 {
                font-size: 18px;
            }

            .footer-main {
                grid-template-columns: 1fr;
            }
        }

/* =========================
   SHOP FILTERS / CART
========================= */

.category-button,
.view-all,
.cart-trigger {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.category-button.active,
.nav-links a.active {
    color: var(--yellow-dark);
}

.category-button.active {
    background: var(--yellow);
    color: #111;
}

.nav-links a.active {
    border-bottom: 3px solid var(--yellow);
}

.products-subtitle {
    margin-top: -16px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 13px;
}

.product-meta {
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
}

.empty-state {
    grid-column: 1 / -1;
    border: 1px dashed var(--border);
    background: var(--gray);
    padding: 35px;
    text-align: center;
    color: var(--muted);
    font-weight: 600;
}

.cart-trigger {
    background: transparent;
    color: inherit;
}

body.cart-open {
    overflow: hidden;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 1000;
    display: none;
    justify-content: flex-end;
}

.cart-overlay.open {
    display: flex;
}

.cart-panel {
    width: min(480px, 100%);
    height: 100%;
    background: #fff;
    color: var(--text);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 50px rgba(0,0,0,.25);
}

.cart-header {
    padding: 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 34px;
}

.cart-close {
    width: 38px;
    height: 38px;
    border: none;
    background: var(--black);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
}

.cart-empty {
    padding: 28px;
    background: var(--gray);
    text-align: center;
    color: var(--muted);
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 82px 1fr auto;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    border: 1px solid var(--border);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
}

.cart-item-info span {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.quantity-controls button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-weight: 800;
}

.quantity-controls span {
    min-width: 20px;
    text-align: center;
    color: var(--text);
    font-size: 13px;
}

.remove-item {
    align-self: start;
    border: none;
    background: transparent;
    color: #b00020;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
}

.cart-summary {
    padding: 20px 22px 24px;
    border-top: 1px solid var(--border);
    background: #fafafa;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.cart-summary-row.total {
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-top: 12px;
    font-size: 18px;
}

.checkout-button,
.continue-button {
    width: 100%;
    height: 46px;
    border: none;
    margin-top: 10px;
    font-weight: 800;
    cursor: pointer;
}

.checkout-button {
    background: var(--yellow);
    color: #111;
}

.continue-button {
    background: #111;
    color: #fff;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translate(-50%, 20px);
    background: #111;
    color: #fff;
    padding: 13px 18px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
    z-index: 1100;
    font-size: 13px;
    font-weight: 700;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 700px) {
    .cart-item {
        grid-template-columns: 70px 1fr;
    }

    .cart-item img {
        width: 70px;
        height: 70px;
    }

    .remove-item {
        grid-column: 2;
        justify-self: start;
    }
}

/* Elevator import layout */
.categories {
    grid-template-columns: repeat(4, 1fr);
}

.product .source-link {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 10px;
}

@media (max-width: 1100px) {
    .categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   Listing controls
========================= */

.products-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.sort-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--muted);
}

.sort-select {
    height: 42px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 0 12px;
    font-weight: 700;
    outline: none;
}

.product-link {
    display: block;
}

.product-link:hover .product-name {
    color: var(--yellow-dark);
}

.show-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.show-more-button {
    border: none;
    background: var(--black);
    color: #fff;
    padding: 15px 34px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
}

.show-more-button:hover {
    background: var(--yellow);
    color: #111;
}

.show-more-button[hidden] {
    display: none;
}

/* =========================
   Product detail page
========================= */

.product-page-section {
    padding: 36px 0 50px;
    background: #fff;
}

.breadcrumb {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 22px;
}

.breadcrumb a:hover {
    color: var(--yellow-dark);
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, .9fr);
    gap: 48px;
    align-items: start;
}

.product-gallery {
    border: 1px solid var(--border);
    background: #f8f8f6;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    position: relative;
}

.product-gallery img {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
}

.product-page-badge {
    top: 18px;
    left: 18px;
}

.product-detail-info {
    border: 1px solid var(--border);
    padding: 34px;
    background: #fff;
}

.detail-brand {
    font-size: 12px;
    margin-bottom: 12px;
}

.product-detail-info h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(38px, 4vw, 62px);
    line-height: .95;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.detail-category {
    display: inline-flex;
    background: var(--yellow);
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.detail-stars {
    margin-bottom: 18px;
}

.detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}

.detail-price {
    font-size: 34px;
    font-weight: 900;
}

.detail-old-price {
    color: #999;
    text-decoration: line-through;
    font-weight: 700;
}

.detail-short-description {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.detail-stock {
    color: #268000;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
}

.detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.detail-add-cart,
.detail-secondary {
    height: 52px;
    border: none;
    font-weight: 900;
    cursor: pointer;
}

.detail-add-cart {
    background: var(--yellow);
    color: #111;
}

.detail-secondary {
    background: #111;
    color: #fff;
}

.detail-benefits {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.product-description-section {
    background: var(--gray);
    padding: 45px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.product-info-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
}

.info-box {
    background: #fff;
    border: 1px solid var(--border);
    padding: 26px;
}

.info-box h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.info-box p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.source-note a {
    color: var(--yellow-dark);
    font-weight: 800;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.spec-list li span {
    color: var(--muted);
}

.recommendations-section {
    padding-top: 55px;
}

.product-footer {
    border-top: none;
}

@media (max-width: 900px) {
    .product-detail,
    .product-info-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        min-height: 380px;
    }

    .products-header {
        align-items: flex-start;
        gap: 16px;
    }

    .products-tools {
        justify-content: flex-start;
    }
}

@media (max-width: 550px) {
    .detail-actions {
        grid-template-columns: 1fr;
    }

    .product-detail-info {
        padding: 22px;
    }
}

/* =========================
   Premium discount design
========================= */

.product {
    overflow: hidden;
}

.product-badge {
    background: linear-gradient(135deg, #ff2d2d 0%, #ff7a00 55%, #ffc400 100%);
    color: #fff;
    border-radius: 0 0 14px 0;
    padding: 8px 12px;
    font-size: 12px;
    letter-spacing: .4px;
    box-shadow: 0 8px 18px rgba(255, 45, 45, .28);
    animation: discountPulse 1.8s ease-in-out infinite;
}

.product-badge::after {
    content: " SALE";
    font-weight: 900;
}

.product-badge.new {
    background: linear-gradient(135deg, #ff2d2d 0%, #ff7a00 55%, #ffc400 100%);
}

.old-price,
.detail-old-price {
    color: #999;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.price,
.detail-price {
    color: #d71920;
}

.product::before {
    content: "Premium deal";
    position: absolute;
    right: -42px;
    top: 18px;
    transform: rotate(35deg);
    width: 150px;
    background: #111;
    color: #ffc400;
    text-align: center;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .8px;
    padding: 4px 0;
    z-index: 3;
    text-transform: uppercase;
}

.detail-price-row::after {
    content: "Tijdelijke premium korting";
    display: inline-flex;
    align-items: center;
    background: #d71920;
    color: #fff;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.detail-add-cart {
    background: linear-gradient(135deg, #ffc400, #ff7a00);
    box-shadow: 0 10px 24px rgba(255, 122, 0, .28);
}

@keyframes discountPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

@media (max-width: 700px) {
    .product::before {
        display: none;
    }
}

/* =========================
   Live search suggestions
========================= */

.search-with-suggestions {
    position: relative;
    z-index: 50;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    display: none;
    max-height: 520px;
    overflow-y: auto;
    z-index: 999;
}

.search-suggestions.open {
    display: block;
}

.search-suggestion-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    background: #fff;
    transition: .16s;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: #fff8df;
}

.search-suggestion-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border: 1px solid #eee;
}

.search-suggestion-info {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.search-suggestion-info strong {
    font-size: 13px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestion-info small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.search-suggestion-price {
    display: grid;
    gap: 3px;
    text-align: right;
    white-space: nowrap;
}

.search-suggestion-price del {
    color: #999;
    font-size: 11px;
}

.search-suggestion-price b {
    color: #d71920;
    font-size: 14px;
}

.search-suggestion-empty {
    padding: 18px;
    color: var(--muted);
    font-weight: 700;
    text-align: center;
}

@media (max-width: 700px) {
    .search-suggestion-item {
        grid-template-columns: 52px 1fr;
    }

    .search-suggestion-item img {
        width: 52px;
        height: 52px;
    }

    .search-suggestion-price {
        grid-column: 2;
        text-align: left;
        display: flex;
        gap: 8px;
    }
}

/* =========================
   Account auth modal
========================= */

.account-trigger {
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

body.account-open {
    overflow: hidden;
}

.account-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .58);
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.account-overlay.open {
    display: flex;
}

.account-modal {
    width: min(460px, 100%);
    background: #fff;
    color: var(--text);
    position: relative;
    padding: 28px;
    box-shadow: 0 25px 70px rgba(0,0,0,.35);
    border: 1px solid var(--border);
}

.account-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--black);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.account-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
    padding-right: 42px;
}

.account-tab {
    height: 42px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
}

.account-tab.active {
    background: var(--yellow);
    border-color: var(--yellow);
}

.account-view {
    display: none;
}

.account-view.active {
    display: block;
}

.account-view h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.account-view p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 18px;
}

.account-form {
    display: grid;
    gap: 10px;
}

.account-form label {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.account-form input {
    height: 46px;
    border: 1px solid var(--border);
    padding: 0 14px;
    outline: none;
}

.account-form input:focus {
    border-color: var(--yellow-dark);
}

.account-form button,
.logout-button {
    height: 48px;
    border: none;
    background: var(--black);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    margin-top: 8px;
}

.account-form button:hover,
.logout-button:hover {
    background: var(--yellow);
    color: #111;
}

.account-profile-email {
    padding: 16px;
    background: var(--gray);
    border: 1px solid var(--border);
    font-weight: 900;
    margin-bottom: 14px;
}

.account-message {
    display: none;
    margin-top: 16px;
    padding: 12px;
    font-size: 13px;
    font-weight: 800;
}

.account-message.show {
    display: block;
}

.account-message.error {
    background: #ffe5e5;
    color: #b00020;
}

.account-message.success {
    background: #e8f8df;
    color: #236b00;
}

.account-tabs.hidden {
    display: none;
}

#profileView.active {
    margin-top: 8px;
}

/* =========================
   Checkout page
========================= */

.checkout-section {
    padding: 38px 0 70px;
    background: #fff;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 28px;
    align-items: start;
}

.checkout-form-card,
.order-summary-card {
    border: 1px solid var(--border);
    background: #fff;
    padding: 28px;
}

.checkout-form-card h1,
.order-summary-card h2 {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 44px;
    line-height: .95;
    margin-bottom: 10px;
}

.checkout-form-card p {
    color: var(--muted);
    margin-bottom: 22px;
}

.shipping-form {
    display: grid;
    gap: 16px;
}

.shipping-form.disabled {
    opacity: .45;
    pointer-events: none;
}

.form-row.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: grid;
    gap: 7px;
}

.field label {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.field input,
.field select {
    height: 48px;
    border: 1px solid var(--border);
    padding: 0 14px;
    outline: none;
    background: #fff;
}

.field input:focus,
.field select:focus {
    border-color: var(--yellow-dark);
}

.place-order-button {
    height: 54px;
    border: none;
    background: linear-gradient(135deg, #ffc400, #ff7a00);
    color: #111;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(255, 122, 0, .24);
}

.checkout-items {
    display: grid;
    gap: 12px;
    max-height: 430px;
    overflow-y: auto;
    margin: 20px 0;
    padding-right: 4px;
}

.checkout-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.checkout-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border: 1px solid #eee;
}

.checkout-item strong {
    display: block;
    font-size: 13px;
    line-height: 1.3;
}

.checkout-item span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.checkout-item b {
    color: #d71920;
    white-space: nowrap;
}

.checkout-empty {
    background: var(--gray);
    border: 1px dashed var(--border);
    padding: 22px;
    text-align: center;
    color: var(--muted);
    font-weight: 700;
}

.checkout-empty a,
.continue-shopping-link {
    color: var(--yellow-dark);
    font-weight: 900;
}

.continue-shopping-link {
    display: inline-block;
    margin-top: 18px;
}

.checkout-message {
    display: none;
    padding: 14px;
    font-weight: 800;
    font-size: 13px;
}

.checkout-message.show {
    display: block;
}

.checkout-message.error {
    background: #ffe5e5;
    color: #b00020;
}

.checkout-message.success {
    background: #e8f8df;
    color: #236b00;
}

@media (max-width: 1000px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .form-row.two {
        grid-template-columns: 1fr;
    }

    .checkout-form-card,
    .order-summary-card {
        padding: 20px;
    }
}

/* =========================
   Payment page
========================= */

.payment-layout {
    grid-template-columns: minmax(0, 1fr) 430px;
}


.payment-shipping-box {
    background: var(--gray);
    border: 1px solid var(--border);
    padding: 16px;
    margin: 16px 0;
}

.payment-shipping-box h3 {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.payment-shipping-box p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.pay-button {
    background: linear-gradient(135deg, #111, #333);
    color: #ffc400;
}

.pay-button:hover {
    background: linear-gradient(135deg, #ffc400, #ff7a00);
    color: #111;
}

.payment-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    text-decoration: none;
}

@media (max-width: 1000px) {
    .payment-layout {
        grid-template-columns: 1fr;
    }
}

/* =========================
   3D Secure page
========================= */

.three-ds-card {
    position: relative;
    overflow: hidden;
}

.three-ds-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ffc400, #ff7a00, #111);
}

.three-ds-badge {
    width: 58px;
    height: 58px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 16px;
    background: #111;
    color: #ffc400;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: .5px;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(17, 17, 17, .16);
}

.three-ds-bank-panel {
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at top right, rgba(255, 196, 0, .32), transparent 38%),
        linear-gradient(135deg, #fff, #f7f7f7);
    padding: 22px;
    margin: 22px 0;
}

.three-ds-bank-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.three-ds-bank-label {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.three-ds-bank-top strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
    text-transform: uppercase;
}

.three-ds-lock {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--border);
    font-size: 24px;
}

.three-ds-payment-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 13px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.three-ds-payment-line span {
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

.three-ds-payment-line strong {
    font-weight: 900;
}

.three-ds-hint {
    background: #fff8d8;
    border: 1px dashed #ffc400;
    padding: 13px 14px;
    color: #5e4300;
    font-size: 13px;
    font-weight: 800;
}

.three-ds-cancel {
    justify-self: center;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.three-ds-cancel:hover {
    color: #111;
}

.payment-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(120, 120, 120, .72);
    backdrop-filter: grayscale(1) blur(2px);
    cursor: wait;
}

.payment-loading-overlay.show {
    display: flex;
}

.payment-loading-card {
    min-width: 260px;
    padding: 34px 30px;
    display: grid;
    justify-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
    text-align: center;
}

.payment-loading-card strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
}

.payment-loading-card span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.payment-spinner {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 6px solid #ddd;
    border-top-color: #ffc400;
    animation: paymentSpin .8s linear infinite;
}

body.payment-busy {
    overflow: hidden;
}

body.payment-busy > *:not(.payment-loading-overlay) {
    filter: grayscale(1);
    user-select: none;
    pointer-events: none;
}

@keyframes paymentSpin {
    to {
        transform: rotate(360deg);
    }
}

.checkout-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(120, 120, 120, .72);
    backdrop-filter: grayscale(1) blur(2px);
    cursor: wait;
}

.checkout-loading-overlay.show {
    display: flex;
}

.checkout-loading-card {
    min-width: 280px;
    padding: 34px 30px;
    display: grid;
    justify-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
    text-align: center;
}

.checkout-loading-card strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    text-transform: uppercase;
}

.checkout-loading-card span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.checkout-spinner {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 6px solid #ddd;
    border-top-color: #ffc400;
    animation: paymentSpin .8s linear infinite;
}

body.checkout-busy {
    overflow: hidden;
}

body.checkout-busy > *:not(.checkout-loading-overlay) {
    filter: grayscale(1);
    user-select: none;
    pointer-events: none;
}
