* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Mono', monospace;
    background: #fff
}

.header-container {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #fff
}

.top-bar {
    background: #111;
    padding: 7px 40px 7px 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px
}

.top-bar a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: color .15s;
    white-space: nowrap
}

.top-bar a:hover {
    color: #fff
}

.main-nav {
    background: #fff;
    padding: 12px 40px 12px 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0
}

.logo img {
    width: 90px
}

.logo-box {
    background: #111;
    padding: 5px 7px;
    display: flex;
    align-items: center
}

.logo-g {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.logo-d-wrap {
    background: #fff;
    padding: 1px 4px;
    margin-left: 2px
}

.logo-d {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    line-height: 1
}

.logo-text {
    font-size: 10px;
    font-weight: 700;
    color: #111;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    white-space: nowrap
}

.search-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #ddd;
    min-width: 220px;
    height: 44px;
    transition: border-color .2s
}

.search-wrap:focus-within {
    border-color: #111
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 13.5px;
    font-family: 'DM Mono', monospace;
    color: #333;
    background: transparent;
    height: 100%;
    min-width: 0
}

.search-input::placeholder {
    color: #bbb;
    font-weight: 400
}

.mic-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 12px;
    color: #bbb;
    display: flex;
    align-items: center;
    height: 100%;
    transition: color .15s;
    flex-shrink: 0;
    border-left: 1px solid #eee
}

.mic-btn:hover {
    color: #111
}

.divider-v {
    width: 1px;
    height: 22px;
    background: #e0e0e0;
    flex-shrink: 0
}

.category-wrap {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0
}

.category-select {
    border: none;
    outline: none;
    background: transparent;
    padding: 0 28px 0 14px;
    font-size: 13px;
    font-family: 'DM Mono', monospace;
    color: #444;
    font-weight: 500;
    cursor: pointer;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    white-space: nowrap
}

.search-btn {
    background: #111;
    border: none;
    cursor: pointer;
    padding: 0 18px;
    color: #fff;
    display: flex;
    align-items: center;
    height: 100%;
    transition: background .15s;
    flex-shrink: 0
}

.search-btn:hover {
    background: #2a2a2a
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.login-btn {
    background: none;
    border: 1.5px solid #ddd;
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Mono', monospace;
    color: #111;
    cursor: pointer;
    padding: 9px 20px;
    transition: all .15s;
    white-space: nowrap
}

.login-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111
}

.cart-btn {
    background: #111;
    border: 1.5px solid #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Mono', monospace;
    padding: 9px 18px;
    transition: background .15s;
    white-space: nowrap
}

.cart-btn:hover {
    background: #2a2a2a
}

.cart-icon-wrap {
    position: relative;
    display: flex;
    align-items: center
}

.cart-badge {
    position: absolute;
    top: -9px;
    right: -9px;
    background: #e00;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.nav-bar {
    background: #fff;
    border-top: 1px solid #ebebeb;
    padding: 0 40px 0 60px;
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    padding: 13px 15px;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'DM Mono', monospace;
    transition: color .15s;
    position: relative;
    flex-shrink: 0
}

.nav-link:hover {
    color: #111
}

.nav-link.active {
    font-weight: 700;
    color: #111
}

.nav-item {
    position: relative;
    flex-shrink: 0
}

.nav-item .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    min-width: 240px;
    z-index: 999;
    padding: 6px 0
}

.nav-item:hover .dropdown {
    display: block
}

.dropdown-item {
    position: relative
}

.dropdown-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    text-decoration: none;
    color: #444;
    font-size: 13px;
    font-weight: 400;
    transition: background .1s, color .1s;
    white-space: nowrap
}

.dropdown-item:hover>a {
    background: #f5f5f5;
    color: #00c400
}

.dropdown-item .arrow-right {
    color: #bbb;
    font-weight: 700;
    font-size: 14px
}

.dropdown-item:hover>a .arrow-right {
    color: #00c400
}

.mobile-nav {
    display: none;
    background: #fff;
    padding: 11px 18px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #00c400;
    position: relative
}

.mobile-nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    pointer-events: auto
}

