/*
   Void Acoustic Theme
   Hero: full-screen background, particle field, gradient headline
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ---- Particle pulse animation ---- */
@keyframes particlePulse {
    from { opacity: 0.2; transform: scale(0.8); }
    to   { opacity: 0.8; transform: scale(1.3); }
}

/* ---- Scroll reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


:root {
    --fuchsia: #bf0d3e;
    --fuchsia-light: rgba(191, 13, 62, 0.22);
    --violet: #8b0a2a;
    --cyan: #22d3ee;
    --cyan-light: rgba(34, 211, 238, 0.18);
    --white-10: rgba(255,255,255,0.10);
    --white-5: rgba(255,255,255,0.05);
    --white-3: rgba(255,255,255,0.03);
    --bg-dark: #0a0a0a;
    --bg-neutral: #0d0d12;
    --radius-card: 2rem;
    --font-body: 'Manrope', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: #fff;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

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

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

.font-heading {
    font-family: var(--font-heading);
}

/* ---------- Container ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(0,0,0,0.70);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-10);
    color: #fff;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.nav-logo-icon {
    display: inline-flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: linear-gradient(135deg, #bf0d3e, #7a0826);
    box-shadow: 0 0 30px rgba(191,13,62,0.45);
    flex-shrink: 0;
}

.nav-logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
    fill: currentColor;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.80);
}

.nav-links a {
    color: rgba(255,255,255,0.80);
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover { color: var(--fuchsia); }
.nav-links a.nav-cyan:hover { color: var(--cyan); }

/* Aktív nav link — desktop */
.nav-links a.nav-active {
    color: #fff;
    font-weight: 600;
}
.nav-links a.nav-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--fuchsia);
    box-shadow: 0 0 8px rgba(191,13,62,.6);
}

.nav-links .nav-badge {
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.4rem 1rem;
    color: rgba(255,255,255,0.4);
    cursor: default;
    font-size: 0.75rem;
}

/* Search button in nav */
.nav-search-wrap { display: flex; align-items: center; }
.nav-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 9999px;
    padding: 0.4rem 0.75rem;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.2s;
}
.nav-search-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.nav-search-btn-mobile { display: none; }

/* Search overlay */
.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(14px);
    align-items: center;
    justify-content: center;
    animation: searchFadeIn 0.18s ease;
}
.search-overlay.open { display: flex; }

@keyframes searchFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.search-modal {
    width: 100%;
    max-width: 660px;
    background: rgba(10,10,20,0.95);
    border: 1px solid rgba(34,211,238,0.25);
    border-radius: 1.5rem;
    box-shadow: 0 0 0 1px rgba(34,211,238,0.06), 0 30px 80px rgba(0,0,0,0.8), 0 0 60px rgba(34,211,238,0.06);
    margin: 0 1rem;
    overflow: hidden;
    animation: searchSlideIn 0.2s cubic-bezier(.22,.68,0,1.2);
}

@keyframes searchSlideIn {
    from { transform: translateY(-18px) scale(0.97); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.2rem 1.4rem;
    color: rgba(34,211,238,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.15rem;
    font-family: inherit;
    letter-spacing: 0.01em;
}
.search-input::placeholder { color: rgba(255,255,255,0.25); }

.search-close-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9999px;
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    font-size: 0.75rem;
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
}
.search-close-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }

.search-hint {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
    padding: 1rem 1.4rem;
    letter-spacing: 0.03em;
}

.search-results {
    display: flex;
    flex-direction: column;
    max-height: 55vh;
    overflow-y: auto;
    padding: 0.5rem 0.6rem 0.6rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 0.8rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: #fff;
    transition: background 0.15s;
}
.search-result-item:hover {
    background: rgba(34,211,238,0.07);
}
.search-result-item + .search-result-item {
    border-top: 1px solid rgba(255,255,255,0.04);
}

