:root {
    --oev-lime: #D2E056; /* A logó zöldje */
    --oev-black: #111111;
    --bg-body: #f4f4f5;
    --bg-white: #ffffff;
    --text-dark: #111111;
    --text-muted: #6e6e73;
    --border: #eaeaea;
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 40px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: var(--bg-body); color: var(--text-dark); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
body.modal-open { overflow: hidden; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }

/* --- Gombok és Címkék --- */
.pill-btn {
    background: var(--bg-white); color: var(--text-dark);
    padding: 10px 16px 10px 24px; border-radius: 50px;
    display: inline-flex; align-items: center; gap: 12px;
    text-decoration: none; font-weight: 600; font-size: 14px;
    border: none; cursor: pointer; transition: var(--transition);
}
.pill-btn:hover { background: var(--oev-lime); }
.pill-btn.dark { background: var(--oev-black); color: var(--bg-white); }
.pill-btn.dark:hover { background: var(--oev-lime); color: var(--oev-black); }
.hero-cta .pill-btn.dark { background: var(--oev-lime); color: var(--oev-black); }
.hero-cta .pill-btn.dark .icon-circle { background: var(--text-dark); color: var(--bg-white); }
.hero-cta .pill-btn.dark:hover { background: #bccf4a; color: var(--oev-black); }
.hero-cta .pill-btn.dark:hover .icon-circle { background: var(--text-dark); color: var(--bg-white); }

.icon-circle {
    background: var(--text-dark); color: var(--bg-white);
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; font-size: 12px;
    transition: var(--transition);
}
.pill-btn.dark .icon-circle { background: var(--bg-white); color: var(--oev-black); }

.tag-badge {
    background: var(--bg-white); color: var(--text-dark);
    padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 800;
    display: inline-block; margin-bottom: 16px; border: 1px solid var(--border);
    text-transform: uppercase; letter-spacing: 1px;
}

/* --- Navigáció --- */
.hero-wrapper { padding: 20px; }
.hero-inner {
    border-radius: var(--radius-lg); position: relative; overflow: hidden;
    background-color: #0f131a;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../hero.webp');
    height: 85vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
@media (min-width: 768px) {
    .hero-inner {
        background-image: url('../hero-placeholder.webp');
    }
}
@media (max-width: 767px) {
    .hero-video {
        display: none;
    }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.62));
    z-index: 2;
}

nav {
    position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
    width: 95%; max-width: 1300px; z-index: 4;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.05); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    padding: 12px 24px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.1);
}

/* Pontos logó másolat */
.logo { font-weight: 800; font-size: 24px; display: flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; letter-spacing: -1px; }
.logo-icon { background: var(--oev-lime); color: var(--oev-black); width: 36px; height: 36px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 18px; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--oev-lime); }
.nav-links a.active { color: var(--oev-lime); font-weight: 700; }