.mobile-nav-logo img {
    height: 36px;
    width: auto
}

.mobile-nav-logo-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: #111;
    font-family: 'DM Mono', monospace;
    white-space: nowrap
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 14px
}

.mobile-actions button {
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    display: flex;
    align-items: center;
    position: relative
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    display: flex;
    align-items: center;
    padding: 2px
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #ebebeb;
    max-height: min(75vh, 560px);
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .06)
}

.mobile-menu.open {
    display: flex;
    flex-direction: column
}

.mobile-menu-search {
    padding: 12px 16px;
    border-bottom: 1px solid #ebebeb;
    flex-shrink: 0
}

.mobile-menu-search-inner {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    height: 40px
}

.mobile-menu-search-inner:focus-within {
    border-color: #111
}

.mobile-menu-search-inner input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 12px;
    font-size: 13px;
    font-family: 'DM Mono', monospace;
    color: #333;
    min-width: 0
}

.mobile-menu-search-inner input::placeholder {
    color: #bbb
}

.mobile-menu-search-inner button {
    background: #111;
    border: none;
    cursor: pointer;
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    flex-shrink: 0
}

.mobile-menu-nav {
    flex: 1;
    overflow-y: auto
}

.mobile-menu-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bbb;
    padding: 16px 18px 6px
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    text-decoration: none;
    color: #222;
    font-size: 13.5px;
    font-weight: 500;
    transition: background .1s;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    font-family: 'DM Mono', monospace;
    border-bottom: 1px solid #f2f2f2
}

.mobile-menu-link:hover {
    background: #f8f8f8
}

.mobile-menu-link .chevron {
    color: #ccc;
    flex-shrink: 0;
    transition: transform .2s
}

.mobile-menu-link.expanded .chevron {
    transform: rotate(180deg)
}

.mobile-menu-sub {
    display: none;
    background: #fafafa
}

.mobile-menu-sub.open {
    display: block
}

.mobile-menu-sub a {
    display: block;
    padding: 11px 18px 11px 32px;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid #f0f0f0;
    transition: color .1s, background .1s
}

.mobile-menu-sub a:hover {
    color: #111;
    background: #f2f2f2
}

.mobile-menu-sub-deep {
    display: none;
    background: #f0f0f0
}

.mobile-menu-sub-deep.open {
    display: block
}

.mobile-menu-sub-deep a {
    padding-left: 48px
}

.mobile-menu-divider {
    height: 1px;
    background: #ebebeb;
    margin: 4px 0
}

.mobile-menu-footer {
    padding: 14px 16px;
    border-top: 1px solid #ebebeb;
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

.mobile-menu-footer button,
.mobile-menu-footer a {
    flex: 1;
    padding: 11px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Mono', monospace;
    cursor: pointer;
    transition: all .15s
}

.mobile-menu-login {
    background: none;
    border: 1.5px solid #ddd;
    color: #111
}

.mobile-menu-login:hover {
    background: #111;
    color: #fff;
    border-color: #111
}

.mobile-menu-cart {
    background: #111;
    border: 1.5px solid #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.mobile-menu-cart:hover {
    background: #2a2a2a
}

@media (max-width:1024px) {

    .header-container,
    .top-bar,
    .main-nav,
    .nav-bar {
        display: none
    }

    .mobile-nav {
        display: flex;
        position: sticky;
        top: 0;
        z-index: 500
    }
}

.hero {
    background: #111;
    background-image: url('../assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .78);
    z-index: 0
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.hero-headline {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 22px;
    text-align: left
}

.hero-accent {
    color: #00c400
}

.hero-sub {
    font-size: 14px;
    color: #aaa;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 34px;
    font-weight: 400
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #00c400;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    font-family: 'DM Mono', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    transition: background .15s, color .15s;
    margin-bottom: 48px;
    border: none;
    cursor: pointer
}

.hero-cta:hover {
    background: #00a800
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 32px
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .15);
    margin-right: 32px;
    flex-shrink: 0
}

.hero-stat-num {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.hero-stat-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666
}

.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.hero-lookup {
    background: rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .08);
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
}

.hero-lookup-body {
    padding: 24px 22px 26px
}

.hero-lookup-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.hero-lookup-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 22px
}