.search-result-img {
    width: 56px;
    height: 56px;
    border-radius: 0.6rem;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-img-placeholder { width: 100%; height: 100%; }

.search-result-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.01em;
}
.search-result-cat {
    font-size: 0.73rem;
    color: var(--cyan);
    margin-top: 0.2rem;
    opacity: 0.75;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.search-no-result {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
    padding: 1.2rem 1.4rem;
    text-align: center;
}

.search-hl {
    background: none;
    color: var(--cyan);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(34,211,238,0.8), 0 0 22px rgba(34,211,238,0.4);
}

@media (max-width: 767px) {
    .nav-search-btn:not(.nav-search-btn-mobile) { display: none; }
    .nav-search-btn-mobile { display: flex; }
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 9999px;
    border: 1px solid var(--white-10);
    padding: 0.55rem 0.65rem;
    background: transparent;
    cursor: pointer;
    transition: border-color .25s, background .25s;
}
.nav-toggle:hover {
    border-color: rgba(191,13,62,.45);
    background: rgba(191,13,62,.06);
}

.hb-bar {
    display: block;
    width: 20px;
    height: 1.8px;
    border-radius: 2px;
    background: #fff;
    transition: transform .32s cubic-bezier(.23,1,.32,1),
                opacity   .22s ease,
                width     .28s ease;
    transform-origin: center;
}

/* Open state */
.nav-toggle.open .hb-bar1 { transform: translateY(6.8px) rotate(45deg); }
.nav-toggle.open .hb-bar2 { opacity: 0; width: 0; }
.nav-toggle.open .hb-bar3 { transform: translateY(-6.8px) rotate(-45deg); }

/* Mobile panel */
.nav-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid var(--white-10);
    background: rgba(0,0,0,0.9);
    padding: 0 1.5rem;
    list-style: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.80);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}

.nav-panel.open {
    max-height: 400px;
    opacity: 1;
    padding: 1rem 1.5rem;
}

.nav-panel a {
    color: rgba(255,255,255,0.80);
}

.nav-panel a:hover { color: var(--fuchsia); }

/* Aktív nav link — mobil panel */
.nav-panel a.nav-active {
    color: #fff;
    font-weight: 600;
    padding-left: .6rem;
    border-left: 2px solid var(--fuchsia);
    box-shadow: inset 4px 0 12px rgba(191,13,62,.15);
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
}

/* ============================================================
   CONTENT WRAPPER
   ============================================================ */
.content {
    min-height: 60vh;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.page-leaving .content,
.page-leaving header,
.page-leaving footer {
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.page-entering .content,
.page-entering header,
.page-entering footer {
    opacity: 0;
    transform: translateY(12px);
}

/* page title for inner pages */
.page-title-bar {
    background: #0a0a0a;
    padding: 3rem 1.5rem 2rem;
    border-bottom: 1px solid var(--white-10);
}

.page-title-bar h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
}

.page-title-bar h1 span.dim {
    color: rgba(255,255,255,0.5);
}

/* ============================================================
   HERO SECTION — full-screen background image style
   ============================================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #0d0d1a;
    color: #fff;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

/* Background layer */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    display: block;
    animation: kenburns 20s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes kenburns {
    0%   { transform: scale(1)    translate(0%, 0%); }
    100% { transform: scale(1.12) translate(-2%, -1.5%); }
}

@keyframes skeleton-shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.70));
}

/* Particle layer */
.particle-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Inner content */
.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
}

.hero-content {
    max-width: 56rem;
}

/* Badge pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.70);
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: var(--fuchsia);
    box-shadow: 0 0 14px rgba(232,121,249,0.9);
    flex-shrink: 0;
}

/* Headline */
.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 0.95;
    margin-bottom: 2rem;
}

.hero-heading span {
    display: block;
}

.hero-heading-gradient {
    display: block;
    background: linear-gradient(90deg, #e8426a, #bf0d3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sub-text */
.hero-sub {
    max-width: 42rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
}

/* CTA buttons row */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-cta { flex-direction: row; }
}

/* Stat cards */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 48rem;
}

@media (min-width: 640px) {
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

.hero-stat-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    padding: 1.25rem;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.hero-stat-value.fuchsia { color: var(--fuchsia); }
.hero-stat-value.cyan    { color: var(--cyan); }
.hero-stat-value.violet  { color: #e8607a; }

.hero-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.55);
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
    background: #0a0a12;
    color: #fff;
    padding: 6rem 1.5rem;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--cyan);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.1;
}

.section-title .dim {
    color: rgba(255,255,255,0.55);
}

.section-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.60);
    transition: color 0.2s;
}

.section-link:hover {
    color: var(--fuchsia);
}

