@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    --primary: #0B0F17;
    --primary-light: #1E293B;
    --accent: #FF4800;
    --accent-dark: #D63C00;
    --bg: #FAF9F6;
    --white: #FFFFFF;
    --text: #0F172A;
    --text-muted: #64748B;
    --border: #EBEBE6;
    --shadow: 0 4px 12px rgba(11, 15, 23, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 15, 23, 0.05), 0 4px 10px -2px rgba(11, 15, 23, 0.02);
    --shadow-lg: 0 24px 38px -8px rgba(11, 15, 23, 0.06), 0 8px 18px -6px rgba(11, 15, 23, 0.02);
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-cond: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-w: 1240px;
    --header-h: 120px;
}

/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 82, 27, 0.15);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1.5px);
    box-shadow: 0 6px 20px rgba(255, 82, 27, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(11, 15, 23, 0.15);
}

.btn-secondary:hover {
    background: rgba(11, 15, 23, 0.03);
    border-color: rgba(11, 15, 23, 0.3);
    transform: translateY(-1.5px);
}

/* ── HEADER ───────────────────────────────────────── */
#site-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    color: var(--text);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 4px 30px rgba(11, 15, 23, 0.02);
    transition: all 0.3s ease;
}

#trust-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 10px 0;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#trust-bar .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}

#logo {
    font-family: var(--font-cond);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
}

#logo .accent {
    color: var(--accent);
    font-weight: 900;
    margin-left: 2px;
}

#search-wrapper {
    flex: 1;
    max-width: 440px;
    position: relative;
    display: flex;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 99px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    padding-left: 14px;
}

#search-wrapper:focus-within {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(255, 72, 0, 0.08);
}

#search-wrapper input {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 14px;
    font-family: var(--font-main);
    outline: none;
}

#search-wrapper button {
    width: 42px;
    height: 42px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
    transition: all 0.2s ease;
}

#search-wrapper button:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

#search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.search-header {
    padding: 14px 20px;
    font-size: 12px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #FAF9F6;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 15px;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

.search-item:hover {
    background: #FAF9F6;
}

.search-item .thumb {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.search-item .thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.search-item .details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-item .name {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    max-width: 380px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-item .price {
    color: var(--accent);
    font-weight: 800;
    font-size: 15px;
}

.all-results-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
    border-top: 1px solid #eee;
}

.all-results-link:hover {
    background: #fffcf9;
    text-decoration: underline;
}

.search-item .info { flex: 1; min-width: 0; }
.search-item .name {
    font-weight: 700;
    display: block;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-item .price { color: var(--accent); font-weight: 900; font-size: 13px; margin-top: 2px; display: block; }

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

#desktop-nav {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.cart-btn {
    background: var(--accent);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(255, 72, 0, 0.1);
}

.cart-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 72, 0, 0.2);
}

#cart-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
}

/* ── HERO ─────────────────────────────────────────── */
#hero {
    position: relative;
    padding: 140px 0 120px;
    background: #FAF9F6 url('/assets/hero-hubwagendirekt.png') no-repeat;
    background-size: cover;
    background-position: right center;
    color: var(--text);
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

/* Gradient-Mask for text readability on left */
#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #FAF9F6 32%, rgba(250, 249, 246, 0.9) 55%, rgba(250, 249, 246, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Technical dot grid pattern overlay */
#hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(11, 15, 23, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}

@media (max-width: 992px) {
    #hero {
        background-position: center;
        padding: 100px 0 80px;
    }
    #hero::before {
        background: linear-gradient(to bottom, rgba(250, 249, 246, 0.96) 20%, rgba(250, 249, 246, 0.85) 100%);
    }
}

.badge {
    display: inline-block;
    background: rgba(255, 72, 0, 0.05);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 1px solid rgba(255, 72, 0, 0.12);
    margin-bottom: 24px;
}

#hero h1 {
    font-family: var(--font-cond);
    font-size: clamp(40px, 6vw, 60px);
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--primary);
}