.hero-lookup-input {
    width: 100%;
    background: #232830;
    border: 1px solid rgba(255, 255, 255, .1);
    outline: none;
    color: #ddd;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    padding: 13px 16px;
    margin-bottom: 14px;
    transition: border-color .2s;
    display: block
}

.hero-lookup-input::placeholder {
    color: #555
}

.hero-lookup-input:focus {
    border-color: #00c400
}

.hero-lookup-actions {
    display: flex;
    gap: 10px
}

.hero-lookup-btn-primary {
    flex: 1;
    background: #00c400;
    color: #000;
    border: none;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 13px 18px;
    cursor: pointer;
    transition: background .15s;
    text-align: center
}

.hero-lookup-btn-primary:hover {
    background: #00a800
}

.hero-lookup-btn-secondary {
    background: transparent;
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, .15);
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 13px 18px;
    cursor: pointer;
    transition: border-color .15s, color .15s;
    text-decoration: none;
    display: flex;
    align-items: center
}

.hero-lookup-btn-secondary:hover {
    border-color: #aaa;
    color: #fff
}

@media (max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 40px
    }

    .hero-right {
        justify-content: flex-start
    }

    .hero-lookup {
        max-width: 100%
    }
}

@media (max-width:600px) {
    .hero-inner {
        padding: 48px 20px
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px
    }

    .hero-stat-divider {
        display: none
    }
}

.container {
    max-width: 1400px;
    margin: 30px auto 20px;
    padding: 0 50px
}

@media (max-width:1024px) {
    .container {
        padding: 0 24px
    }
}

@media (max-width:600px) {
    .container {
        padding: 0 16px;
        margin: 20px auto 16px
    }
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #000
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px
}

.product-card {
    background: #fff;
    border: 1px solid #000;
    overflow: hidden;
    transition: transform .2s;
    display: flex;
    flex-direction: column
}

.product-card:hover {
    transform: translateY(-5px)
}

.product-image {
    width: 100%;
    height: 200px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #000;
    position: relative
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start
}

.product-tag {
    font-size: 10px;
    font-weight: 700;
    font-family: 'DM Mono', monospace;
    letter-spacing: .8px;
    padding: 3px 8px;
    text-transform: uppercase;
    line-height: 1.4
}

.tag-sale {
    background: #e00;
    color: #fff
}

.tag-new {
    background: #000;
    color: #fff
}

.tag-refurbished {
    background: #1a6e1a;
    color: #fff
}

.tag-secondhand {
    background: #444;
    color: #fff
}

.tag-scrap {
    background: #7a4a00;
    color: #fff
}

.price-original {
    font-size: .95rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 6px
}

.price-sale {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e00
}

.product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
    line-height: 1.3
}

.product-brand {
    font-size: .9rem;
    color: #333;
    margin-bottom: 4px
}

.product-model {
    font-size: .85rem;
    color: #333;
    margin-bottom: 10px
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-top: auto;
    padding-top: 10px
}

.product-stock {
    font-size: .8rem;
    color: #333;
    margin-top: 4px
}

.btn-details {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background .2s
}

.btn-details:hover {
    background: #333
}

@media (max-width:600px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px
    }

    .product-image {
        height: 150px
    }

    .product-info {
        padding: 12px
    }

    .product-name {
        font-size: .95rem
    }

    .product-price {
        font-size: 1rem
    }

    .btn-details {
        font-size: .8rem;
        padding: 6px 12px
    }
}

@media (max-width:400px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .product-image {
        height: 120px
    }

    .product-info {
        padding: 8px
    }

    .product-name {
        font-size: .8rem
    }

    .product-price {
        font-size: .9rem
    }

    .btn-details {
        font-size: .7rem;
        padding: 5px 10px
    }
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 60px;
    background: #fafafa;
    border-top: 1px solid #ebebeb;
    flex-wrap: wrap
}

@media (max-width:1024px) {
    .filter-bar {
        padding: 8px 24px
    }
}

@media (max-width:600px) {
    .filter-bar {
        padding: 8px 16px
    }
}