/* Products grid */
.products-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    overflow: hidden;
    border-radius: var(--radius-card);
    border: 1px solid var(--white-10);
    background: var(--white-3);
    box-shadow: 0 0 50px rgba(0,0,0,0.3);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.product-card.cyan {
    border-color: rgba(34,211,238,0.14);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card.fuchsia:hover { border-color: rgba(191,13,62,0.30); box-shadow: 0 8px 28px rgba(0,0,0,0.45); }
.product-card.cyan:hover    { border-color: rgba(34,211,238,0.35); box-shadow: 0 0 20px rgba(34,211,238,0.12), 0 8px 28px rgba(0,0,0,0.45); }
.product-card.violet:hover  { border-color: rgba(191,13,62,0.25);  box-shadow: 0 8px 28px rgba(0,0,0,0.45); }
.product-card.white:hover   { border-color: rgba(255,255,255,0.18); box-shadow: 0 8px 28px rgba(0,0,0,0.45); }

.product-img-wrap {
    overflow: hidden;
    position: relative;
    background: #bababa;
    background: radial-gradient(circle, rgba(186,186,186,1) 0%, rgba(19,24,31,1) 100%);
}

.product-img-flags {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    z-index: 2;
}

.product-flag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    line-height: 1;
}

.product-flag.flag-featured {
    background: rgba(191,13,62,0.75);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

.product-flag.flag-new {
    background: rgba(16,185,129,0.8);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

.product-flag.flag-sale {
    background: rgba(234,88,12,0.85);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

.product-img-placeholder {
    width: 100%;
    height: 15rem;
    background: linear-gradient(135deg, rgba(191,13,62,0.15), rgba(0,0,0,0.3));
}

.product-img-wrap img {
    width: 100%;
    height: 15rem;
    object-fit: contain;
    padding: 1.2rem;
    transition: transform 0.7s;
}

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

.product-body {
    padding: 1.5rem;
}

.product-badge {
    display: inline-block;
    border-radius: 9999px;
    padding: 0.2rem 0.75rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.badge-fuchsia { border: 1px solid rgba(191,13,62,0.3); background: rgba(191,13,62,0.1); color: #e8426a; }
.badge-cyan    { border: 1px solid rgba(191,13,62,0.3); background: rgba(191,13,62,0.1); color: #e8426a; }
.badge-violet  { border: 1px solid rgba(191,13,62,0.2); background: rgba(191,13,62,0.08); color: #e8607a; }
.badge-white   { border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.75); }

.product-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 1rem 0 0.75rem;
    color: #fff;
}

.product-body p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fff;
    transition: color 0.2s;
}

.product-link.fuchsia:hover { color: var(--fuchsia); }
.product-link.cyan:hover    { color: #e8426a; }
.product-link.violet:hover  { color: #e8607a; }

.product-link svg {
    width: 1rem;
    height: 1rem;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-section {
    background: #000;
    color: #fff;
    padding: 6rem 1.5rem;
}

.news-section .section-label {
    color: var(--fuchsia);
}

.news-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    overflow: hidden;
    border-radius: var(--radius-card);
    border: 1px solid var(--white-10);
    background: var(--white-3);
}

.news-card img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.news-body {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.75rem;
}

.news-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
}

.news-card p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: color 0.2s;
}

.news-link.cyan { color: #67e8f9; }
.news-link.cyan:hover { color: #cffafe; }
.news-link.fuchsia { color: #e8426a; }
.news-link.fuchsia:hover { color: #e8426a; }

.news-link svg {
    width: 1rem;
    height: 1rem;
}

/* ============================================================
   CONTACT CTA BLOCK
   ============================================================ */
.cta-block {
    position: relative;
    overflow: hidden;
    border-radius: 2.5rem;
    border: 1px solid var(--white-10);
    background:
        radial-gradient(circle at center, rgba(191,13,62,0.22), transparent 25%),
        radial-gradient(circle at 70% 40%, rgba(34,211,238,0.18), transparent 22%),
        linear-gradient(135deg, rgba(10,10,10,0.95), rgba(24,24,27,0.98));
    padding: 2.5rem;
    margin-top: 5rem;
}

@media (min-width: 640px) {
    .cta-block { padding: 3.5rem; }
}

.cta-block-inner {
    position: relative;
    z-index: 1;
    max-width: 48rem;
}

.cta-block p.label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.cta-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-block h2 .dim {
    color: rgba(255,255,255,0.6);
}

.cta-block > .cta-block-inner > p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons { flex-direction: row; }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: linear-gradient(90deg, #bf0d3e, #7a0826);
    padding: 1rem 1.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;
    box-shadow: 0 0 40px rgba(191,13,62,0.38);
    transition: transform 0.2s;
}

.btn-primary:hover { transform: scale(1.02); color: #fff; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.15);
    background: var(--white-5);
    padding: 1rem 1.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.9);
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
    border-color: rgba(34,211,238,0.5);
    color: var(--cyan);
}

/* ============================================================
   PAGE CONTENT (inner pages)
   ============================================================ */
.inner-page {
    background: #0a0a12;
    min-height: 60vh;
    padding: 4rem 1.5rem 6rem;
}

.inner-page .container-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.inner-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--white-10);
    padding-bottom: 1rem;
}

.inner-page h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin: 2rem 0 1rem;
}

.inner-page h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.9);
    margin: 1.5rem 0 0.75rem;
}

.inner-page p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.97rem;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-page {
    background: #000;
    color: #fff;
    padding: 4rem 1.5rem 6rem;
}

.blog-page .container-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.blog-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.blog-cats {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.blog-cat-btn {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-cat-btn.active {
    background: linear-gradient(90deg, #bf0d3e, #8b0a2a);
    color: #fff;
}

.blog-cat-btn.inactive {
    background: var(--white-5);
    border: 1px solid var(--white-10);
    color: rgba(255,255,255,0.6);
}

.blog-cat-btn.inactive:hover {
    border-color: rgba(191,13,62,0.4);
    color: var(--fuchsia);
}

.blog-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
    overflow: hidden;
    border-radius: var(--radius-card);
    border: 1px solid var(--white-10);
    background: var(--white-3);
    transition: transform 0.25s, border-color 0.2s;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(191,13,62,0.3);
}

.blog-card-img {
    width: 100%;
    height: 13rem;
    object-fit: cover;
}

.blog-card-img-placeholder {
    width: 100%;
    height: 13rem;
    background: linear-gradient(135deg, rgba(191,13,62,0.4), rgba(34,211,238,0.3));
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-cats {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.blog-cat-tag {
    font-size: 0.7rem;
    padding: 0.15rem 0.6rem;
    background: rgba(191,13,62,0.15);
    color: #e8426a;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s;
}

.blog-cat-tag:hover { background: rgba(191,13,62,0.3); }

.blog-card-body h2 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.blog-card-body h2 a {
    color: #fff;
}

.blog-card-body h2 a:hover { color: var(--fuchsia); }

.blog-card-body p {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    line-height: 1.7;
}

.blog-read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.2s;
}

.blog-read-more:hover { color: #cffafe; }

.blog-empty {
    color: rgba(255,255,255,0.45);
    padding: 3rem 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s;
}

.pagination a.active {
    background: linear-gradient(90deg, #bf0d3e, #8b0a2a);
    color: #fff;
}

.pagination a.inactive {
    background: var(--white-5);
    border: 1px solid var(--white-10);
    color: rgba(255,255,255,0.6);
}

.pagination a.inactive:hover {
    border-color: rgba(191,13,62,0.4);
    color: var(--fuchsia);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    border-top: 1px solid var(--white-10);
    background: #0a0a0a;
    color: #fff;
    padding: 4rem 1.5rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1280px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand-desc {
    margin-top: 1.25rem;
    max-width: 22rem;
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.60);
}

.footer-contact {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-contact-title {
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

a.footer-contact-row:hover {
    color: var(--cyan);
}

.footer-contact-row svg {
    opacity: 0.5;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

a.footer-contact-row:hover svg {
    opacity: 1;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.60);
}

.footer-links a {
    color: rgba(255,255,255,0.60);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--fuchsia); }

.footer-links li { color: rgba(255,255,255,0.60); }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--white-10);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid var(--white-10);
    background: var(--white-5);
    color: rgba(255,255,255,0.7);
    transition: border-color 0.2s, color 0.2s;
}

.social-btn svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.social-btn:hover {
    border-color: rgba(191,13,62,0.4);
    color: #e8426a;
}

.social-btn.cyan:hover {
    border-color: rgba(34,211,238,0.4);
    color: var(--cyan);
}

.footer-copy {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

@media (min-width: 640px) {
    .footer-copy { align-items: flex-end; }
}

.footer-copy a {
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}

.footer-copy a:hover { color: rgba(255,255,255,0.8); }

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 9998;
    width: calc(100% - 2rem);
    max-width: 720px;
    background: rgba(10,10,22,0.96);
    border: 1px solid rgba(34,211,238,0.2);
    border-radius: 1.2rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 40px rgba(34,211,238,0.05);
    backdrop-filter: blur(12px);
    transition: transform 0.5s cubic-bezier(.22,.68,0,1.1), opacity 0.5s;
    opacity: 0;
}
.cookie-banner-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
}
.cookie-text {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex: 1;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    min-width: 200px;
}
.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.cookie-btn-accept {
    background: var(--cyan);
    color: #000;
}
.cookie-btn-accept:hover { background: #67e8f9; }
.cookie-btn-decline {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn-decline:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.12); }

@media (max-width: 500px) {
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.cms-gallery-masonry {
    columns: 3 220px;
    column-gap: 12px;
    margin: 2rem 0;
}

.cms-gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    position: relative;
    border: 1px solid var(--white-10);
    background: var(--white-3);
}

.cms-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.cms-gallery-item:hover {
    border-color: rgba(255,255,255,0.18);
}

.cms-gallery-item:hover img {
    transform: scale(1.03);
}

/* ============================================================
   TERMÉK LISTA OLDAL
   ============================================================ */
.prod-list-section {
    background: #0a0a0a;
    color: #fff;
    padding: 4rem 0 6rem;
}

.prod-list-hero {
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--white-10);
    margin-bottom: 3rem;
}

.prod-list-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-top: 0.5rem;
}

/* Layout */
.prod-list-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .prod-list-layout {
        grid-template-columns: 240px 1fr;
    }
}

/* Sidebar */
.prod-sidebar-sticky {
    position: sticky;
    top: 5.5rem;
}

.prod-cat-item {
    margin-bottom: 0.1rem;
}

.prod-cat-item.depth-1 { padding-left: 1rem; }
.prod-cat-item.depth-2 { padding-left: 2rem; }

.prod-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.65rem;
    border-radius: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.prod-cat-link:hover {
    background: rgba(191,13,62,0.1);
    color: #e8426a;
}

.prod-cat-link.prod-cat-active {
    background: rgba(191,13,62,0.15);
    color: #e8426a;
    font-weight: 600;
}

.prod-cat-count {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.08);
    border-radius: 9999px;
    padding: 0.1rem 0.55rem;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
}

.prod-cat-children {
    margin-top: 0.1rem;
}

/* Product Grid */
.prod-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
    .prod-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Product Card */
.prod-card {
    border-radius: var(--radius-card);
    border: 1px solid var(--white-10);
    background: var(--white-3);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: block;
    transition: transform 0.25s, border-color 0.2s;
}

.prod-card:hover {
    transform: translateY(-5px);
    border-color: rgba(191,13,62,0.35);
}

.prod-card-img-wrap {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #bababa;
    background: radial-gradient(circle, rgba(186,186,186,1) 0%, rgba(19,24,31,1) 100%);
}

.prod-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

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

.prod-card-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(191,13,62,0.3), rgba(34,211,238,0.2));
}