#hero p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* ── USP-BAR ──────────────────────────────────────── */
#usp-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.usp-icon {
    font-size: 20px;
    background: rgba(255, 72, 0, 0.05);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent);
}

.usp-text strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-cond);
}

.usp-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
}

/* ── KATEGORIEN ───────────────────────────────────── */
#categories {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header h2 {
    font-family: var(--font-cond);
    font-size: 38px;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: -0.02em;
    font-weight: 800;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    overflow: hidden;
    box-shadow: 0 10px 30px -15px rgba(11, 15, 23, 0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(11, 15, 23, 0.08);
    border-color: var(--accent);
}

.card-img {
    aspect-ratio: 1.25;
    overflow: hidden;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.card-img img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover img {
    transform: scale(1.06);
}

.card-body {
    padding: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.03);
}

.card-body h3 {
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-cond);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── BESTSELLERS ──────────────────────────────────── */
#bestsellers {
    padding: 100px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

/* ── CATEGORY PAGE & FILTERS ─────────────────────── */
.category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    padding: 40px 0 100px;
}

.sidebar {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px rgba(11, 15, 23, 0.04);
    height: fit-content;
}

.filter-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px 24px;
    font-family: var(--font-cond);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.filter-group {
    background: var(--white);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding: 24px;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h4 {
    font-family: var(--font-cond);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    color: var(--primary);
    font-weight: 700;
}

.checkbox-list {
    list-style: none;
    padding: 0;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

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

.checkbox-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.sorting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    background: var(--white);
    padding: 16px 28px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 4px 15px rgba(11, 15, 23, 0.02);
}

.product-count {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
}

.sort-select {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.sort-select:focus {
    border-color: var(--accent);
}

/* ── IMPROVED PRODUCT CARD ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px -15px rgba(11, 15, 23, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(11, 15, 23, 0.08);
    border-color: var(--accent);
}

.product-card .prod-img {
    height: 280px;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
    overflow: hidden;
    position: relative;
}

.product-card .prod-img img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .prod-img img {
    transform: scale(1.05);
}

.product-card .badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    z-index: 10;
}

.product-card .prod-info {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .sku {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 8px;
    display: block;
    font-family: var(--font-main);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.product-card h3 {
    font-family: var(--font-cond);
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.product-card h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.product-card h3 a:hover {
    color: var(--accent);
}

.product-card .compat {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.product-card .price-box-mini {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.product-card .price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-cond);
}

.product-card .vat-info {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

.product-card .cart-btn-full {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 12px;
    margin-top: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    font-family: var(--font-cond);
}

.product-card .cart-btn-full:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 82, 27, 0.2);
}

/* ── PRODUCT DETAIL ───────────────────────────────── */
.product-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 60px 0 100px;
}

.product-gallery {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 35px -15px rgba(11, 15, 23, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: sticky;
    top: 120px;
    height: fit-content;
}

.product-gallery img {
    max-width: 90%;
    max-height: 450px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-gallery:hover img {
    transform: scale(1.02);
}

.product-info-panel h1 {
    font-family: var(--font-cond);
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.price-box {
    background: rgba(15, 23, 42, 0.02);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.main-price {
    display: block;
    font-size: 42px;
    font-weight: 800;
    font-family: var(--font-cond);
    color: var(--primary);
    line-height: 1;
}

.sub-price {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 0;
    display: block;
    font-weight: 500;
}

.sub-price a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}

.buy-row {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.qty-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.qty-btn {
    width: 48px;
    height: 52px;
    border: none;
    background: #FAF9F6;
    cursor: pointer;
    font-size: 16px;
    color: var(--primary);
    transition: all 0.2s ease;
    font-weight: 600;
}

.qty-btn:hover {
    background: #F1F5F9;
}

.qty-input {
    width: 54px;
    height: 52px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-main);
}

.info-list {
    margin-top: 30px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--primary-light);
    font-weight: 500;
}

.info-list li::before {
    content: "✓";
    color: #10B981;
    font-weight: 900;
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 13px;
    color: #10B981;
    margin-bottom: 12px;
    background: rgba(16, 185, 129, 0.06);
    padding: 6px 14px;
    border-radius: 99px;
    border: 1px solid rgba(16, 185, 129, 0.12);
}

@keyframes stockPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.stock-status::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: stockPulse 2s infinite;
}

.tab-section {
    margin-top: 80px;
}

.tab-nav {
    display: flex;
    gap: 40px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 30px;
}

.tab-link {
    padding: 16px 0;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    font-family: var(--font-cond);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-link.active {
    color: var(--primary);
}

.tab-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--white);
    border-radius: 10px;
    font-size: 14px;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.spec-label {
    color: var(--text-muted);
    font-weight: 500;
}

.spec-value {
    color: var(--primary);
    font-weight: 700;
}

/* ── FOOTER ───────────────────────────────────────── */
#site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.6);
    padding: 100px 0 0;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 0.9fr 1.2fr;
    gap: 48px;
    padding-bottom: 80px;
}

.footer-logo {
    color: var(--white);
    font-family: var(--font-cond);
    font-size: 24px;
    font-weight: 800;
    display: block;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.footer-logo .accent {
    color: var(--accent);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-family: var(--font-cond);
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.8px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 6px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 99px;
    color: var(--white);
    flex: 1;
    font-size: 14px;
    font-family: var(--font-main);
    transition: all 0.2s ease;
}

.newsletter-form input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.newsletter-form button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 0 28px;
    border-radius: 99px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-cond);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    font-size: 13px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

/* ── MOBILE ───────────────────────────────────────── */
@media (max-width: 992px) {
    #desktop-nav, #search-wrapper {
        display: none;
    }
    
    #mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    #mobile-menu-btn span {
        display: block;
        height: 2.5px;
        background: var(--primary);
        border-radius: 3px;
        transition: 0.3s;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .spec-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-checklist-new {
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-checklist-new {
        justify-content: center;
    }
    #hero {
        padding: 100px 0 60px;
    }
}