.filter-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    font-family: 'DM Mono', monospace;
    padding: 5px 12px;
    letter-spacing: .3px
}

.filter-tag span {
    opacity: .7
}

.clear-filters-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1.5px solid #ccc;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    font-family: 'DM Mono', monospace;
    padding: 5px 12px;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none
}

.clear-filters-btn:hover {
    border-color: #111;
    color: #111
}

#trackResult {
    margin-top: 16px
}

.track-result {
    border: 1px solid rgba(255, 255, 255, .1);
    background: #141820;
    padding: 16px 18px
}

.track-result-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00c400;
    margin-bottom: 4px
}

.track-result-ref {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px
}

.track-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    gap: 12px
}

.track-label {
    font-size: 11px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .8px;
    flex-shrink: 0
}

.track-value {
    font-size: 12px;
    color: #ccc;
    text-align: right
}

.track-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px
}

.track-status-checked_in {
    background: #1e3a5f;
    color: #6eb5ff
}

.track-status-diagnosing {
    background: #3a2e00;
    color: #f0c040
}

.track-status-awaiting_parts {
    background: #3a1a00;
    color: #ff9944
}

.track-status-in_progress {
    background: #002a3a;
    color: #40d0f0
}

.track-status-completed {
    background: #003a00;
    color: #00c400
}

.track-status-awaiting_pickup {
    background: #002a3a;
    color: #40d0f0
}

.track-status-picked_up {
    background: #003a00;
    color: #00c400
}

.track-status-cancelled {
    background: #3a0000;
    color: #ff5555
}

.track-status-pending {
    background: #3a2e00;
    color: #f0c040
}

.track-status-confirmed {
    background: #1e3a5f;
    color: #6eb5ff
}

.track-status-processing {
    background: #002a3a;
    color: #40d0f0
}

.track-status-shipped {
    background: #1a003a;
    color: #cc88ff
}

.track-status-delivered {
    background: #003a00;
    color: #00c400
}

.track-status-refunded {
    background: #3a0000;
    color: #ff5555
}

.track-not-found {
    margin-top: 16px;
    padding: 12px 14px;
    background: #2a0a0a;
    border: 1px solid rgba(255, 80, 80, .2);
    color: #ff7777;
    font-size: 12px;
    line-height: 1.6
}

.site-footer {
    background: #111;
    margin-top: 60px
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 60px 50px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1.6fr;
    gap: 50px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px
}

.footer-logo img {
    height: 38px;
    width: auto
}

.footer-logo-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: #fff;
    font-family: 'DM Mono', monospace
}

.footer-tagline {
    font-size: 12.5px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 22px
}

.footer-social {
    display: flex;
    gap: 10px
}

.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: border-color .15s, color .15s
}

.footer-social a:hover {
    border-color: #00c400;
    color: #00c400
}

.footer-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0
}

.footer-col a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px solid #1a1a1a;
    transition: color .15s
}

.footer-col a:hover {
    color: #00c400
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12.5px;
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #1a1a1a;
    text-decoration: none;
    transition: color .15s;
    line-height: 1.5
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px
}

a.footer-contact-item:hover {
    color: #00c400
}

.footer-payment-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00c400;
    margin-bottom: 10px
}

.footer-payment-block {
    background: #1a1a1a;
    padding: 14px 16px
}

.footer-payment-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 0;
    border-bottom: 1px solid #222;
    font-size: 11.5px
}

.footer-payment-row:last-child {
    border-bottom: none
}

.footer-payment-row span:first-child {
    color: #555;
    flex-shrink: 0
}

.footer-payment-row span:last-child {
    color: #ccc;
    font-weight: 600;
    text-align: right
}

.footer-bottom {
    border-top: 1px solid #1c1c1c;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    color: #444;
    max-width: 100%
}

@media (max-width:1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 48px 40px 40px
    }

    .footer-bottom {
        padding: 16px 40px
    }
}

@media (max-width:600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 36px 20px 30px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 14px 20px
    }
}

.product-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 20px;
    flex-wrap: wrap
}