.prod-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.prod-card-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.prod-card-cat {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    background: rgba(34,211,238,0.1);
    color: var(--cyan);
    border: 1px solid rgba(34,211,238,0.25);
}

.prod-card-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 0.5rem;
}

.prod-card-excerpt {
    font-size: 0.84rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.prod-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fuchsia);
    transition: gap 0.2s;
}

.prod-card:hover .prod-card-cta {
    gap: 0.65rem;
}

/* ============================================================
   TERMÉK KATALÓGUS (termekek.php)
   ============================================================ */
.catalog-section {
    background: #0a0a0a;
    color: #fff;
    min-height: 80vh;
    padding-bottom: 6rem;
}

/* Hero sáv */
.catalog-hero {
    padding: 3.5rem 0 0;
    margin-bottom: 2.5rem;
}

.catalog-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-top: 0.4rem;
    line-height: 1.1;
}

.catalog-hero-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(34,211,238,0.35) 0%, rgba(255,255,255,0.06) 60%, transparent 100%);
    margin-top: 2rem;
}

/* Kategória filterek */
.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 2rem 0 2.5rem;
}

.catalog-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.2s;
}

.catalog-filter-btn:hover {
    border-color: rgba(191,13,62,0.45);
    color: #e8426a;
    background: rgba(191,13,62,0.06);
}