.nav-icons {
    display: flex;
    gap: 10px;
    color: #fff;
    align-items: center;
}
.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    padding: 0 12px;
}
.lang-switcher i {
    font-size: 14px;
    color: rgba(255,255,255,0.92);
}
.lang-switcher select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    padding: 0 18px 0 0;
    cursor: pointer;
}
.lang-switcher select option {
    color: #111;
    background: #fff;
}
.lang-switcher::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: rgba(255,255,255,0.92);
    pointer-events: none;
}
.nav-icon-btn {
    color: inherit;
    text-decoration: none;
    width: 36px;
    height: 36px;
    position: relative;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.nav-icon-btn i { font-size: 14px; }
.nav-icon-btn:hover {
    background: var(--oev-lime);
    color: var(--oev-black);
    border-color: transparent;
}
.nav-icon-btn.has-items {
    background: var(--oev-lime);
    color: var(--oev-black);
    border-color: transparent;
}
.nav-icon-btn.has-items:hover { background: #bccf4a; }
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.85);
    font-size: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 4px;
}
.cart-count.is-empty { display: none; }
.sticky-cart {
    position: fixed;
    right: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    width: auto;
    height: 44px;
    padding: 0 12px;
    gap: 8px;
    border-radius: 999px;
    justify-content: center;
    color: #fff;
    border-color: rgba(255,255,255,0.28);
    background: rgba(18,22,28,0.55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1100;
    box-shadow: 0 14px 30px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(14px) scale(0.92);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.sticky-cart i { font-size: 14px; }
.sticky-cart-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1;
    white-space: nowrap;
}
.sticky-cart .cart-count {
    top: -6px;
    right: -6px;
}
.cart-count.is-empty { display: none; }
.sticky-cart.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.mobile-menu-btn:hover { background: var(--oev-lime); color: var(--oev-black); }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-menu-inner {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 28px;
}
.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.mobile-menu-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}
.mobile-menu-close:hover { background: var(--oev-lime); color: var(--oev-black); }
.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: auto 0;
}
.mobile-menu-links a {
    display: block;
    color: #f3f3f3;
    text-decoration: none;
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.15;
}
.mobile-menu-links a:hover { color: var(--oev-lime); }
.mobile-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    padding: 8px 14px;
    color: #fff;
    margin-bottom: 14px;
}
.mobile-lang-switcher i { font-size: 14px; }
.mobile-lang-switcher select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding-right: 14px;
}
.mobile-lang-switcher select option {
    color: #111;
    background: #fff;
}
.mobile-menu-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.mobile-menu-controls .mobile-lang-switcher {
    margin-bottom: 0;
    min-height: 42px;
    padding: 0 14px;
}
.mobile-menu-controls .nav-icon-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.16);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    flex-shrink: 0;
}
.mobile-menu-controls .nav-icon-btn i { font-size: 14px; }
.mobile-menu-controls .nav-icon-btn:hover {
    background: var(--oev-lime);
    color: var(--oev-black);
    border-color: transparent;
}
.mobile-menu-controls .nav-icon-btn.has-label {
    width: auto;
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    gap: 8px;
}
.mobile-menu-controls .nav-icon-btn.has-label .nav-icon-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
.mobile-menu-foot {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    line-height: 1.45;
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-top: 14px;
    margin-top: 16px;
}
.mobile-menu-foot a {
    color: #fff;
    text-decoration: none;
}