@media (max-width:1024px) {
    .product-nav {
        display: none
    }
}

.product-nav-item {
    position: relative;
    flex-shrink: 0
}

.product-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 15px;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'DM Mono', monospace;
    transition: color .15s
}

.product-nav-link:hover {
    color: #111
}

.product-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    min-width: 240px;
    z-index: 999;
    padding: 6px 0
}

.product-nav-item:hover .product-dropdown {
    display: block
}

.product-dropdown-item {
    position: relative
}

.product-dropdown-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    text-decoration: none;
    color: #444;
    font-size: 13px;
    font-weight: 400;
    transition: background .1s, color .1s;
    white-space: nowrap
}

.product-dropdown-item:hover>a {
    background: #f5f5f5;
    color: #00c400
}

.product-dropdown-item .arrow-right {
    color: #bbb;
    font-weight: 700;
    font-size: 14px
}

.product-dropdown-item:hover>a .arrow-right {
    color: #00c400
}

.product-dropdown-sub {
    display: none;
    position: absolute;
    top: -7px;
    left: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    min-width: 220px;
    z-index: 1000;
    padding: 6px 0
}

.product-dropdown-item:hover .product-dropdown-sub {
    display: block
}

.product-dropdown-sub a {
    display: block;
    padding: 10px 18px
}

.product-dropdown-sub a:hover {
    background: #f5f5f5;
    color: #00c400
}

.product-dropdown-sub2 {
    display: none;
    position: absolute;
    top: -7px;
    left: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    min-width: 220px;
    z-index: 1001;
    padding: 6px 0
}

.product-dropdown-item:hover .product-dropdown-sub2 {
    display: block
}

.product-dropdown-sub2 a {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    color: #444;
    font-size: 13px;
    font-weight: 400;
    transition: background .1s, color .1s;
    white-space: nowrap
}

.product-dropdown-sub2 a:hover {
    background: #f5f5f5;
    color: #00c400
}

.product-filter-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px
}

.product-filter-links a {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Mono', monospace;
    color: #333;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all .15s
}

.product-filter-links a:hover {
    border-color: #ddd;
    background: #f5f5f5
}

.product-filter-links a.active {
    border-color: #111;
    background: #111;
    color: #fff;
    font-weight: 600
}

.mobile-filter-bar {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 16px
}

@media (max-width:1024px) {
    .mobile-filter-bar {
        display: flex
    }
}

.mobile-filter-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #111;
    color: #fff;
    border: none;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    position: relative
}

.mobile-filter-trigger svg {
    flex-shrink: 0
}

.mobile-filter-badge {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00c400
}

.mobile-sort-wrap {
    flex: 1;
    min-width: 0
}

.mobile-sort-wrap .custom-select-trigger {
    border: 1px solid #ddd;
    font-size: 13px;
    padding: 10px 12px
}

.mobile-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 9998
}

.mobile-filter-overlay.open {
    display: block
}

.mobile-filter-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform .25s ease;
    z-index: 9999
}

.mobile-filter-overlay.open .mobile-filter-panel {
    transform: translateY(0)
}

.mobile-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #ebebeb;
    flex-shrink: 0
}

.mobile-filter-title {
    font-family: 'DM Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    color: #111
}

.mobile-filter-close {
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    transition: color .15s
}

.mobile-filter-close:hover {
    color: #111
}

.mobile-filter-body {
    padding: 16px 20px 32px;
    overflow-y: auto
}

.mobile-filter-section {
    margin-bottom: 24px
}

.mobile-filter-section:last-child {
    margin-bottom: 0
}

.mobile-filter-section-title {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #999;
    margin-bottom: 10px
}

.mobile-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.mobile-filter-chips a {
    display: inline-block;
    padding: 8px 14px;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border: 1.5px solid #ddd;
    transition: all .15s
}

.mobile-filter-chips a.active {
    border-color: #111;
    background: #111;
    color: #fff;
    font-weight: 600
}

.mobile-filter-accordion {
    border-top: 1px solid #f0f0f0
}

.mobile-filter-accordion-item {
    border-bottom: 1px solid #f0f0f0
}