/* ── HOMEPAGE PREMIUM CATEGORY GRID ──────────────── */
.category-grid-premium {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.cat-card-new {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow);
}

.cat-card-new:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11,15,23,0.06);
}

.cat-img-box {
    width: 100%;
    aspect-ratio: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
}

.cat-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.cat-title {
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
    line-height: 1.3;
    font-family: var(--font-cond);
    text-transform: uppercase;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .category-grid-premium { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .category-grid-premium { grid-template-columns: repeat(2, 1fr); }
}

/* ── NEW USP BAR (HACKGERAET STYLE) ────────────────── */
.usp-bar-new {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.usp-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.usp-item-new {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    border-right: none;
}

.usp-item-new i {
    font-size: 28px;
    color: var(--accent);
    background: rgba(255, 72, 0, 0.05);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-item-new .text h4 {
    font-family: var(--font-cond);
    font-size: 18px;
    color: var(--primary);
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.usp-item-new .text p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 4px 0 0;
}

@media (max-width: 992px) {
    .usp-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .usp-grid-new {
        grid-template-columns: 1fr;
    }
    .usp-item-new {
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
    }
    .usp-item-new:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* ── HERO CHECKLIST ───────────────────────────────── */
.hero-btns, .hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 15px;
}

.hero-checklist-new {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
}

.hero-checklist-item i {
    color: var(--accent);
    font-size: 16px;
}

/* ── HOW IT WORKS ─────────────────────────────────── */
#how-it-works {
    padding: 100px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.step-item {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 20px;
    padding: 50px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(11, 15, 23, 0.05);
    border-color: var(--accent);
}

.step-num {
    width: 52px;
    height: 52px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-cond);
    margin: 0 auto 28px;
    box-shadow: 0 8px 20px rgba(255, 72, 0, 0.2);
}

.step-item h4 {
    font-family: var(--font-cond);
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

.step-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