/* --- Hero Tartalom --- */
.hero-content { text-align: center; color: white; width: 90%; max-width: 980px; margin-top: 50px; position: relative; z-index: 3; }
.hero-content h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -1.5px; line-height: 1.1; }
.hero-pill-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.hero-mini-pill {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    backdrop-filter: blur(10px);
}
.hero-content p { font-size: 17px; font-weight: 400; opacity: 0.9; margin: 0 auto 30px; max-width: 760px; }
.hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-search-form {
    width: min(560px, 100%);
    background: rgba(255,255,255,0.92);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 10px 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.hero-search-form input {
    flex: 1;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
.hero-search-form input::placeholder { color: #5f6670; opacity: 1; }
.hero-search-form button {
    border: 0;
    cursor: pointer;
}
.hero-search-form .icon-circle:hover {
    background: var(--oev-lime);
    color: var(--oev-black);
}
.hero-search-feedback {
    font-size: 13px;
    font-weight: 600;
    min-height: 18px;
    color: rgba(255,255,255,0.9);
    margin-top: -8px;
    margin-bottom: 10px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.hero-data-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 190px));
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
}
.hero-data-chip {
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 12px;
    text-align: left;
    backdrop-filter: blur(8px);
}
.hero-data-chip small { display: block; font-size: 11px; letter-spacing: 0.7px; text-transform: uppercase; opacity: 0.75; margin-bottom: 4px; }
.hero-data-chip strong { font-size: 14px; font-weight: 600; }

/* --- Márka ticker a hero alatt --- */
.brand-marquee {
    padding: 10px 0 18px;
    border-top: 1px solid #e7e8ec;
    border-bottom: 1px solid #e7e8ec;
    background: linear-gradient(180deg, #f5f5f7 0%, #f0f1f3 100%);
}
.brand-marquee-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #9aa0a9;
    margin-bottom: 6px;
}
.brand-marquee-viewport {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 10%, black 90%, transparent 100%);
}
.brand-marquee-track {
    display: flex;
    width: max-content;
    gap: 22px;
    animation: brand-scroll 52s linear infinite;
}
.brand-marquee-group {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 6px 0;
}
.brand-marquee-group::after {
    content: "•";
    margin-left: 22px;
    color: #b9bec6;
    flex: 0 0 auto;
}
.brand-marquee-item {
    color: #838892;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.brand-marquee-item::after {
    content: "•";
    margin-left: 22px;
    color: #b9bec6;
}
.brand-marquee-group .brand-marquee-item:last-child::after { content: ""; margin-left: 0; }
@keyframes brand-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Kategóriák (Lekerekített dobozok) --- */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: -40px; position: relative; z-index: 10; padding: 0 40px;}
.categories-section { padding: 56px 0 36px; }
.categories-section + #products { padding-top: 36px; }
.cat-card { background: var(--bg-white); padding: 30px; border-radius: var(--radius-md); text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition); cursor: pointer; color: inherit; display: block; text-decoration: none; position: relative; }
.cat-card::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 12px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: rgba(210,224,86,0.36);
    filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.82);
}
.cat-card:hover { transform: translateY(-10px); }
.cat-card:focus-visible { outline: 3px solid var(--oev-lime); outline-offset: 4px; }
.cat-card:hover::before,
.cat-card:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}
.cat-card i {
    position: relative;
    z-index: 1;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: filter 0.35s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-card-icon {
    position: relative;
    z-index: 1;
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
    margin: 0 auto 15px;
    transition: filter 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-card:hover i,
.cat-card:focus-visible i {
    filter: drop-shadow(0 0 8px rgba(210,224,86,0.92)) drop-shadow(0 0 22px rgba(210,224,86,0.72));
    text-shadow: 0 0 20px rgba(210,224,86,0.9), 0 0 52px rgba(210,224,86,0.5);
}
.cat-card:hover .cat-card-icon,
.cat-card:focus-visible .cat-card-icon {
    filter: drop-shadow(0 0 8px rgba(210,224,86,0.95)) drop-shadow(0 0 24px rgba(210,224,86,0.72)) drop-shadow(0 0 52px rgba(210,224,86,0.42));
}
.cat-card h3 { font-size: 16px; font-weight: 600; }
.cat-card p { color: var(--text-muted); font-size: 14px; margin-top: 10px; line-height: 1.45; }
/* --- Fejléc globál (Szekciókhoz) --- */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; }
.section-header a { color: var(--text-dark); text-decoration: none; font-weight: 600; border-bottom: 2px solid var(--oev-lime); padding-bottom: 2px; }
.section-sub { color: var(--text-muted); max-width: 680px; margin-top: 10px; line-height: 1.55; }

/* --- Folyamat blokk --- */
.process-section {
    position: relative;
    border-radius: 34px;
    padding: 44px;
    background:
        radial-gradient(120% 130% at 0% 0%, rgba(210,224,86,0.34) 0%, rgba(210,224,86,0.08) 36%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,0.96) 100%);
    border: 1px solid rgba(17,17,17,0.06);
    box-shadow: 0 28px 80px rgba(17,17,17,0.08);
    overflow: hidden;
}
.process-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    right: -180px;
    top: -170px;
    background: radial-gradient(circle, rgba(17,17,17,0.08) 0%, rgba(17,17,17,0) 72%);
    pointer-events: none;
}
.process-section .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
}
.process-shell {
    position: relative;
    z-index: 2;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    position: relative;
}
.process-grid::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 39px;
    height: 1px;
    background: linear-gradient(90deg, rgba(17,17,17,0.1), rgba(17,17,17,0.32), rgba(17,17,17,0.1));
    z-index: 0;
}
.process-card {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.95);
    border-radius: 22px;
    padding: 24px 18px 20px;
    min-height: 214px;
    box-shadow: 0 14px 34px rgba(15,15,15,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-card::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(210,224,86,0.95), rgba(210,224,86,0.45));
}
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(15,15,15,0.12);
}
.process-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.process-step {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #2b2b2e, #111111);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.4px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.2);
}
.process-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(210,224,86,0.3);
    border: 1px solid rgba(128,136,58,0.22);
    color: #2f3320;
    font-size: 14px;
}
.process-card h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.3; letter-spacing: -0.2px; }
.process-card p { color: #5f6369; font-size: 14px; line-height: 1.55; }

/* --- Kiemelt Termékek --- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card { background: var(--bg-white); border-radius: var(--radius-md); padding: 20px; transition: var(--transition); position: relative; cursor: pointer; }
.product-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.06); transform: scale(1.02); }
.product-card-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 5;
    border-radius: inherit;
}
.product-card-link:focus-visible {
    outline: 2px solid var(--oev-lime);
    outline-offset: -2px;
}
.product-img { width: 100%; height: 240px; background: #f0f0f1; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 20px; position: relative; }
.product-img:not(.is-placeholder)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg, #eceef1 0%, #f8f8f9 46%, #e4e7ea 100%);
    background-size: 220% 100%;
    animation: productImageLoading 1.15s ease-in-out infinite;
    opacity: 1;
    transition: opacity 180ms ease;
}
.product-img.is-loaded::before {
    opacity: 0;
    pointer-events: none;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; position: relative; z-index: 2; }
.product-img img:not(.product-placeholder-logo) {
    opacity: 0;
    transition: opacity 180ms ease;
}
.product-img.is-loaded img:not(.product-placeholder-logo) {
    opacity: 1;
}
@keyframes productImageLoading {
    0% { background-position: 120% 0; }
    100% { background-position: -120% 0; }
}
.product-img.is-placeholder,
.product-modal-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f2f2f3 0%, #e7e7e9 100%);
}
.product-img .product-placeholder-logo,
.product-modal-placeholder .product-placeholder-logo {
    width: min(42%, 150px);
    max-width: 150px;
    height: auto;
    max-height: 44px;
    filter: grayscale(1) brightness(0.72) contrast(0.9);
    opacity: 0.42;
    object-fit: contain;
}
.badge-tag { position: absolute; top: 28px; left: 28px; z-index: 3; background: var(--oev-lime); color: var(--oev-black); padding: 6px 14px; border-radius: 50px; font-size: 11px; font-weight: 800; box-shadow: 0 8px 18px rgba(17,17,17,0.14); }
.badge-tag.out-of-stock { background: var(--oev-black); color: #fff; }
.product-info h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    min-height: calc(1.18em * 2);
    margin-bottom: 8px;
}
.part-number-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4f5662;
}
.part-number-line span {
    flex: 0 0 auto;
    white-space: nowrap;
}
.part-number-line strong {
    display: block;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    min-height: 22px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #eef1f5;
    color: #1a1d23;
    font-size: 12px;
    line-height: 1.08;
    letter-spacing: 0.4px;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}
.product-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.price {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 800;
    line-height: 1.08;
    white-space: nowrap;
}
.add-btn { flex: 0 0 auto; background: var(--text-dark); color: #fff; width: 45px; height: 45px; border-radius: 50%; border: none; cursor: pointer; transition: var(--transition); font-size: 16px; position: relative; z-index: 6; }
.add-btn:hover { background: var(--oev-lime); color: var(--oev-black); transform: scale(1.05); }
.product-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(8, 10, 14, 0.52);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}
.product-modal-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.product-modal {
    width: min(520px, 100%);
    background: var(--bg-white);
    border: 1px solid rgba(17,17,17,0.08);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0,0,0,0.26);
    padding: 18px 18px 20px;
    position: relative;
    max-height: calc(100dvh - 40px);
    overflow: auto;
}
.product-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #f3f4f7;
    color: #1b1d22;
    cursor: pointer;
    transition: var(--transition);
}
.product-modal-close:hover {
    background: var(--oev-black);
    color: #fff;
    border-color: var(--oev-black);
}
.product-modal-content { padding: 8px 8px 0; }
.product-modal-title {
    font-size: clamp(1.7rem, 3.8vw, 2.25rem);
    letter-spacing: -1px;
    line-height: 1.06;
    margin: 4px 34px 8px 0;
}
.product-modal-part-number {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    background: #eef1f5;
    color: #1a1d23;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.product-modal-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 14px;
}
.product-modal-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    background: #f5f6f8;
    border: 1px solid rgba(17,17,17,0.06);
    margin-bottom: 14px;
    aspect-ratio: 4 / 3;
}
.product-modal-image-wrap.has-image {
    cursor: zoom-in;
}
.product-modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f6f8;
    display: block;
}
.product-modal-placeholder {
    width: 100%;
    height: 100%;
}
.product-modal-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.product-modal-thumb {
    border: 1px solid rgba(17,17,17,0.1);
    border-radius: 12px;
    background: #fff;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 4 / 3;
}
.product-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-modal-thumb:hover {
    border-color: rgba(17,17,17,0.24);
}
.product-modal-thumb.is-active {
    border-color: var(--oev-lime);
    box-shadow: 0 0 0 2px rgba(210,224,86,0.35);
}
.product-modal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.product-modal-price {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.3px;
}
.product-modal-add-btn {
    border: 0;
    border-radius: 999px;
    background: var(--oev-black);
    color: #fff;
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.product-modal-add-btn:hover {
    background: var(--oev-lime);
    color: var(--oev-black);
}
.product-modal-add-btn i { font-size: 13px; }
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(12,12,14,0.92);
    padding: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.gallery-lightbox.open {
    display: flex;
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    background: rgba(255,255,255,0.24);
}
.gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
}
.gallery-lightbox-stage {
    width: min(1100px, calc(100vw - 176px));
    max-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.gallery-lightbox-image {
    width: 100%;
    max-height: calc(100vh - 80px);
    object-fit: contain;
    display: block;
}
.gallery-lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    min-width: 68px;
    text-align: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17,17,17,0.62);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
}
.cart-toast {
    position: fixed;
    left: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    z-index: 1600;
    max-width: min(520px, calc(100vw - 40px));
    min-height: 44px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 16px 36px rgba(0,0,0,0.28);
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.cart-toast i { color: var(--oev-lime); font-size: 14px; }
.cart-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- Tech kategóriák --- */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tech-grid .cat-card { text-align: left; cursor: pointer; }
.tech-grid .cat-card i { color: var(--oev-black); font-size: 28px; }
.tech-grid .cat-card-icon {
    width: 28px;
    height: 28px;
    margin: 0 0 15px;
}
.tech-grid .cat-card:hover { transform: translateY(-6px); box-shadow: 0 18px 42px rgba(0,0,0,0.08); }

/* --- Partnerek blokk --- */
.partners-section {
    background: var(--text-dark);
    border-radius: var(--radius-lg);
    width: calc(100% - 40px);
    max-width: 1300px;
    margin: 40px auto;
    padding: 56px 46px;
    color: #fff;
    overflow: hidden;
    position: relative;
}
.partners-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    top: -230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(210,224,86,0.26) 0%, rgba(210,224,86,0) 70%);
    pointer-events: none;
}
.partners-head {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}
.partners-tag {
    background: rgba(210,224,86,0.16);
    color: var(--oev-lime);
    border: 1px solid rgba(210,224,86,0.38);
    margin-bottom: 14px;
}
.partners-head h2 {
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: -0.9px;
    margin-bottom: 10px;
}
.partners-head p {
    color: rgba(255,255,255,0.76);
    font-size: 17px;
    line-height: 1.45;
}
.partners-logos {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}
.partner-logo {
    min-height: 70px;
    padding: 16px 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.36);
    color: #edf0f5;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    font-size: 12px;
    transition: var(--transition);
}
.partner-logo i {
    color: var(--oev-lime);
    font-size: 15px;
}
.partner-logo:hover {
    transform: translateY(-3px);
    border-color: rgba(210,224,86,0.38);
    background: rgba(255,255,255,0.26);
}
.partner-logo-image {
    background: rgba(255,255,255,0.32);
    border-color: rgba(255,255,255,0.52);
}
.partner-logo-image img {
    display: block;
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}
/* --- Footer --- */
footer { padding: 60px 20px 40px; }
.footer-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 60px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); display: flex; justify-content: space-between; }
.footer-logo-col p { color: var(--text-muted); font-size: 14px; margin-top: 15px; max-width: 250px; }
.footer-links { display: flex; gap: 80px; }
.footer-col h5 { font-size: 16px; font-weight: 800; margin-bottom: 20px; color: var(--text-dark); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--oev-lime); }
.footer-bottom { text-align: center; margin-top: 40px; color: #aaa; font-size: 13px; font-weight: 500; }

@media (max-width: 900px) {
    section { padding: 56px 0; }
    .container { padding: 0 16px; }
    .hero-wrapper { padding: 0; }
    .hero-inner {
        min-height: 90svh;
        height: auto;
        border-radius: 0 0 28px 28px;
    }
    nav {
        top: 12px;
        width: calc(100% - 20px);
        padding: 10px 14px;
        border-radius: 40px;
    }
    .logo { font-size: 20px; }
    .logo-icon { width: 32px; height: 32px; font-size: 16px; }
    .nav-links, .nav-icons { display: none; }
    .mobile-menu-btn { display: inline-flex; }
    .hero-content { margin-top: 86px; width: 94%; }
    .hero-content h1 { font-size: clamp(2rem, 9vw, 3.1rem); }
    .hero-content p { font-size: 15px; margin-bottom: 24px; }
    .hero-data-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 460px;
    }
    .hero-data-grid .hero-data-chip:nth-child(3) { display: none; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-search-form { width: 100%; }
    .hero-search-form input {
        font-size: 16px;
        transform: scale(0.84);
        transform-origin: left center;
        width: calc(100% / 0.84);
    }
    .brand-marquee-label { font-size: 10px; margin-bottom: 4px; }
    .brand-marquee-group { gap: 16px; padding: 6px 0; }
    .brand-marquee-item { font-size: 12px; }
    .brand-marquee-item::after { margin-left: 16px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
    .section-header h2 { font-size: clamp(1.8rem, 7vw, 2.25rem); }
    .section-sub { margin-top: 0; }
    .categories-section { padding-bottom: 28px; }
    .categories-section + #products { padding-top: 28px; }
    .categories-grid { grid-template-columns: 1fr 1fr; margin-top: 20px; padding: 0; }
    .process-grid, .product-grid, .tech-grid, .footer-card { grid-template-columns: 1fr; }
    .part-number-line {
        margin-bottom: 8px;
        font-size: 10px;
        gap: 6px;
    }
    .part-number-line strong {
        min-height: 20px;
        padding: 0 8px;
        font-size: 11px;
    }
    .product-modal-overlay { padding: 12px; }
    .product-modal { border-radius: 24px; }
    .product-modal-price { font-size: 21px; }
    .gallery-lightbox {
        padding: 12px;
        gap: 8px;
    }
    .gallery-lightbox-stage {
        width: min(100%, calc(100vw - 88px));
        max-height: calc(100vh - 120px);
    }
    .gallery-lightbox-image {
        max-height: calc(100vh - 120px);
    }
    .gallery-lightbox-close,
    .gallery-lightbox-nav {
        width: 42px;
        height: 42px;
    }
    .cart-toast {
        left: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        max-width: calc(100vw - 24px);
    }
    .process-section {
        padding: 30px 18px;
        border-radius: 24px;
    }
    .process-section .section-header { margin-bottom: 20px; }
    .process-grid {
        gap: 12px;
    }
    .process-grid::before { display: none; }
    .process-card {
        min-height: auto;
        padding: 22px 16px 18px;
    }
    .process-head { margin-bottom: 12px; }
    .process-step {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 14px;
    }
    .process-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }
    .footer-card { flex-direction: column; gap: 26px; padding: 36px 22px; }
    .footer-logo-col p { max-width: none; }
    .footer-links { flex-direction: column; gap: 40px; margin-top: 40px; }
    .partners-section {
        padding: 38px 20px;
        width: calc(100% - 40px);
        margin: 20px auto;
        border-radius: 28px;
    }
    .partners-head { margin-bottom: 18px; }
    .partners-head p { font-size: 15px; }
    .partners-logos { grid-template-columns: 1fr 1fr; }
    .partner-logo {
        min-height: 58px;
        padding: 12px;
        border-radius: 12px;
        font-size: 11px;
    }
}
@media (max-width: 560px) {
    .hero-mini-pill { font-size: 11px; padding: 6px 11px; }
    .hero-data-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
    .hero-search-form { padding: 8px 8px 8px 14px; }
    .brand-marquee { padding: 8px 0 14px; }
    .brand-marquee-item { font-size: 11px; }
    .process-section {
        padding: 24px 14px;
        border-radius: 20px;
    }
    .product-modal-title { font-size: 1.55rem; }
    .product-modal-part-number { min-height: 26px; font-size: 11px; }
    .product-modal-desc { font-size: 14px; }
    .product-modal-row { align-items: stretch; flex-direction: column; }
    .product-modal-add-btn { width: 100%; justify-content: center; }
    .partners-logos { grid-template-columns: 1fr; }
}