.mobile-filter-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    background: none;
    border: none;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-align: left;
    cursor: pointer
}

.mobile-filter-accordion-btn .chevron {
    flex-shrink: 0;
    transition: transform .2s
}

.mobile-filter-accordion-btn.expanded .chevron {
    transform: rotate(180deg)
}

.mobile-filter-sub {
    display: none;
    padding-left: 0
}

.mobile-filter-sub.open {
    display: block
}

.mobile-filter-sub-title {
    display: block;
    padding: 8px 0 6px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #999;
    border-bottom: 1px solid #ececec;
    margin-bottom: 4px
}

.mobile-filter-link {
    display: block;
    padding: 10px 0;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5
}

.mobile-filter-link:last-child {
    border-bottom: none
}

.mobile-filter-link:hover {
    color: #00c400
}

.mobile-filter-link-flat {
    font-weight: 600;
    color: #111;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 9999;
    align-items: center;
    justify-content: center
}

.modal-overlay.open {
    display: flex
}

.modal-content {
    background: #fff;
    max-width: 460px;
    width: 95%;
    padding: 30px 30px 25px;
    border-radius: 0;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    max-height: 90vh;
    overflow-y: auto
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: color .15s;
    line-height: 1
}

.modal-close:hover {
    color: #111
}

.form-group {
    margin-bottom: 16px
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    font-family: 'DM Mono', monospace;
    color: #444;
    margin-bottom: 4px
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #ddd;
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    color: #333;
    transition: border-color .15s;
    background: #fff;
    resize: vertical
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111
}

.form-group select {
    appearance: auto
}

.radio-group label {
    font-weight: 400;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer
}

.modal-submit-btn {
    width: 100%;
    padding: 12px;
    background: #111;
    color: #fff;
    border: none;
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
    margin-top: 6px
}

.modal-submit-btn:hover {
    background: #2a2a2a
}

.form-message {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 400;
    padding: 8px 10px;
    border-radius: 0;
    display: none
}

.form-message.error {
    background: #ffeeee;
    color: #cc0000;
    border: 1px solid #ffcccc;
    display: block
}

.form-message.success {
    background: #eeffee;
    color: #006600;
    border: 1px solid #ccffcc;
    display: block
}

.feedback-modal .modal-content {
    max-width: 520px
}

.feedback-modal .form-group select {
    font-size: 13px
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    font-size: 28px;
    line-height: 1
}

.star-rating input {
    display: none
}

.star-rating label {
    color: #ddd;
    cursor: pointer;
    transition: color .15s
}

.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
    color: #f5b342
}

.star-rating input:checked+label {
    color: #f5b342
}

.feedback-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px 14px 16px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.35s ease;
    max-width: calc(100vw - 40px);
}

.feedback-toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.feedback-toast-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.feedback-toast-text {
    flex: 1;
}

.feedback-toast-close {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 0 0 0 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.feedback-toast-close:hover {
    color: #fff;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

@media (max-width:768px){
    .hero-cta-group {
        flex-direction: column;
    }
}

.hero-cta-secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid #006600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    letter-spacing: 0.03em;
}

.hero-cta-secondary:hover {
    background: #111;
    color: #fff;
}

.subscribe-modal .modal-content {
    max-width: 420px;
}

.subscribe-intro {
    font-size: 13px;
    color: #555;
    margin: 0 0 18px;
    line-height: 1.5;
}

.subscribe-check-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.subscribe-check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.subscribe-check-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: #111;
    cursor: pointer;
}

.subscribe-check-label span strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.subscribe-check-label span small {
    font-size: 12px;
    color: #666;
}

.subscribe-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 0 4px;
}

.subscribe-result-icon {
    margin-bottom: 12px;
}

.subscribe-result-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111;
}

.subscribe-result-msg {
    font-size: 14px;
    color: #444;
    margin: 0 0 20px;
    line-height: 1.5;
}

.manage-modal .modal-content {
    max-width: 450px;
}

.manage-modal .form-group {
    margin-bottom: 12px;
}

.manage-modal .checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.manage-modal .checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #111;
}

.manage-modal .action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
    align-items: center;
}