.catalog-filter-btn.active {
    border-color: rgba(191,13,62,0.55);
    background: rgba(191,13,62,0.1);
    color: #e8426a;
    font-weight: 600;
}

.catalog-filter-count {
    font-size: 0.72rem;
    background: rgba(255,255,255,0.1);
    border-radius: 9999px;
    padding: 0.05rem 0.45rem;
    color: rgba(255,255,255,0.4);
}

.catalog-filter-btn.active .catalog-filter-count {
    background: rgba(191,13,62,0.15);
    color: #e8426a;
}

.catalog-filters-mobile {
    display: none;
    padding: 1rem 0 1.5rem;
}

.catalog-filter-select {
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(34,211,238,0.35);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2322d3ee' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.catalog-filter-select option {
    background: #1a1a2e;
    color: #fff;
}

@media (max-width: 640px) {
    .catalog-filters { display: none; }
    .catalog-filters-mobile { display: block; }
}

.catalog-empty {
    color: rgba(255,255,255,0.35);
    padding: 4rem 0;
    font-size: 1rem;
}

/* Termék rács */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Catalog kártya */
.cat-card {
    display: flex;
    flex-direction: column;
    border-radius: 1.25rem;
    border: 1px solid rgba(34,211,238,0.16);
    background: rgba(255,255,255,0.03);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 0 24px rgba(34,211,238,0.08), 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.25s, border-color 0.2s, box-shadow 0.25s;
}