.manage-modal .btn-update {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    cursor: pointer;
}

.manage-modal .btn-lookup {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
}

.manage-modal .lookup-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.manage-modal .lookup-row input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.manage-modal .unsubscribe-link {
    color: #b91c1c;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 14px;
    padding: 0;
}

.manage-modal .unsubscribe-link:hover {
    color: #7f1d1d;
}

.confirm-modal .modal-content {
    max-width: 400px;
    text-align: center;
}

.confirm-modal .modal-content p {
    font-size: 16px;
    color: #333;
    margin: 16px 0 24px;
}

.confirm-modal .modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.confirm-modal .modal-actions button {
    padding: 10px 28px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.confirm-modal .btn-confirm {
    background: #b91c1c;
    color: #fff;
}

.confirm-modal .btn-confirm:hover {
    background: #7f1d1d;
}

.confirm-modal .btn-cancel {
    background: #e5e7eb;
    color: #111;
}

.confirm-modal .btn-cancel:hover {
    background: #d1d5db;
}

.product-dropdown-item-l3 {
    position: relative;
}

.product-dropdown-item-l3>.sub-cat-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    gap: 16px;
}

.product-dropdown-item-l3>.sub-cat-label:hover {
    background: #f5f5f5;
    color: #111;
}

.product-dropdown-sub3 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    min-width: 180px;
    box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.10);
    z-index: 200;
    overflow: visible;
}

.product-dropdown-item-l3:hover>.product-dropdown-sub3 {
    display: block;
}

.product-dropdown-item-l4 {
    position: relative;
}

.product-dropdown-item-l4>.model-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    white-space: nowrap;
    gap: 16px;
}

.product-dropdown-item-l4>.model-label:hover {
    background: #f5f5f5;
    color: #111;
}

.product-dropdown-sub4 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    min-width: 180px;
    box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.10);
    z-index: 300;
    overflow: visible;
}

.product-dropdown-item-l4:hover>.product-dropdown-sub4 {
    display: block;
}

.product-dropdown-sub4 a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.product-dropdown-sub4 a:hover {
    background: #f5f5f5;
    color: #111;
}

.product-dropdown-item-l5 {
    position: relative;
}

.product-dropdown-item-l5>.part-model-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    white-space: nowrap;
    gap: 24px;
}

.product-dropdown-item-l5>.part-model-label:hover {
    background: #f5f5f5;
    color: #111;
}

.product-dropdown-sub5 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    min-width: 190px;
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.10);
    z-index: 400;
}

.product-dropdown-item-l5:hover>.product-dropdown-sub5 {
    display: block;
}

.product-dropdown-sub5 a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.product-dropdown-sub5 a:hover {
    background: #f5f5f5;
    color: #111;
}

.made-for-icon {
    margin-right: 6px;
    font-size: 14px;
}

.product-dropdown-sub2 {
    overflow: visible;
}

.product-dropdown a.active,
.product-dropdown-sub2 a.active,
.product-dropdown-sub3 a.active,
.product-dropdown-sub4 a.active,
.product-dropdown-sub5 a.active {
    color: #27ae60;
    font-weight: 600;
}

.dropdown-panel-title {
    display: block;
    padding: 8px 14px 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 4px;
    pointer-events: none;
    white-space: nowrap;
}

.feedback-result-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px 8px;
}

.feedback-result-success {
    border-top: 4px solid #1a7a3c;
}

.feedback-result-error {
    border: 1.5px solid #f5c6c6;
    background: #fff5f5;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 18px;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
}

.feedback-result-icon {
    margin-bottom: 14px;
    flex-shrink: 0;
}

.feedback-result-error .feedback-result-icon {
    margin-bottom: 0;
}

.feedback-result-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #111;
}

.feedback-result-msg {
    font-size: 14px;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.5;
}

.feedback-result-error .feedback-result-msg {
    color: #b91c1c;
    margin: 0;
}

.feedback-result-sub {
    font-size: 13px;
    color: #555;
    margin: 0 0 20px;
}

.mobile_menu_title {
    font-size: 20px;
    padding: 15px;
    font-weight: 600;
}