.cat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34,211,238,0.5);
    box-shadow: 0 0 52px rgba(34,211,238,0.2), 0 12px 36px rgba(0,0,0,0.45);
}

/* Kép blokk */
.cat-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #bababa;
    background: radial-gradient(circle, rgba(186,186,186,1) 0%, rgba(19,24,31,1) 100%);
}
.cat-card-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 2.5s ease-in-out 1 forwards;
    z-index: 2;
    transition: opacity 1s;
}
.cat-card-img-wrap.img-loaded::before { opacity: 0; pointer-events: none; }

.cat-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s, opacity 1s;
    opacity: 0;
}
.cat-card-img-wrap.img-loaded img { opacity: 1; }

.cat-card:hover .cat-card-img-wrap img {
    transform: scale(1.05);
}

.cat-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34,211,238,0.12), rgba(191,13,62,0.08));
}

/* Státusz badge-k */
.cat-card-flags {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    z-index: 2;
}

.cat-flag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
    backdrop-filter: blur(8px);
}

.cat-flag.sale {
    background: rgba(234,88,12,0.85);
    color: #fff;
    border: 1px solid rgba(255,120,50,0.5);
}

.cat-flag.featured {
    background: rgba(217,119,6,0.82);
    color: #fff;
    border: 1px solid rgba(255,170,50,0.4);
}

.cat-flag.isnew {
    background: rgba(191,13,62,0.18);
    color: #e8426a;
    border: 1px solid rgba(191,13,62,0.5);
}

/* Kategória chip a képen (jobb felső) */
.cat-card-cat-chip {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(191,13,62,0.45);
    color: #e8426a;
    backdrop-filter: blur(6px);
    z-index: 2;
}

/* Body */
.cat-card-body {
    padding: 1.25rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cat-card-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cat-card-excerpt {
    font-size: 0.83rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    margin-bottom: auto;
    padding-bottom: 1rem;
}

.cat-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cyan);
    margin-top: 0.75rem;
    transition: gap 0.2s;
}

.cat-card:hover .cat-card-cta { gap: 0.65rem; }

/* ============================================================
   TERMÉKLAP (PDP)
   ============================================================ */
.pdp-section {
    background: #0a0a0a;
    color: #fff;
    padding: 3rem 0 6rem;
}

/* Breadcrumb */
.pdp-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 2.5rem;
}

.pdp-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.pdp-breadcrumb a:hover { color: var(--fuchsia); }

.pdp-bc-sep { color: rgba(255,255,255,0.25); }

/* Fő sor */
.pdp-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

@media (min-width: 900px) {
    .pdp-main {
        grid-template-columns: 1fr 1fr;
    }
}

/* Képblokk */
.pdp-feat-img {
    border-radius: 1.5rem;
    overflow: hidden;
    background: #bababa;
    background: radial-gradient(circle, rgba(186,186,186,1) 0%, rgba(19,24,31,1) 100%);
    border: 1px solid var(--white-10);
    aspect-ratio: 4/3;
    position: relative;
}
.pdp-feat-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 2.5s ease-in-out 1 forwards;
    z-index: 2;
    transition: opacity 1s;
}
.pdp-feat-img.img-loaded::before { opacity: 0; pointer-events: none; }

.pdp-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.4s;
    cursor: zoom-in;
    opacity: 0;
}
.pdp-feat-img.img-loaded img { opacity: 1; }

/* Lightbox */
.pdp-lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10001;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
}
.pdp-lightbox.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-lb-inner {
    position: relative;
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.pdp-lb-img {
    max-width: 92vw;
    max-height: 92vh;
    border-radius: 1rem;
    background: radial-gradient(circle, rgb(186,186,186) 0%, rgb(19,24,31) 100%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    object-fit: contain;
    display: block;
}

.pdp-lb-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.pdp-lb-close:hover { background: rgba(255,255,255,0.18); }

.pdp-lb-prev,
.pdp-lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.pdp-lb-prev { left: 1.5rem; }
.pdp-lb-next { right: 1.5rem; }
.pdp-lb-prev:hover,
.pdp-lb-next:hover { background: rgba(34,211,238,0.18); border-color: rgba(34,211,238,0.4); }

.pdp-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(191,13,62,0.3), rgba(34,211,238,0.2));
}

.pdp-gallery-thumbs {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.pdp-thumb {
    width: 64px;
    height: 64px;
    border-radius: 0.6rem;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    background: none;
    transition: border-color 0.15s;
    flex-shrink: 0;
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdp-thumb.active,
.pdp-thumb:hover {
    border-color: var(--fuchsia);
}

/* Info */
.pdp-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pdp-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
}

.pdp-short-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.pdp-key-features {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-bottom: 1.75rem;
}
.pdp-key-features-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .88rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.72);
}
.pdp-key-features-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fuchsia);
    box-shadow: 0 0 6px var(--fuchsia);
    flex-shrink: 0;
}

.pdp-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Gyors spec előnézet */
.pdp-spec-preview {
    border: 1px solid var(--white-10);
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.pdp-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--white-10);
    gap: 1rem;
}

.pdp-spec-row:last-child { border-bottom: none; }

.pdp-spec-key {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.pdp-spec-val {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    text-align: right;
}

/* Tabs */
.pdp-tabs-section {
    border-top: 1px solid var(--white-10);
    padding-top: 3rem;
    margin-bottom: 4rem;
}

.pdp-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--white-10);
    margin-bottom: 2rem;
    overflow-x: auto;
}

.pdp-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.85rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.pdp-tab.active {
    color: #fff;
    border-bottom-color: var(--fuchsia);
}

.pdp-tab:hover:not(.active) {
    color: rgba(255,255,255,0.8);
}

.pdp-tab-content {
    display: none;
}

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

.pdp-desc-content {
    max-width: 72ch;
}

/* Specifikációk táblázat */
/* Specifikációk – szabad HTML tartalom */
.pdp-specs-html {
    color: rgba(255,255,255,0.8);
    font-size: .92rem;
    line-height: 1.7;
}
.pdp-specs-html table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 1rem;
    overflow: hidden;
}
.pdp-specs-html th,
.pdp-specs-html td {
    padding: .75rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--white-10);
}
.pdp-specs-html th {
    background: rgba(255,255,255,0.05);
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,0.5);
}
.pdp-specs-html tr:last-child td { border-bottom: none; }
.pdp-specs-html tr:hover td { background: rgba(255,255,255,0.02); }

.pdp-spec-group {
    margin-bottom: 2rem;
}

.pdp-spec-group-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.75rem;
}

.pdp-spec-table {
    border-radius: 1rem;
    border: 1px solid var(--white-10);
    overflow: hidden;
}

.pdp-spec-table-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--white-10);
    gap: 1.5rem;
    align-items: center;
    transition: background 0.15s;
}

.pdp-spec-table-row:last-child { border-bottom: none; }

.pdp-spec-table-row:hover {
    background: rgba(255,255,255,0.02);
}

.pdp-spec-table-key {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.pdp-spec-table-val {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Kapcsolódó */
.pdp-related {
    border-top: 1px solid var(--white-10);
    padding-top: 3rem;
}

/* ============================================================
   BLOG POST PAGE (single)
   ============================================================ */
.blog-post-section {
    background: #0a0a0a;
    color: #fff;
    padding: 4rem 0 6rem;
}

/* ── Hero ── */
.bps-hero {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 3rem 0 3rem;
    border-bottom: 1px solid var(--white-10);
    margin-bottom: 3.5rem;
}

@media (min-width: 900px) {
    .bps-hero {
        grid-template-columns: 1fr 1fr;
    }
}

.bps-hero-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 1.5rem;
    display: block;
}

.bps-hero-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(191,13,62,0.35), rgba(34,211,238,0.25));
}

.bps-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.bps-cat-badge {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border: 1px solid rgba(191,13,62,0.35);
    background: rgba(191,13,62,0.1);
    color: #e8426a;
    text-decoration: none;
    transition: background 0.2s;
}

.bps-cat-badge:hover {
    background: rgba(191,13,62,0.25);
}

.bps-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #fff;
}

.bps-excerpt {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.75rem;
}

.bps-author-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.bps-author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(191,13,62,0.5), rgba(34,211,238,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.bps-author-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}

.bps-author-name {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.bps-meta-sep {
    color: rgba(255,255,255,0.3);
}

/* ── Layout: tartalom + jobb sidebar ── */
.bps-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .bps-layout {
        grid-template-columns: 1fr 300px;
    }
}

/* ── Fő tartalom ── */
.blog-content {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.85;
}

.blog-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    margin: 2.5rem 0 1rem;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 2rem 0 0.75rem;
}

.blog-content p { margin-bottom: 1.25rem; }

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-content li { margin-bottom: 0.4rem; }

.blog-content blockquote {
    border-left: 3px solid var(--fuchsia);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    background: rgba(191,13,62,0.06);
    border-radius: 0 0.5rem 0.5rem 0;
}

.blog-content img {
    max-width: 100%;
    border-radius: 1rem;
    margin: 1.5rem 0;
}

.blog-content a {
    color: var(--cyan);
    text-decoration: none;
}

.blog-content a:hover {
    text-decoration: underline;
}

/* ── Megosztás ── */
.bps-share {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--white-10);
}

.bps-share-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.45);
}

.bps-share-btns {
    display: flex;
    gap: 0.75rem;
}

.bps-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.bps-share-btn:hover {
    border-color: rgba(191,13,62,0.5);
    color: #e8426a;
    background: rgba(191,13,62,0.08);
}

.bps-share-btn.copied {
    border-color: rgba(34,211,238,0.5);
    color: var(--cyan);
}

/* ── Sidebar ── */
.bps-sidebar-sticky {
    position: sticky;
    top: 5.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--white-10);
    border-radius: 1.25rem;
    padding: 1.5rem;
}

.sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1rem;
}

/* Search */
.sidebar-search-form {
    display: flex;
    gap: 0;
    border: 1px solid var(--white-10);
    border-radius: 0.75rem;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    transition: border-color 0.2s;
}

.sidebar-search-form:focus-within {
    border-color: rgba(191,13,62,0.45);
}

.sidebar-search-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.65rem 0.9rem;
    font-size: 0.88rem;
    color: #fff;
    font-family: var(--font-body);
}

.sidebar-search-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.sidebar-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.85rem;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: color 0.2s;
}

.sidebar-search-btn:hover { color: var(--fuchsia); }

/* Category list */
.sidebar-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sidebar-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.65rem;
    border-radius: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.sidebar-cat-link:hover {
    background: rgba(191,13,62,0.1);
    color: #e8426a;
}

.sidebar-cat-link svg {
    opacity: 0;
    transition: opacity 0.15s;
    flex-shrink: 0;
    color: var(--fuchsia);
}

.sidebar-cat-link:hover svg { opacity: 1; }

/* TOC list */
.sidebar-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.sidebar-toc-link {
    display: block;
    padding: 0.4rem 0.65rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-left: 2px solid transparent;
}

.sidebar-toc-link:hover {
    background: rgba(34,211,238,0.08);
    color: var(--cyan);
    border-left-color: var(--cyan);
}

.toc-sub .sidebar-toc-link {
    padding-left: 1.4rem;
    font-size: 0.82rem;
}

/* ── Kapcsolódó bejegyzések ── */
.bps-related {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--white-10);
}

.bps-related-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.85rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 2.5rem;
}

.bps-related-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .bps-related-grid { grid-template-columns: repeat(3, 1fr); }
}

.bps-related-card {
    border-radius: var(--radius-card);
    border: 1px solid var(--white-10);
    background: var(--white-3);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: block;
    transition: transform 0.25s, border-color 0.2s;
}

.bps-related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(191,13,62,0.3);
}

.bps-related-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.bps-related-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(191,13,62,0.35), rgba(34,211,238,0.25));
}

.bps-related-body {
    padding: 1.25rem;
}

.bps-related-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.6rem;
}

.bps-dot { margin: 0 0.3rem; }

.bps-related-card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 0.5rem;
}

.bps-related-excerpt {
    font-size: 0.84rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.75rem;
}

.bps-related-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.bps-cat-pill {
    font-size: 0.7rem;
    padding: 0.2rem 0.65rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.55);
}

/* ============================================================
   UTILITIES
   ============================================================ */

/* Arrow SVG used in links */
.arrow-icon {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}