/* ============================================================
   Universal CMS — Shared Stylesheet
   Light theme, default #1E8A57 accent (overridden per-client
   at runtime by bhInitConfig() from brand_primary_color)
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --clr-bg:           #FFFFFF;
    --clr-surface:      #F5F7FA;
    --clr-surface-2:    #EEF1F5;
    --clr-accent:       #0DA1CC;
    --clr-accent-dim:   #0A7FA3;
    --clr-accent-light: #E8F6FA;
    --clr-text:         #1A1A2E;
    --clr-text-muted:   #6B7280;
    --clr-text-dim:     #9CA3AF;
    --clr-orange:       #F4841F;
    --clr-orange-dim:   #D4701A;
    --clr-danger:       #FF3D3D;
    --clr-success:      #10B981;
    --clr-border:       #E5E7EB;
    --clr-white:        #FFFFFF;
    --clr-footer-bg:    #2d3142;
    --font-display:     'Signika', sans-serif;
    --font-body:        'Signika', sans-serif;
    --font-main:        'Signika', sans-serif;
    --radius-sm:        8px;
    --radius-md:        12px;
    --radius-lg:        16px;
    --shadow-sm:        0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:        0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg:        0 8px 24px rgba(0,0,0,0.12);
    --transition:       0.3s ease;
    --max-width:        1280px;
    --header-height:    80px;
    --topbar-height:    40px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background: var(--clr-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-accent-dim); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); font-size: 16px; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }

/* ---- Container ---- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---- Topbar ---- */
.topbar {
    background: #061b30;
    color: var(--clr-white);
    font-size: 12.5px;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}
.topbar-left a, .topbar-left span {
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 6px;
}
.topbar-left a:hover { color: rgba(255,255,255,0.95); }
.topbar-left i { color: var(--clr-accent); font-size: 11px; margin: 0; }
.topbar-right {
    display: flex;
    align-items: center;
    gap: 4px;
}
.topbar-right a {
    color: rgba(255,255,255,0.55);
    font-size: 12.5px;
    padding: 4px 10px;
    border-radius: 100px;
    transition: all var(--transition);
}
.topbar-right a:hover { color: rgba(255,255,255,0.95); background: rgba(255,255,255,0.07); }

/* ---- Header ---- */
.header {
    background: var(--clr-white);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    height: 100%;
}
.header-logo img { height: 40px; width: auto; }
.header-logo { display: flex; align-items: center; }

/* ---- Navigation pill ---- */
.nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 2px;
    background: #EEEEF0;
    border-radius: 100px;
    padding: 5px;
}
.nav-link {
    color: var(--clr-text);
    font-size: 14px;
    font-weight: 500;
    padding: 7px 15px;
    border-radius: 100px;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.nav-link:hover { background: rgba(255,255,255,0.8); color: var(--clr-text); }
.nav-link.active {
    background: var(--clr-white);
    color: var(--clr-text);
    box-shadow: 0 1px 5px rgba(0,0,0,0.12);
}
/* Animált gradiens szöveg — KIEMELT AKCIÓK */
.nav-link.featured {
    background: linear-gradient(90deg, #0876b8, #0DA1CC, #62d0ef, #1a8fe0, #0DA1CC, #0876b8);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: nav-shimmer 2.5s linear infinite;
}
@keyframes nav-shimmer {
    to { background-position: 300% center; }
}

/* ---- Nav action buttons (jobb oldal) ---- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.btn-nav-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-text);
    border: 1.5px solid var(--clr-border);
    background: transparent;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    font-family: var(--font-body);
    cursor: pointer;
}
.btn-nav-call:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.btn-nav-showroom {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-white);
    background: var(--clr-accent);
    border: 1.5px solid var(--clr-accent);
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.btn-nav-showroom:hover { background: var(--clr-accent-dim); border-color: var(--clr-accent-dim); color: var(--clr-white); }
.nav-new {
    color: var(--clr-accent);
    font-size: 9px;
    font-weight: 700;
    vertical-align: super;
    margin-left: 2px;
    text-transform: lowercase;
    letter-spacing: 0.2px;
}

/* Mobile nav showroom gomb (megtartva) */
.nav-showroom {
    background: var(--clr-accent);
    color: var(--clr-white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-left: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background var(--transition);
}
.nav-showroom:hover { background: var(--clr-accent-dim); color: var(--clr-white) !important; }
.nav-showroom i { font-size: 14px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.nav-overlay.active { display: block; }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--clr-white);
    z-index: 1001;
    transition: right var(--transition);
    padding: 80px 24px 24px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.mobile-nav.active { right: 0; }
.mobile-nav .nav-link {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--clr-border);
}
.mobile-nav .nav-showroom {
    display: flex;
    justify-content: center;
    margin: 20px 0 0;
    width: 100%;
}
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--clr-text-muted);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #061b30;
    max-width: calc(var(--max-width) - 48px);
    width: calc(100% - 48px);
    margin: 20px auto 0;
    border-radius: 20px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(4,18,38,0.92) 0%, rgba(13,100,170,0.45) 60%, rgba(13,161,204,0.15) 100%);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 0;
}
.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 20px;
    line-height: 1.08;
}
.hero-title span { color: #62d0ef; }
.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    line-height: 1.5;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Hero Split (2 col: szöveg + animáció) ---- */
.hero-split-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}
.hero-split .hero-content { max-width: none; padding: 60px 0; position: relative; z-index: 2; }
.hero-split-grid > div:last-child { position: relative; z-index: 2; }
/* Hero split — világos változat */
.hero.hero-split {
    background: var(--clr-surface);
    border: 2px solid var(--clr-accent);
}
.hero.hero-split .hero-overlay { display: none; }
.hero.hero-split .hero-title { color: var(--clr-text); }
.hero.hero-split .hero-title span { color: var(--clr-accent); }
.hero.hero-split .hero-subtitle { color: var(--clr-text-muted); }
.hero.hero-split .btn-outline {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: transparent;
}
.hero.hero-split .btn-outline:hover {
    background: var(--clr-accent);
    color: #fff;
}
.hero-anim-card {
    background: transparent;
    border-radius: 0;
    padding: 8px 4px 4px;
    box-shadow: none;
}
.hero-anim-card-label {
    text-align: center;
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

/* ---- Sections ---- */
.section { padding: 80px 0; }
.section-surface { background: var(--clr-surface); }
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--clr-text);
}
.section-subtitle {
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--clr-accent);
    color: var(--clr-white);
}
.btn-primary:hover { background: var(--clr-accent-dim); color: var(--clr-white); }
.btn-secondary {
    background: var(--clr-white);
    color: var(--clr-text);
    border-color: var(--clr-border);
}
.btn-secondary:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.btn-outline {
    background: transparent;
    color: var(--clr-white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--clr-white); color: var(--clr-white); background: rgba(255,255,255,0.1); }
/* Outline gomb világos háttéren (pl. termékoldalon) */
.btn-outline-accent {
    background: transparent;
    color: var(--clr-accent);
    border-color: var(--clr-accent);
}
.btn-outline-accent:hover { background: var(--clr-accent); color: #fff; }
/* Kedvencek / wishlist gomb */
.btn-wishlist {
    background: transparent;
    color: var(--clr-text-muted);
    border-color: var(--clr-border);
}
.btn-wishlist:hover { border-color: #E53935; color: #E53935; }
.btn-wishlist.active { color: #E53935; border-color: #E53935; }
.btn-wishlist.active .fa-heart { color: #E53935; }
.btn-danger { background: var(--clr-danger); color: var(--clr-white); }
.btn-danger:hover { background: #e02020; color: var(--clr-white); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 18px; }
.btn-block { width: 100%; }
.btn-phone {
    background: var(--clr-surface);
    color: var(--clr-text);
    border-color: var(--clr-border);
}
.btn-phone:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.btn-orange {
    background: var(--clr-orange);
    color: var(--clr-white);
    border-color: var(--clr-orange);
}
.btn-orange:hover { background: var(--clr-orange-dim); border-color: var(--clr-orange-dim); color: var(--clr-white); }

/* ---- Cards ---- */
.card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.card-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: var(--clr-surface);
}
.card-body { padding: 20px; }
.card-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--clr-text);
}

/* ---- Product Card ---- */
.product-card { position: relative; }
.product-card .card-image { aspect-ratio: 1/1; }
.product-card-badge { display: none; } /* akciós badge eltávolítva */
.product-card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-text);
}
.product-card-price .from { font-size: 13px; font-weight: 400; color: var(--clr-text-muted); }
.product-card-price-original {
    font-size: 14px;
    color: var(--clr-text-dim);
    text-decoration: line-through;
    margin-left: 8px;
}
.product-card-sale { color: var(--clr-accent); }
.product-card-attrs {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-top: 6px;
}
.product-card-attrs span + span::before { content: " \00B7 "; }
/* Termék funkció ikonok — kártyán */
.product-feat-icons {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    align-items: center;
}
.feat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    color: var(--clr-surface-2);
    font-size: 13px;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
    cursor: default;
    flex-shrink: 0;
}
.feat-icon.active {
    color: var(--clr-accent);
    border-color: var(--clr-accent);
    background: var(--clr-accent-light);
}
/* Tooltip */
.feat-icon[data-tooltip] { position: relative; }
.feat-icon[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 7px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    color: #fff;
    font-size: 11.5px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: normal;
    max-width: 110px;
    text-align: center;
    line-height: 1.4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 200;
    box-shadow: 0 2px 8px rgba(0,0,0,0.20);
}
.feat-icon[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a2e;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 200;
}
.feat-icon[data-tooltip]:hover::after,
.feat-icon[data-tooltip]:hover::before { opacity: 1; }
/* Termék funkció ikonok — részlet oldalon (ikon + szöveg) */
.product-feat-icons--detail {
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
}
.product-feat-icons--detail .feat-icon {
    width: auto;
    height: auto;
    padding: 8px 14px;
    gap: 8px;
    font-size: 14px;
    border-radius: 8px;
}
.product-feat-icons--detail .feat-icon i {
    font-size: 16px;
    flex-shrink: 0;
}
.product-feat-icons--detail .feat-icon span {
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-text-muted);
}
.product-feat-icons--detail .feat-icon.active span {
    color: var(--clr-accent);
}
/* Bemutatóterem készlet doboz */
.showroom-stock-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.55;
}
.showroom-stock-box i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.showroom-stock-box strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}
.showroom-stock-box.in-stock {
    background: rgba(13,161,204,0.08);
    border: 1.5px solid var(--clr-accent);
    color: var(--clr-text);
}
.showroom-stock-box.in-stock i { color: var(--clr-accent); }
.showroom-stock-box.not-in-stock {
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    color: var(--clr-text-muted);
}
.showroom-stock-box.not-in-stock i { color: var(--clr-text-dim); }
/* Nyitvatartás badge */
.oh-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    font-family: var(--font-main);
}
.oh-badge--open {
    background: rgba(67,160,71,0.10);
    color: #256427;
    border: 1px solid rgba(67,160,71,0.30);
}
.oh-badge--closed {
    background: var(--clr-surface);
    color: var(--clr-text-muted);
    border: 1px solid var(--clr-border);
}
.oh-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
}
.oh-badge--open .oh-dot {
    background: #43a047;
    animation: oh-pulse 2s infinite;
}
.oh-badge--closed .oh-dot { background: var(--clr-text-dim); }
@keyframes oh-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(67,160,71,.55); }
    70%  { box-shadow: 0 0 0 7px rgba(67,160,71,0); }
    100% { box-shadow: 0 0 0 0 rgba(67,160,71,0); }
}
.oh-time { font-weight: 400; opacity: .8; }
/* Badge sötét háttéren (topbar, footer) */
.topbar .oh-badge--open,
.footer .oh-badge--open {
    background: rgba(67,160,71,0.18);
    color: #7ee07f;
    border-color: rgba(67,160,71,0.40);
}
.topbar .oh-badge--closed,
.footer .oh-badge--closed {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.55);
    border-color: rgba(255,255,255,0.15);
}
/* Nagy változat (bemutató terem oldal) */
.oh-badge--lg {
    border-radius: var(--radius-md);
    padding: 14px 18px;
    gap: 14px;
    font-size: 14px;
    align-items: flex-start;
}
.oh-badge--lg .oh-dot {
    width: 12px;
    height: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}
.oh-badge--lg strong { display: block; font-size: 15px; margin-bottom: 3px; }
/* Egyedi meret badge a termek kartyan */
.custom-size-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--clr-white);
    color: var(--clr-accent);
    border: 1.5px solid var(--clr-accent);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    letter-spacing: 0.2px;
    box-shadow: 0 1px 4px rgba(13,161,204,0.2);
}
.topbar-highlight {
    color: var(--clr-accent) !important;
    font-weight: 600;
    border: 1px solid rgba(13,161,204,0.35);
    border-radius: 100px;
    padding: 3px 10px !important;
    transition: all var(--transition);
}
.topbar-highlight:hover { background: rgba(13,161,204,0.12) !important; color: var(--clr-accent) !important; }

.shipping-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--clr-orange);
    color: var(--clr-white);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 8px rgba(244,132,31,0.35);
}

/* ---- Akciós kártya animált kék gradiens keret ---- */
@property --sale-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
.product-card.on-sale {
    border: 2px solid transparent;
    background-image:
        linear-gradient(var(--clr-white), var(--clr-white)),
        conic-gradient(from var(--sale-angle), #0DA1CC, #7DD8EE, #0B8DB3, #53C8E8, #0DA1CC);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: sale-border-rotate 3s linear infinite;
}
@keyframes sale-border-rotate {
    to { --sale-angle: 360deg; }
}

/* ---- Product Grid ---- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ---- Featured Carousel ---- */
.carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}
.carousel-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}
.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.carousel-track .card {
    flex-shrink: 0;
    min-width: 0;
}
.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border);
    color: var(--clr-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    margin: 0 10px;
}
.carousel-btn:hover { background: var(--clr-accent); border-color: var(--clr-accent); color: var(--clr-white); }
.carousel-btn:disabled { opacity: 0.35; pointer-events: none; }
@media (max-width: 768px) {
    .carousel-btn { width: 36px; height: 36px; margin: 0 4px; font-size: 13px; }
}

/* ---- Category Card (kept for other pages) ---- */
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.category-card:hover img { transform: scale(1.05); }
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.category-card-title {
    color: var(--clr-white);
    font-size: 22px;
    font-weight: 700;
}
.category-card-count {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-top: 4px;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ---- Category Icon Row (homepage) ---- */
.cat-icon-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cat-icon-item {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 32px 16px 28px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--clr-border);
    background: var(--clr-white);
    color: var(--clr-text);
    text-decoration: none;
    transition: all var(--transition);
    text-align: center;
    cursor: pointer;
}
.cat-icon-item:hover {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: var(--clr-white);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(13,161,204,0.25);
}
.cat-icon-item.featured-cat:hover {
    background: var(--clr-danger);
    border-color: var(--clr-danger);
    box-shadow: 0 12px 32px rgba(255,61,61,0.2);
}
.cat-icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--clr-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--clr-accent);
    transition: all var(--transition);
}
.cat-icon-item:hover .cat-icon-circle {
    background: rgba(255,255,255,0.18);
    color: var(--clr-white);
}
.cat-icon-item.featured-cat .cat-icon-circle {
    background: rgba(255,61,61,0.1);
    color: var(--clr-danger);
}
.cat-icon-item.featured-cat:hover .cat-icon-circle {
    background: rgba(255,255,255,0.18);
    color: var(--clr-white);
}
.cat-icon-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}
.cat-icon-sub {
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-top: -6px;
    transition: color var(--transition);
}
.cat-icon-item:hover .cat-icon-sub { color: rgba(255,255,255,0.75); }

/* ---- USP Cards ---- */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.usp-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
}
.usp-card-icon {
    width: 64px;
    height: 64px;
    background: var(--clr-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--clr-accent);
}
.usp-card-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}
.usp-card-text {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* ---- Review Cards ---- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.review-stars { color: #F59E0B; font-size: 16px; margin-bottom: 16px; }
.review-text {
    font-size: 15px;
    color: var(--clr-text);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}
.review-author {
    font-weight: 600;
    font-size: 15px;
    color: var(--clr-text);
}

/* ---- Filter Sidebar ---- */
.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}
.filter-sidebar {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}
.filter-group { margin-bottom: 24px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.filter-search {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    background: var(--clr-surface);
    transition: border-color var(--transition);
}
.filter-search:focus { outline: none; border-color: var(--clr-accent); }
.filter-search-wrapper { position: relative; }
.filter-search-wrapper i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-text-dim);
    font-size: 14px;
}
.filter-checkbox { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-checkbox label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--clr-text);
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.filter-checkbox label:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.filter-checkbox input:checked + span { color: var(--clr-accent); }
.filter-checkbox label:has(input:checked) {
    background: var(--clr-accent-light);
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}
.filter-checkbox input { display: none; }

.filter-radio label {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--clr-text);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.filter-radio label:hover { background: var(--clr-surface); }
.filter-radio input:checked + span { color: var(--clr-accent); font-weight: 600; }
.filter-radio input { display: none; }

/* Range slider */
.range-slider { padding: 8px 0; }
.range-slider-track {
    position: relative;
    height: 4px;
    background: var(--clr-border);
    border-radius: 2px;
    margin: 16px 0;
}
.range-slider-fill {
    position: absolute;
    height: 100%;
    background: var(--clr-accent);
    border-radius: 2px;
}
.range-slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--clr-white);
    border: 2px solid var(--clr-accent);
    border-radius: 50%;
    cursor: grab;
    z-index: 2;
    transition: box-shadow var(--transition);
}
.range-slider-thumb:hover { box-shadow: 0 0 0 4px rgba(13,161,204,0.2); }
.range-slider-thumb:active { cursor: grabbing; }
.range-slider-values {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--clr-text-muted);
}
.filter-clear {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: var(--clr-text-muted);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    background: none;
}
.filter-clear:hover { color: var(--clr-danger); border-color: var(--clr-danger); }

/* Mobile filter toggle */
.filter-toggle {
    display: none;
    padding: 12px 20px;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-text);
    gap: 8px;
    margin-bottom: 16px;
    width: 100%;
    justify-content: center;
}
.filter-toggle i { color: var(--clr-accent); }

/* ---- Sort & Results Bar ---- */
.results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.results-count {
    font-size: 14px;
    color: var(--clr-text-muted);
}
.sort-select {
    padding: 8px 14px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    background: var(--clr-white);
    color: var(--clr-text);
    cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--clr-accent); }

/* ---- Pagination ---- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--clr-text);
    transition: all var(--transition);
}
.pagination a:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.pagination .active {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: var(--clr-white);
}
.pagination .dots { border: none; color: var(--clr-text-dim); }

/* ---- Product Detail ---- */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.product-gallery { position: relative; }
.product-main-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    cursor: zoom-in;
    background: var(--clr-surface);
}
.product-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
}
.product-thumbnail {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all var(--transition);
    flex-shrink: 0;
}
.product-thumbnail:hover, .product-thumbnail.active { opacity: 1; border-color: var(--clr-accent); }

.product-info-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.product-info-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.product-info-price .from { font-size: 14px; font-weight: 400; color: var(--clr-text-muted); }
.product-info-price-sale { color: var(--clr-danger); }
.product-info-price-original {
    font-size: 16px;
    color: var(--clr-text-dim);
    text-decoration: line-through;
    margin-left: 12px;
    font-weight: 400;
}

.product-features {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--clr-surface);
    border-radius: var(--radius-md);
}
.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 15px;
    color: var(--clr-text);
}
.product-features li i { color: var(--clr-accent); font-size: 14px; width: 18px; text-align: center; }

.product-cta { margin-bottom: 24px; display: flex; flex-direction: column; gap: 12px; }
.product-showroom-info {
    font-size: 13px;
    color: var(--clr-text-muted);
    padding: 16px;
    background: var(--clr-surface);
    border-radius: var(--radius-md);
}
.product-showroom-info i { color: var(--clr-accent); margin-right: 6px; }
.product-showroom-info p { margin-bottom: 4px; }

/* Attribute badges */
.product-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: var(--clr-accent-light);
    color: var(--clr-accent-dim);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.badge i { font-size: 11px; }

/* Tabs */
.tabs { margin-top: 48px; }
.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--clr-border);
    margin-bottom: 24px;
}
.tab-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all var(--transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}
.tab-btn:hover { color: var(--clr-accent); }
.tab-btn.active { color: var(--clr-accent); border-bottom-color: var(--clr-accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { line-height: 1.7; margin-bottom: 16px; }

/* Dimensions table */
.dimensions-table {
    width: 100%;
    border-collapse: collapse;
}
.dimensions-table tr { border-bottom: 1px solid var(--clr-border); }
.dimensions-table td {
    padding: 12px 0;
    font-size: 15px;
}
.dimensions-table td:first-child { color: var(--clr-text-muted); width: 200px; }
.dimensions-table td:last-child { font-weight: 600; }

/* ---- Lightbox ---- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 32px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 36px;
    cursor: pointer;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---- FAQ Accordion ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-text);
    background: var(--clr-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background var(--transition);
}
.faq-question:hover { background: var(--clr-surface); }
.faq-question i { color: var(--clr-accent); transition: transform var(--transition); font-size: 14px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* ---- Showroom Section ---- */
.showroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.showroom-image {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.showroom-info h3 { font-size: 24px; margin-bottom: 20px; }
.showroom-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}
.showroom-info-item i { color: var(--clr-accent); width: 20px; text-align: center; margin-top: 3px; }

/* ---- CTA Section ---- */
.cta-section {
    background: var(--clr-accent);
    color: var(--clr-white);
    text-align: center;
    padding: 60px 0;
}
.cta-section h2 { color: var(--clr-white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 17px; }

/* ---- Contact Form ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 6px;
}
.form-input, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    background: var(--clr-white);
    color: var(--clr-text);
    transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--clr-accent); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--clr-text-muted);
}
.form-checkbox input { margin-top: 2px; }
.form-gdpr {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.form-gdpr input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.form-gdpr label {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    cursor: pointer;
}
.form-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 16px;
}
.form-message.success { background: rgba(16,185,129,0.1); color: var(--clr-success); border: 1px solid rgba(16,185,129,0.3); }
.form-message.error { background: rgba(255,61,61,0.1); color: var(--clr-danger); border: 1px solid rgba(255,61,61,0.3); }

/* ---- Process Steps ---- */
.process-steps {
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}
.process-step { text-align: center; flex: 1; position: relative; }
.process-step-number {
    width: 64px;
    height: 64px;
    background: var(--clr-accent);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}
.process-step-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}
.process-step-text {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.5;
}
.process-step + .process-step::before {
    content: '';
    position: absolute;
    top: 32px;
    left: -24px;
    width: 48px;
    height: 2px;
    background: var(--clr-border);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--clr-text-muted);
    padding: 16px 0;
}
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-accent); }
.breadcrumb-sep { color: var(--clr-text-dim); font-size: 12px; }

/* ---- Features grid (Mit talál nálunk?) ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--clr-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.feature-icon i { color: var(--clr-accent); font-size: 24px; }
.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 10px;
}
.feature-text {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.65;
}
@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .features-grid { grid-template-columns: 1fr; }
}
/* ---- CTA szekció ---- */
.section-cta { background: var(--clr-surface); }
.cta-box {
    background: linear-gradient(135deg, #0DA1CC 0%, #0B7BA0 100%);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(13,161,204,0.25);
}
.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.cta-text {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.cta-box .btn-primary {
    background: #fff;
    color: var(--clr-accent);
    border-color: #fff;
    font-size: 17px;
    padding: 14px 36px;
}
.cta-box .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
@media (max-width: 600px) {
    .cta-box { padding: 40px 24px; }
    .cta-title { font-size: 22px; }
}
/* ---- Bemutatóterem oldal ---- */
.showroom-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,0.13);
}
.showroom-split-image {
    position: relative;
    min-height: 560px;
}
.showroom-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.showroom-split-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.showroom-split-img-badge i { color: var(--clr-accent); }
.showroom-split-info {
    background: var(--clr-white);
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
}
.showroom-split-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 20px;
    line-height: 1.3;
}
.showroom-address-box {
    background: var(--clr-accent-light);
    border: 1px solid rgba(13,161,204,0.22);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 20px;
}
.showroom-address-main {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 3px;
}
.showroom-address-sub {
    font-size: 13px;
    color: var(--clr-text-muted);
}
.showroom-info-rows { flex: 1; }
.showroom-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--clr-border);
}
.showroom-info-row:last-of-type { border-bottom: none; }
.showroom-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--clr-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.showroom-info-icon i { color: var(--clr-accent); font-size: 15px; }
.showroom-info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-muted);
    font-weight: 600;
    margin-bottom: 5px;
}
.showroom-info-value {
    font-size: 15px;
    color: var(--clr-text);
    font-weight: 500;
    line-height: 1.5;
}
.showroom-info-value a { color: var(--clr-text); text-decoration: none; }
.showroom-info-value a:hover { color: var(--clr-accent); }
.oh-schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-bottom: 10px;
}
.oh-schedule-table td { padding: 2px 0; }
.oh-schedule-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 500;
    width: 110px;
}
.oh-schedule-table td:last-child { font-weight: 600; }
/* Navigáció gombok */
.nav-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-main);
    transition: all 0.18s ease;
    border: none;
}
.nav-btn span { flex: 1; }
.nav-btn i { font-size: 17px; }
.nav-btn-arrow { font-size: 12px !important; opacity: 0.7; }
.nav-btn-google { background: #4285F4; color: #fff; }
.nav-btn-google:hover { background: #3068d6; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(66,133,244,0.40); }
.nav-btn-waze { background: #33CCFF; color: #1a2a3a; }
.nav-btn-waze:hover { background: #00b9ec; color: #1a2a3a; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(51,204,255,0.40); }
.nav-btn-apple { background: #1c1c1e; color: #fff; }
.nav-btn-apple:hover { background: #2d2d2f; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.30); }
/* Megközelítés kártyák */
.directions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.direction-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: box-shadow var(--transition);
}
.direction-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.09); }
.direction-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--clr-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.direction-icon i { color: var(--clr-accent); font-size: 22px; }
.direction-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--clr-text); }
.direction-text { font-size: 14px; color: var(--clr-text-muted); line-height: 1.65; }
/* Térkép */
.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,0.11);
}
.map-embed iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}
/* Galéria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
/* Reszponzív */
@media (max-width: 900px) {
    .showroom-split { grid-template-columns: 1fr; }
    .showroom-split-image { min-height: 260px; }
    .showroom-split-info { padding: 28px 24px; }
    .directions-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Footer ---- */
.footer {
    background: var(--clr-footer-bg, #1e2235);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
    color: rgba(255,255,255,0.6);
}
.footer-brand img { height: 36px; margin-bottom: 8px; }
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--clr-accent); color: var(--clr-white); }
.footer-social a.hidden { display: none; }
.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--clr-white); }
.footer-links a i { margin-right: 8px; width: 16px; text-align: center; color: var(--clr-accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--clr-accent); }

/* ---- Sticky Mobile CTA ---- */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    padding: 12px 16px;
    z-index: 998;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}
.sticky-cta-inner {
    display: flex;
    gap: 12px;
}
.sticky-cta .btn { flex: 1; padding: 12px; font-size: 14px; }

/* ---- Skeleton Loading ---- */
.skeleton {
    background: linear-gradient(90deg, var(--clr-surface) 25%, var(--clr-surface-2) 50%, var(--clr-surface) 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}
@keyframes skeleton-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.skeleton-card { height: 300px; border-radius: var(--radius-lg); }
.skeleton-text { height: 16px; margin-bottom: 8px; }
.skeleton-text-sm { height: 12px; width: 60%; }

/* ---- Scroll Reveal ---- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Legal / Content Pages ---- */
.page-content { max-width: 800px; margin: 0 auto; }
.page-content h1 { font-size: 32px; margin-bottom: 24px; }
.page-content h2 { font-size: 24px; margin: 32px 0 16px; }
.page-content h3 { font-size: 20px; margin: 24px 0 12px; }
.page-content p { margin-bottom: 16px; line-height: 1.7; color: var(--clr-text-muted); }
.page-content ul, .page-content ol { margin: 0 0 16px 24px; }
.page-content li { margin-bottom: 8px; line-height: 1.6; color: var(--clr-text-muted); }
.page-content a { color: var(--clr-accent); text-decoration: underline; }
.page-content strong { color: var(--clr-text); }

/* ---- Career Page ---- */
.career-list { max-width: 800px; margin: 0 auto; }
.career-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 20px;
}
.career-card h3 { font-size: 20px; margin-bottom: 12px; }
.career-card-content { font-size: 15px; color: var(--clr-text-muted); line-height: 1.7; }

/* ---- Empty State ---- */
.empty-state {
    text-align: center;
    padding: 64px 24px;
    color: var(--clr-text-muted);
}
.empty-state i { font-size: 48px; color: var(--clr-text-dim); margin-bottom: 16px; }
.empty-state h3 { color: var(--clr-text); margin-bottom: 8px; }
.empty-state p { margin-bottom: 24px; }

/* ---- Google Maps ---- */
.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 24px;
}
.map-embed iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-height: 64px; }

    .topbar { display: none; }
    .hamburger { display: flex; }
    .nav { display: none; }
    .nav-actions { display: none; }
    .mobile-nav { display: block; }
    .header .container { grid-template-columns: auto 1fr auto; }

    .hero { min-height: 420px; margin: 12px 12px 0; border-radius: 16px; }
    .hero-split-grid { grid-template-columns: 1fr; }
    .hero-anim-card { display: none; }
    .hero-split .hero-content { padding: 48px 0; }
    .hero-title { font-size: 30px; }
    .hero-subtitle { font-size: 16px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .cat-icon-row { gap: 10px; }
    .cat-icon-item { min-width: 120px; padding: 22px 10px 18px; gap: 10px; }
    .cat-icon-circle { width: 52px; height: 52px; font-size: 20px; }
    .cat-icon-label { font-size: 13px; }

    .section { padding: 48px 0; }
    .section-title { font-size: 28px; }

    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: 1fr; }

    .catalog-layout { grid-template-columns: 1fr; }
    .filter-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1002;
        border-radius: 0;
        overflow-y: auto;
        padding-top: 60px;
    }
    .filter-mobile-actions {
        display: none;
        position: sticky;
        bottom: 0;
        background: #fff;
        border-top: 1px solid var(--clr-border);
        padding: 12px 16px;
        gap: 10px;
        flex-direction: column;
        margin: 16px -20px -20px;
    }
    .filter-mobile-actions .btn {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 14px 20px;
        font-size: 15px;
        min-height: 0;
        height: auto;
        box-sizing: border-box;
    }
    .filter-clear:not(.filter-mobile-close) { display: none; }
    .filter-sidebar.mobile-open { display: block; }
    .filter-sidebar.mobile-open .filter-mobile-actions { display: flex; }
    .filter-toggle { display: flex; }

    .product-detail { grid-template-columns: 1fr; gap: 24px; }
    .showroom-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }

    .process-steps { flex-direction: column; gap: 24px; }
    .process-step + .process-step::before { display: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .sticky-cta { display: block; }

    /* Tab to accordion on mobile */
    .tab-nav { display: none; }
    .tab-panel { display: block; }
    .tab-accordion-btn {
        display: flex;
        width: 100%;
        text-align: left;
        padding: 16px 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--clr-text);
        border-bottom: 1px solid var(--clr-border);
        justify-content: space-between;
        align-items: center;
        background: none;
        cursor: pointer;
    }
    .tab-accordion-btn i { color: var(--clr-accent); transition: transform var(--transition); }
    .tab-panel.accordion-closed .tab-panel-content { display: none; }
    .tab-panel.accordion-open .tab-accordion-btn i { transform: rotate(180deg); }

    .breadcrumb { font-size: 13px; flex-wrap: wrap; }
}

/* Dark category icon row (outside media query) */
.cat-icon-row--dark .cat-icon-item { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.9); }
.cat-icon-row--dark .cat-icon-item:hover { background: var(--clr-accent); border-color: var(--clr-accent); color: #fff; }
.cat-icon-row--dark .cat-icon-circle { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.cat-icon-row--dark .cat-icon-item:hover .cat-icon-circle { background: rgba(255,255,255,0.18); color: #fff; }
.cat-icon-row--dark .cat-icon-item.featured-cat { border-color: rgba(255,61,61,0.3); background: rgba(255,61,61,0.07); }
.cat-icon-row--dark .cat-icon-item.featured-cat .cat-icon-circle { background: rgba(255,61,61,0.15); color: #ff7070; }
.cat-icon-row--dark .cat-icon-item.featured-cat:hover { background: var(--clr-danger); border-color: var(--clr-danger); }
.cat-icon-row--dark .cat-icon-item.featured-cat:hover .cat-icon-circle { background: rgba(255,255,255,0.18); color: #fff; }

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 28px; }
    .cat-icon-row { gap: 8px; }
    .cat-icon-item { min-width: calc(50% - 8px); flex: 0 0 calc(50% - 8px); }
    .cat-icon-sub { display: none; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card .card-image { aspect-ratio: 4/3; }
    .section-title { font-size: 24px; }
    .btn { padding: 12px 20px; font-size: 15px; }
}

/* ---- Site Popup ---- */
.site-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: popup-fade-in 0.3s ease;
}
.site-popup-overlay.active { display: flex; }
@keyframes popup-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.site-popup-box {
    position: relative;
    max-width: 600px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    animation: popup-slide-in 0.35s ease;
}
@keyframes popup-slide-in {
    from { transform: translateY(24px) scale(0.97); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}
.site-popup-box img {
    width: 100%;
    display: block;
    cursor: default;
}
.site-popup-box a img { cursor: pointer; }
.site-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background var(--transition);
    border: none;
    line-height: 1;
}
.site-popup-close:hover { background: rgba(0,0,0,0.8); }
@media (max-width: 480px) {
    .site-popup-box { max-width: 100%; }
}
.site-popup-box--text {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 440px;
    text-align: center;
}
.site-popup-text-content {}
.site-popup-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 14px;
    line-height: 1.3;
}
.site-popup-body {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}
.site-popup-btn {
    display: inline-block;
    background: var(--clr-accent);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Signika', sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.site-popup-btn:hover { background: var(--clr-accent-dim); }

/* ---- Print ---- */
@media print {
    .topbar, .header, .footer, .sticky-cta, .cookie-banner { display: none !important; }
    body { color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
}

/* ================================================================
   KOSÁR & PÉNZTÁR — Checkout frontend stílusok
   ================================================================ */

/* ---- Kosár gomb a navigációban ---- */
.btn-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-border);
    background: transparent;
    color: var(--clr-text);
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition);
    flex-shrink: 0;
}
.btn-cart:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    background: var(--clr-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}
.cart-badge--hidden { display: none !important; }

/* ---- Checkout lépésjelző ---- */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 32px 0 40px;
}
.checkout-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-text-muted);
}
.checkout-step.active { color: var(--clr-accent); }
.checkout-step.done   { color: var(--clr-success); }
.checkout-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.checkout-step.done .checkout-step-num { background: var(--clr-success); border-color: var(--clr-success); color: #fff; }
.checkout-step.active .checkout-step-num { background: var(--clr-accent); border-color: var(--clr-accent); color: #fff; }
.checkout-step-sep {
    width: 40px;
    height: 2px;
    background: var(--clr-border);
    margin: 0 4px;
    flex-shrink: 0;
}

/* ---- Kosár oldal ---- */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}
@media (max-width: 900px) {
    .cart-layout { grid-template-columns: 1fr; }
}

.cart-table {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.cart-table-head {
    display: grid;
    grid-template-columns: 80px 1fr 140px 120px 44px;
    gap: 12px;
    padding: 14px 20px;
    background: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cart-row {
    display: grid;
    grid-template-columns: 80px 1fr 140px 120px 44px;
    gap: 12px;
    padding: 16px 20px;
    align-items: center;
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition);
}
.cart-row:last-child { border-bottom: none; }
.cart-row:hover { background: var(--clr-surface); }
.cart-img {
    width: 80px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--clr-surface-2);
}
.cart-item-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--clr-text);
    text-decoration: none;
    display: block;
    margin-bottom: 3px;
}
.cart-item-name:hover { color: var(--clr-accent); }
.cart-item-opts {
    font-size: 12px;
    color: var(--clr-text-muted);
}
.cart-qty {
    display: flex;
    align-items: center;
    gap: 4px;
}
.cart-qty-btn {
    width: 30px;
    height: 30px;
    border: 1.5px solid var(--clr-border);
    background: var(--clr-bg);
    border-radius: var(--radius-sm);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--clr-text);
    line-height: 1;
}
.cart-qty-btn:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.cart-qty-input {
    width: 44px;
    text-align: center;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 4px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--clr-text);
}
.cart-item-price {
    font-weight: 700;
    font-size: 15px;
    color: var(--clr-text);
}
.cart-item-price .sale { color: var(--clr-danger); }
.cart-remove-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--clr-text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--transition);
}
.cart-remove-btn:hover { background: #fef2f2; color: var(--clr-danger); }

/* Mobil kosár nézet */
@media (max-width: 640px) {
    .cart-table-head { display: none; }
    .cart-row {
        grid-template-columns: 70px 1fr 32px;
        grid-template-rows: auto auto;
    }
    .cart-row > .cart-qty   { grid-column: 2; }
    .cart-row > .cart-item-price { display: none; }
    .cart-row > .cart-remove-btn { grid-column: 3; grid-row: 1; }
}

/* ---- Kosár összesítő panel ---- */
.cart-summary {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 100px;
}
.cart-summary-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--clr-text);
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--clr-text-muted);
    padding: 6px 0;
}
.cart-summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-text);
    border-top: 2px solid var(--clr-border);
    margin-top: 12px;
    padding-top: 14px;
}
.cart-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--clr-text-muted);
}
.cart-empty i { font-size: 56px; margin-bottom: 20px; color: var(--clr-border); display: block; }
.cart-empty p { font-size: 18px; margin-bottom: 24px; }

/* ---- Pénztár oldal ---- */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}
/* A jobb oldali összesítő oszlopnak stretch kell, hogy a sticky működjön */
.checkout-layout > div:last-child {
    align-self: stretch;
}
@media (max-width: 1000px) {
    .checkout-layout { grid-template-columns: 1fr; }
}

.checkout-section {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
}
/* Beviteli mezők hófehérek maradjanak a szürke háttéren */
.checkout-section input:not([type="checkbox"]):not([type="radio"]),
.checkout-section select,
.checkout-section textarea {
    background: #ffffff;
}
/* Szövegek kontrasztosak legyenek */
.checkout-section,
.checkout-section label,
.checkout-section .form-label {
    color: var(--clr-text);
}
.checkout-section:last-child { margin-bottom: 0; }
.checkout-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.checkout-section-title i { color: var(--clr-accent); font-size: 15px; }

.checkout-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 560px) {
    .checkout-grid-2 { grid-template-columns: 1fr; }
}
.checkout-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
@media (max-width: 700px) {
    .checkout-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
    .checkout-grid-3 { grid-template-columns: 1fr; }
}

/* Form elemek (checkout-specifikus) */
.checkout-section .form-group { margin-bottom: 0; }
.checkout-section .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
}
.form-group label .req { color: var(--clr-danger); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--clr-text);
    background: var(--clr-bg);
    transition: border-color var(--transition);
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
}
.form-group input.error { border-color: var(--clr-danger); }
.form-error { font-size: 12px; color: var(--clr-danger); margin-top: 4px; display: none; }

/* Shipping same checkbox */
.checkout-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-text);
    cursor: pointer;
    margin-bottom: 20px;
    user-select: none;
}
.checkout-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--clr-accent);
    cursor: pointer;
    flex-shrink: 0;
}

/* Szállítási / fizetési módok rádiós választó */
.method-list { display: flex; flex-direction: column; gap: 10px; }
.method-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}
.method-card:hover { border-color: var(--clr-accent); }
.method-card.selected { border-color: var(--clr-accent); background: var(--clr-accent-light); }
.method-card input[type="radio"] {
    accent-color: var(--clr-accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}
.method-card-icon { font-size: 20px; color: var(--clr-accent); width: 28px; text-align: center; flex-shrink: 0; }
.method-card-label { flex: 1; }
.method-card-name { font-weight: 600; font-size: 14px; }
.method-card-desc { font-size: 12px; color: var(--clr-text-muted); margin-top: 1px; }
.method-card-price {
    font-weight: 700;
    font-size: 14px;
    color: var(--clr-text);
    white-space: nowrap;
}
.method-card-price.free { color: var(--clr-success); }

/* Kupon mező */
.coupon-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}
.coupon-row input {
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-family: var(--font-main, var(--font-body));
    border-radius: var(--radius-md);
    border: 1.5px solid var(--clr-border);
    background: var(--clr-surface);
    padding: 12px 18px;
    color: var(--clr-text);
    font-size: 15px;
    transition: border-color var(--transition);
}
.coupon-row input:focus { outline: none; border-color: var(--clr-accent); }
.coupon-row input::placeholder {
    font-family: var(--font-main, var(--font-body));
    letter-spacing: 0.04em;
    color: var(--clr-text-dim);
    font-weight: 500;
    text-transform: none;
}
.coupon-row .btn { border-radius: var(--radius-md); }
.coupon-result {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    display: none;
}
.coupon-result.ok   { background: #ecfdf5; color: var(--clr-success); display: block; }
.coupon-result.fail { background: #fef2f2; color: var(--clr-danger);  display: block; }

/* Pénztár összesítő oldalsáv */
.checkout-summary {
    background: #ffffff;
    border: 2px solid var(--clr-accent);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: sticky;
    top: 90px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    animation: summaryPulse 3s ease-in-out infinite;
}
@keyframes summaryPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 0 rgba(13,161,204,0); }
    50%       { box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 6px rgba(13,161,204,0.12); }
}
.checkout-summary-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid var(--clr-border);
}
.checkout-summary-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--clr-border);
    font-size: 13px;
}
.checkout-summary-item:last-of-type { border-bottom: none; }
.checkout-summary-img {
    width: 48px;
    height: 44px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--clr-surface-2);
    flex-shrink: 0;
}
.checkout-summary-item-name { font-weight: 600; flex: 1; }
.checkout-summary-item-qty  { color: var(--clr-text-muted); }
.checkout-summary-item-price { font-weight: 700; white-space: nowrap; }
.checkout-summary-totals { margin-top: 16px; }
.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--clr-text-muted);
    padding: 5px 0;
}
.checkout-summary-row.total {
    font-size: 17px;
    font-weight: 700;
    color: var(--clr-text);
    border-top: 2px solid var(--clr-border);
    margin-top: 10px;
    padding-top: 14px;
}
.checkout-summary-row.total span:last-child {
    color: var(--clr-accent);
    font-size: 22px;
}
.checkout-summary-row .discount-val { color: var(--clr-success); }

/* Terms sor — animált egyéni checkbox */
.checkout-terms {
    font-size: 14px;
    color: var(--clr-text);
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 16px;
    line-height: 1.6;
    position: relative;
}
.checkout-terms input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 22px;
    height: 22px;
    margin: 0;
    cursor: pointer;
    z-index: 1;
    left: 0;
    top: 0;
}
.checkout-terms label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    flex: 1;
    position: relative;
}
.checkout-terms label::before {
    content: '';
    display: block;
    width: 22px;
    min-width: 22px;
    height: 22px;
    border: 2.5px solid var(--clr-accent);
    border-radius: 6px;
    background: #fff;
    transition: all 0.2s ease;
    animation: checkboxPulse 2.8s ease-in-out infinite;
    margin-top: 2px;
    flex-shrink: 0;
    box-sizing: border-box;
}
.checkout-terms label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: 2.5px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.15s ease;
    pointer-events: none;
}
.checkout-terms input[type="checkbox"]:checked + label::before {
    background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-dim) 100%);
    border-color: transparent;
    animation: none;
    box-shadow: 0 2px 8px rgba(13,161,204,0.35);
}
.checkout-terms input[type="checkbox"]:checked + label::after {
    opacity: 1;
}
.checkout-terms a { color: var(--clr-accent); text-decoration: underline; }
@keyframes checkboxPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(13,161,204,0); }
    50%       { box-shadow: 0 0 0 5px rgba(13,161,204,0.18); }
}

/* Checkout submit gomb */
.btn-checkout {
    width: 100%;
    padding: 16px;
    background: var(--clr-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-checkout:hover:not(:disabled) { background: var(--clr-accent-dim); }
.btn-checkout:disabled { opacity: 0.6; cursor: not-allowed; }

/* Rendelés folyamatban spinner */
.btn-checkout .fa-spinner { display: none; }
.btn-checkout.loading .fa-spinner { display: inline-block; }
.btn-checkout.loading .btn-label  { display: none; }

/* ---- Köszönöm oldal ---- */
.thankyou-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 24px;
}
.thankyou-icon {
    width: 80px;
    height: 80px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--clr-success);
    margin: 0 auto 28px;
}
.thankyou-order-num {
    display: inline-block;
    background: var(--clr-accent-light);
    color: var(--clr-accent);
    font-weight: 700;
    font-size: 20px;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    margin: 16px 0 28px;
    letter-spacing: 1px;
}
.thankyou-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 36px;
}
.thankyou-step {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--clr-text);
}
.thankyou-step i { color: var(--clr-accent); width: 20px; text-align: center; flex-shrink: 0; }

/* ---- Termékkártya gyors „Kosárba" gomb ---- */
.card-cart-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--clr-accent);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.2s, transform 0.2s, background 0.2s;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}
.product-card:hover .card-cart-btn,
.product-card:focus-within .card-cart-btn {
    opacity: 1;
    transform: scale(1);
}
.card-cart-btn:hover  { background: var(--clr-accent-dim); transform: scale(1.1); }
.card-cart-btn.added  { background: var(--clr-success); }
/* Mobilon mindig látható */
@media (hover: none) {
    .card-cart-btn { opacity: 1; transform: scale(1); }
}

/* ============================================================
   30 napos ár referencia (Omnibus-irányelv)
   ============================================================ */
.ref-price-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.ref-price-strikethrough {
    text-decoration: line-through;
    color: var(--clr-text-muted);
    font-size: 14px;
}
.ref-price-info {
    position: relative;
    cursor: pointer;
    color: var(--clr-text-dim);
    font-size: 13px;
}
.ref-price-info::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: normal;
    width: max-content;
    max-width: 240px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 100;
    line-height: 1.4;
}
.ref-price-info:hover::after {
    opacity: 1;
}

/* ============================================================
   Language Switcher
   ============================================================ */
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
}
.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: inherit;
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: border-color 0.2s, background 0.2s;
    letter-spacing: 0.3px;
}
.lang-current:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1);
}
.lang-chevron {
    font-size: 9px;
    transition: transform 0.2s;
}
.lang-open .lang-chevron {
    transform: rotate(180deg);
}
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    min-width: 130px;
    z-index: 10000;
    overflow: hidden;
}
.lang-open .lang-dropdown {
    display: block;
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    color: var(--clr-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.15s;
    white-space: nowrap;
}
.lang-option:hover {
    background: var(--clr-surface);
    color: var(--clr-accent);
}
/* Topbar-ban a lang-switcher a többi topbar linkhez igazodik */
.topbar-right .lang-switcher {
    margin-left: 4px;
}
.topbar-right .lang-current {
    font-size: 12px;
    padding: 3px 9px;
    border-color: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}
.topbar-right .lang-current:hover {
    border-color: rgba(255,255,255,0.6);
    color: rgba(255,255,255,0.95);
    background: rgba(255,255,255,0.07);
}

@media (max-width: 768px) {
    .lang-switcher {
        display: none; /* Hidden on mobile — mobile nav handles it */
    }
}


/* ── Language Switcher ── */
.bh-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.bh-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.bh-lang-btn:hover,
.bh-lang-btn.active {
    background: rgba(13,161,204,0.12);
    color: var(--clr-accent);
}
.bh-lang-switcher--footer .bh-lang-btn {
    color: rgba(255,255,255,0.65);
}
.bh-lang-switcher--footer .bh-lang-btn:hover,
.bh-lang-switcher--footer .bh-lang-btn.active {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.bh-lang-switcher--topbar .bh-lang-btn {
    font-size: 11px;
    padding: 3px 7px;
}

/* ============================================================
   MINI-CART DROPDOWN
   ============================================================ */
.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Termék részletoldal — darabszám választó */
.product-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
    margin-bottom: 16px;
}
.qty-btn-minus,
.qty-btn-plus {
    width: 40px;
    height: 44px;
    background: var(--clr-surface);
    border: none;
    color: var(--clr-text);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    flex-shrink: 0;
}
.qty-btn-minus:hover,
.qty-btn-plus:hover { background: var(--clr-surface-2); }
#product-qty {
    width: 60px;
    height: 44px;
    border: none;
    border-left: 1.5px solid var(--clr-border);
    border-right: 1.5px solid var(--clr-border);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--clr-text);
    background: var(--clr-bg);
    -moz-appearance: textfield;
}
#product-qty::-webkit-inner-spin-button,
#product-qty::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Mini-cart dropdown */
.mini-cart {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 340px;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1200;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.mini-cart--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
/* Nyíl */
.mini-cart::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: var(--clr-bg);
    border-left: 1px solid var(--clr-border);
    border-top: 1px solid var(--clr-border);
    transform: rotate(45deg);
}
.mini-cart-inner {
    padding: 16px;
}
.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.mini-cart-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-text);
    display: flex;
    align-items: center;
    gap: 7px;
}
.mini-cart-title i { color: var(--clr-accent); }
.mini-cart-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    background: none;
    color: var(--clr-text-muted);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}
.mini-cart-close:hover { background: var(--clr-surface-2); color: var(--clr-text); }

/* Üres kosár */
.mini-cart-empty {
    text-align: center;
    padding: 24px 0 20px;
    color: var(--clr-text-muted);
}
.mini-cart-empty i {
    font-size: 36px;
    color: var(--clr-border);
    display: block;
    margin-bottom: 10px;
}
.mini-cart-empty p { font-size: 14px; margin-bottom: 16px; }

/* Tételek */
.mini-cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 12px;
}
.mini-cart-items::-webkit-scrollbar { width: 4px; }
.mini-cart-items::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 2px; }

.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mini-cart-item-img-wrap {
    width: 52px;
    height: 48px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--clr-surface);
}
.mini-cart-item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mini-cart-item-info { flex: 1; min-width: 0; }
.mini-cart-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-text);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: color var(--transition);
}
.mini-cart-item-name:hover { color: var(--clr-accent); }
.mini-cart-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
}
.mini-cart-item-qty {
    font-size: 12px;
    color: var(--clr-text-muted);
    background: var(--clr-surface);
    padding: 1px 6px;
    border-radius: 4px;
}
.mini-cart-item-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-text);
}
.mini-cart-remove {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: none;
    color: var(--clr-text-dim);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition);
}
.mini-cart-remove:hover { background: #fef2f2; color: var(--clr-danger); }

/* "Még X termék" */
.mini-cart-more {
    font-size: 12px;
    color: var(--clr-text-muted);
    text-align: center;
    margin-bottom: 12px;
}

/* Részösszeg sor */
.mini-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--clr-text);
    border-top: 1.5px solid var(--clr-border);
    padding-top: 12px;
    margin-bottom: 12px;
}
.mini-cart-total strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-accent);
}

/* Gombok */
.mini-cart-actions {
    display: flex;
    gap: 8px;
}
.mini-cart-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-body);
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}
.mini-cart-btn--outline {
    border: 1.5px solid var(--clr-border);
    background: transparent;
    color: var(--clr-text);
}
.mini-cart-btn--outline:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}
.mini-cart-btn--accent {
    background: var(--clr-accent);
    color: #fff;
}
.mini-cart-btn--accent:hover {
    background: var(--clr-accent-dim);
    color: #fff;
}

@media (max-width: 480px) {
    .mini-cart {
        width: calc(100vw - 24px);
        right: -12px;
    }
}

/* ============================================================
   MOBILE TOUCH TARGET & RESPONSIVENESS FIXES
   ============================================================ */

/* Touch targets: minimum 44px for mobile (WCAG 2.5.5) */
@media (max-width: 768px) {
    .cart-qty-btn { min-width: 44px; min-height: 44px; }
    .cart-remove-btn { min-width: 44px; min-height: 44px; }
    .topbar-right a { min-height: 44px; display: inline-flex; align-items: center; }
    .checkout-steps { flex-wrap: wrap; gap: 8px; }
}

/* Auth page (tag-bejelentkezes.php) mobile */
@media (max-width: 480px) {
    .auth-card { padding: 24px 16px; }
    .auth-title { font-size: 20px; }
    .pw-toggle { min-width: 44px; min-height: 44px; }
}

/* Checkout page mobile overflow fix */
@media (max-width: 560px) {
    .checkout-section { padding: 20px 16px; }
}

/* Table overflow prevention */
.cart-table, .checkout-section { overflow-x: auto; }
table { max-width: 100%; }

/* ============================================
   KOMPONENS RENDSZER — includes/sections/
   ============================================ */

/* Hero section */
.hero-section {
    padding: 80px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: var(--clr-surface);
    background-size: cover;
    background-position: center;
    text-align: center;
}
.hero-with-image {
    min-height: 600px;
}
.hero-no-image {
    min-height: 360px;
    background: linear-gradient(135deg, var(--clr-surface) 0%, var(--clr-bg) 60%, var(--clr-accent-light) 100%);
}
.hero-section h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--clr-text);
}
/* Scoped: csak .hero-section-ön belül — nem írja felül a sötét hero (.hero) fehér subtitle-jét */
.hero-section .hero-subtitle {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services grid */
.services-section { padding: 60px 0; }
.services-section h2 { text-align: center; margin-bottom: 40px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
}
.service-card i,
.service-icon { font-size: 2rem; color: var(--clr-accent); display: block; margin-bottom: 16px; }
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-accent-light);
    border-radius: 14px;
    margin: 0 auto 16px;
    font-size: 1.5rem;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--clr-text-muted); }

/* About section */
.about-section { padding: 60px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--clr-text-muted); line-height: 1.8; }
.about-image img { width: 100%; border-radius: var(--radius-lg); }
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
}

/* Testimonials */
.testimonials-section { padding: 60px 0; background: var(--clr-surface); }
.testimonials-section h2 { text-align: center; margin-bottom: 40px; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 24px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--clr-accent-light);
    font-family: Georgia, serif;
    pointer-events: none;
}
.testimonial-text { color: var(--clr-text-muted); font-style: italic; margin-bottom: 16px; line-height: 1.6; padding-top: 12px; }
.testimonial-author strong { display: block; color: var(--clr-text); }
.testimonial-author span { font-size: 0.875rem; color: var(--clr-text-muted); }

/* CTA section */
.cta-section-component { padding: 80px 0; background: var(--clr-accent); text-align: center; color: white; }
.cta-section-component h2 { color: white; margin-bottom: 16px; }
.cta-section-component p { color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-section-component .btn-primary { background: white; color: var(--clr-accent); }

/* Contact bar */
.contact-bar-section { background: var(--clr-surface-2); padding: 16px 0; }
.contact-bar { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.contact-bar-item { display: flex; align-items: center; gap: 8px; color: var(--clr-text); text-decoration: none; font-size: 0.95rem; }
.contact-bar-item i { color: var(--clr-accent); }

/* Nav — new component nav structure */
.site-header { position: sticky; top: 0; z-index: 1000; background: white; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.navbar { width: 100%; }
.nav-container { display: flex; align-items: center; gap: 16px; max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.nav-logo img.logo { height: 48px; max-height: 48px; width: auto; display: inline-block; }
.nav-logo-text { font-size: 1.2rem; font-weight: 700; color: var(--clr-accent); }
.nav-menu { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 12px; border-radius: 6px; text-decoration: none; color: var(--clr-text); font-size: 0.95rem; font-weight: 500; transition: background 0.15s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { background: var(--clr-surface); color: var(--clr-accent); }
.nav-link.active { font-weight: 600; }
.nav-badge { background: var(--clr-accent); color: white; font-size: 10px; padding: 1px 6px; border-radius: 10px; margin-left: 4px; }
.nav-arrow { font-size: 10px; transition: transform 0.2s; }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown { display: none; position: absolute; top: 100%; left: 0; background: white; border: 1px solid var(--clr-border); border-radius: var(--radius-md); min-width: 180px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); list-style: none; margin: 4px 0 0; padding: 6px; z-index: 100; }
.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown-link { display: block; padding: 8px 12px; border-radius: 6px; text-decoration: none; color: var(--clr-text); font-size: 0.9rem; transition: background 0.15s; }
.nav-dropdown-link:hover { background: var(--clr-surface); color: var(--clr-accent); }
.nav-cta { white-space: nowrap; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--clr-text); border-radius: 2px; }
.nav-mobile { display: none; background: white; border-top: none; padding: 16px 24px; }
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; margin: 0; padding: 0; }
.nav-mobile-link { display: block; padding: 12px 0; color: var(--clr-text); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--clr-surface-2); }
.nav-mobile-sub { list-style: none; margin: 0; padding: 0 0 0 16px; }
.nav-mobile-sub li a { display: block; padding: 8px 0; color: var(--clr-text-muted); text-decoration: none; font-size: 0.9rem; }

/* FAQ section */
.faq-section { padding: 60px 0; }
.faq-section h2 { text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--clr-border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 16px 20px; font-size: 1rem; font-weight: 600; cursor: pointer; color: var(--clr-text); display: flex; justify-content: space-between; align-items: center; }
.faq-question:hover { background: var(--clr-surface); }
.faq-question i { color: var(--clr-accent); font-size: 0.85rem; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-question i,
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; color: var(--clr-text-muted); line-height: 1.7; }
.faq-item.active .faq-answer,
.faq-item.open .faq-answer { max-height: 500px; padding: 0 20px 16px; }

/* Responsive */
@media (max-width: 768px) {
    .hero-section { padding: 48px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .nav-hamburger { display: flex; }
    .nav-cta { display: none; }
}

/* ---- Contact section (component) ---- */
.contact-section { padding: 60px 0; }
.contact-info h2 { margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; color: var(--clr-text); font-size: 0.95rem; }
.contact-info-item i { color: var(--clr-accent); margin-top: 2px; flex-shrink: 0; width: 16px; text-align: center; }
.contact-info-item a { color: var(--clr-text); text-decoration: none; }
.contact-info-item a:hover { color: var(--clr-accent); }
.contact-map { margin-top: 24px; border-radius: var(--radius-md); overflow: hidden; }
.contact-form-wrap h3 { margin-bottom: 24px; }
.btn-full { width: 100%; }

/* ---- Blog preview ---- */
.blog-preview-section { padding: 60px 0; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.blog-card { background: var(--clr-surface); border-radius: var(--radius-lg); overflow: hidden; }
.blog-card-image img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card-body { padding: 20px; }
.blog-card-date { font-size: 0.8rem; color: var(--clr-text-muted); display: block; margin-bottom: 8px; }
.blog-card h3 { margin-bottom: 8px; font-size: 1rem; }
.blog-card h3 a { color: var(--clr-text); text-decoration: none; }
.blog-card h3 a:hover { color: var(--clr-accent); }
.blog-card p { font-size: 0.875rem; color: var(--clr-text-muted); margin-bottom: 12px; line-height: 1.5; }
.blog-card-link { font-size: 0.875rem; color: var(--clr-accent); text-decoration: none; font-weight: 600; }

/* ---- Team section ---- */
.team-section { padding: 60px 0; }
.team-section h2 { margin-bottom: 32px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.team-card { text-align: center; }
.team-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }
.team-card h3 { margin-bottom: 4px; font-size: 1rem; }
.team-card p { color: var(--clr-text-muted); font-size: 0.875rem; }

/* ---- Detailed services ---- */
.detailed-services { padding: 40px 0; }
.detailed-service-item { border-bottom: 1px solid var(--clr-border); padding: 24px 0; }
.detailed-service-item:last-child { border-bottom: none; }
.detailed-service-item h3 { margin-bottom: 8px; }
.detailed-service-item p { color: var(--clr-text-muted); line-height: 1.7; }
.service-price { margin-top: 12px; font-weight: 700; color: var(--clr-accent); font-size: 1.1rem; }

/* ---- Breadcrumb (new semantic style) ---- */
.breadcrumb ol { display: flex; gap: 8px; align-items: center; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.breadcrumb li { font-size: 0.875rem; color: var(--clr-text-muted); }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; }
.breadcrumb li a { color: var(--clr-accent); text-decoration: none; }
.breadcrumb li[aria-current] { color: var(--clr-text); }
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

/* === PRICING SECTION === */
.pricing-section { padding: 60px 0; background: var(--clr-surface); }
.pricing-subtitle { text-align: center; color: var(--clr-text-muted); margin-bottom: 40px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.pricing-card { background: white; border: 2px solid var(--clr-border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; position: relative; }
.pricing-card.featured { border-color: var(--clr-accent); box-shadow: 0 8px 32px rgba(13,161,204,0.15); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--clr-accent); color: white; padding: 4px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; white-space: nowrap; }
.pricing-price { margin: 16px 0; display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.price-amount { font-size: 2.5rem; font-weight: 700; color: var(--clr-text); }
.price-currency { font-size: 1rem; color: var(--clr-text-muted); }
.price-period { font-size: 0.9rem; color: var(--clr-text-muted); }
.pricing-desc { color: var(--clr-text-muted); font-size: 0.875rem; margin-bottom: 24px; line-height: 1.5; }

/* === JOBS SECTION === */
.jobs-section { padding: 60px 0; }
.jobs-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.job-card { display: flex; justify-content: space-between; align-items: center; background: var(--clr-surface); border-radius: var(--radius-md); padding: 20px 24px; gap: 16px; }
@media (max-width: 640px) { .job-card { flex-direction: column; align-items: flex-start; } }
.job-card h3 { margin-bottom: 6px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.875rem; color: var(--clr-text-muted); }
.job-meta span { display: flex; align-items: center; gap: 6px; }
.job-meta i { color: var(--clr-accent); }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; white-space: nowrap; }

/* === ONBOARDING WIZARD === */
.wizard-steps {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--clr-border);
  overflow-x: auto;
}
.wizard-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: var(--clr-text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color 0.2s;
}
.wizard-step.active { color: var(--clr-accent); border-bottom-color: var(--clr-accent); }
.wizard-step.completed { color: var(--clr-success); border-bottom-color: var(--clr-success); }
.step-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--clr-surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.wizard-step.active .step-num { background: var(--clr-accent); color: white; }
.wizard-step.completed .step-num { background: var(--clr-success); color: white; }
.wizard-panel { display: none; }
.wizard-panel.active { display: block; }
.wizard-nav {
  display: flex; justify-content: space-between;
  margin-top: 32px; padding-top: 16px;
  border-top: 1px solid var(--clr-border);
}

/* === PACKAGE CARDS === */
.package-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-bottom: 24px;
}
.package-card {
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px; cursor: pointer;
  transition: all 0.2s; text-align: center;
}
.package-card:hover, .package-card.selected {
  border-color: var(--clr-accent);
  background: var(--clr-accent-light);
}
.package-card .pkg-icon { font-size: 2.5rem; margin-bottom: 12px; }
.package-card h3 { margin-bottom: 8px; }
.package-card p { font-size: 0.875rem; color: var(--clr-text-muted); margin-bottom: 16px; }

/* === NEWSLETTER SECTION === */
.newsletter-section { padding: 60px 0; background: var(--clr-accent); color: white; }
.newsletter-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.newsletter-text { flex: 1; min-width: 200px; }
.newsletter-text h2 { color: white; margin-bottom: 8px; }
.newsletter-text p { color: rgba(255,255,255,0.85); }
.newsletter-form { display: flex; gap: 12px; flex: 1; min-width: 280px; }
.newsletter-form input {
  flex: 1; padding: 12px 16px; border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-main); font-size: 1rem;
}
.newsletter-section .btn-primary { background: white; color: var(--clr-accent); white-space: nowrap; }
@media (max-width: 640px) {
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { flex-direction: column; width: 100%; }
}

/* === GALLERY SECTION === */
.gallery-section { padding: 60px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px; margin-top: 32px;
}
.gallery-item { display: block; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-md); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* === MOBILE NAV FULLSCREEN === */
.nav-mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 999;
  padding: 80px 24px 24px;
  overflow-y: auto;
  border-top: none;
}
.nav-mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--clr-text);
  padding: 8px;
}

/* === HERO HAS BG === */
.hero-section.hero-with-image { color: white; }
.hero-section.hero-with-image h1 { color: white; }
.hero-section.hero-with-image .hero-subtitle { color: rgba(255,255,255,0.9); }
.hero-section.hero-with-image .hero-overlay { display: block; }
.hero-section .hero-overlay { display: none; position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.hero-section { position: relative; }
.hero-section .hero-content { position: relative; z-index: 1; }

/* ---- Hero Video Banner ---- */
.hero-video { position: relative; overflow: hidden; }
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-video .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}
.hero-video .hero-content { position: relative; z-index: 2; }
@media (max-width: 768px) {
    .hero-video-bg { display: none; }
    .hero-video { background-size: cover; background-position: center; }
}

/* === SCROLL REVEAL (alias) === */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* === SITE FOOTER ALIAS === */
.site-footer { margin-top: auto; }
.footer-contact .footer-heading,
.footer-nav .footer-heading,
.footer-legal-links .footer-heading { /* inherits .footer-heading */ }

/* === COOKIE BANNER === */
#bh-consent-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 560px;
  background: white; border: 1px solid var(--clr-border); border-radius: var(--radius-lg);
  padding: 20px 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); z-index: 9999; display: none;
}
.consent-text { font-size: 0.9rem; color: var(--clr-text); margin-bottom: 16px; line-height: 1.5; }
.consent-text a { color: var(--clr-accent); }
.consent-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
#consent-accept-all {
  background: var(--clr-accent); color: white; border: none;
  padding: 10px 20px; border-radius: var(--radius-md);
  font-family: var(--font-main); font-weight: 600; cursor: pointer; font-size: 0.9rem;
}
#consent-customize, #consent-reject {
  background: var(--clr-surface); color: var(--clr-text); border: 1px solid var(--clr-border);
  padding: 10px 16px; border-radius: var(--radius-md); font-family: var(--font-main); cursor: pointer; font-size: 0.9rem;
}
#bh-consent-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 10000; display: none; align-items: center; justify-content: center; padding: 24px;
}
.consent-modal-inner {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto;
}
.consent-option { padding: 16px 0; border-bottom: 1px solid var(--clr-border); }
.consent-option label { display: flex; align-items: center; gap: 10px; font-weight: 600; cursor: pointer; margin-bottom: 4px; }
.consent-option p { font-size: 0.85rem; color: var(--clr-text-muted); margin: 0; padding-left: 26px; }
.consent-modal-buttons { display: flex; gap: 12px; margin-top: 24px; }

/* === FORM EXTRAS === */
.form-hint { font-size: 0.8rem; color: var(--clr-text-muted); margin-top: 4px; }
.form-error { font-size: 0.8rem; color: var(--clr-danger); margin-top: 4px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-weight: normal; }
.checkbox-label input { width: auto; margin-top: 2px; flex-shrink: 0; }

/* === STAT CARDS === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--clr-border);
}
.stat-card.stat-warning { border-color: #F59E0B; background: #FFFBEB; }
.stat-card.stat-success { border-color: var(--clr-success); background: #F0FDF4; }
.stat-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--clr-accent-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon i { color: var(--clr-accent); font-size: 1.2rem; }
.stat-value { font-size: 1.5rem; font-weight: 700; color: var(--clr-text); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.8rem; color: var(--clr-text-muted); }


/* === Legal pages === */
.breadcrumb { padding: 12px 0; background: var(--clr-surface); }
.breadcrumb ol { list-style: none; display: flex; gap: 8px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px; font-size: 0.875rem; color: var(--clr-text-muted); }
.breadcrumb ol li + li::before { content: '/'; margin-right: 8px; opacity: 0.5; }
.breadcrumb ol li a { color: var(--clr-accent); text-decoration: none; }
.breadcrumb ol li a:hover { text-decoration: underline; }
.legal-section { padding: 60px 0; }
.legal-container { max-width: 800px; }
.legal-content { line-height: 1.8; color: var(--clr-text); font-size: 0.95rem; }
.legal-content p { margin-bottom: 16px; }
.legal-empty { background: var(--clr-surface); border-radius: var(--radius-lg); padding: 40px; text-align: center; color: var(--clr-text-muted); }
.legal-empty a { color: var(--clr-accent); }

/* === Blog lista === */
.blog-list-section { padding: 60px 0; }
.blog-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.blog-header h1 { margin: 0; }
.blog-search { display: flex; gap: 8px; }
.blog-search input { padding: 8px 16px; border: 1px solid var(--clr-border); border-radius: var(--radius-md); font-family: var(--font-main); font-size: 0.9rem; outline: none; }
.blog-search input:focus { border-color: var(--clr-accent); }
.blog-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.blog-cat { padding: 6px 16px; border-radius: 20px; background: var(--clr-surface); color: var(--clr-text-muted); text-decoration: none; font-size: 0.875rem; transition: all 0.2s; }
.blog-cat:hover, .blog-cat.active { background: var(--clr-accent); color: white; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card { background: var(--clr-surface); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.blog-card-image { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 20px; }
.blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; flex-wrap: wrap; }
.blog-card-cat { font-size: 0.75rem; color: var(--clr-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card-date { font-size: 0.8rem; color: var(--clr-text-muted); }
.blog-card-body h2 { font-size: 1.1rem; margin: 0 0 8px; line-height: 1.4; }
.blog-card-body h2 a { color: var(--clr-text); text-decoration: none; }
.blog-card-body h2 a:hover { color: var(--clr-accent); }
.blog-card-body p { font-size: 0.9rem; color: var(--clr-text-muted); margin: 0 0 12px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-link { font-size: 0.875rem; color: var(--clr-accent); font-weight: 600; text-decoration: none; }
.blog-card-link:hover { text-decoration: underline; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 48px; flex-wrap: wrap; }
.pagination-info { color: var(--clr-text-muted); font-size: 0.9rem; }
.blog-empty { text-align: center; padding: 60px 20px; color: var(--clr-text-muted); }
.blog-empty p { margin-bottom: 16px; font-size: 1.1rem; }

/* === Expert tip === */
.expert-tip { display: flex; align-items: flex-start; gap: 8px; margin-top: 12px; padding: 10px 14px; background: var(--clr-accent-light); border-radius: var(--radius-md); font-size: 0.85rem; color: var(--clr-text); line-height: 1.5; }
.expert-tip i { color: var(--clr-accent); flex-shrink: 0; margin-top: 2px; }

/* === Referrer message bar === */
.referrer-message { background: var(--clr-accent); color: white; padding: 8px 0; font-size: 0.875rem; text-align: center; }
.referrer-message .container { display: flex; justify-content: center; align-items: center; gap: 8px; }

/* ── AI Module (v2.6.0 refined) ─────────────────────────────── */
.ai-tools-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
@media(max-width:1024px){ .ai-tools-grid { grid-template-columns:1fr; } }
.ai-tool-card { background:var(--clr-surface); border:1px solid var(--clr-border); border-radius:var(--radius-lg); padding:24px; }
.ai-tool-header { display:flex; align-items:flex-start; gap:16px; margin-bottom:20px; }
.ai-tool-header h3 { margin:0 0 4px; font-size:1rem; }
.ai-tool-header p { margin:0; color:var(--clr-text-muted); font-size:0.85rem; }
.ai-tool-icon { flex-shrink:0; width:40px; text-align:center; }
.ai-result { background:var(--clr-surface-2); border-radius:var(--radius-md); padding:16px; border-left:4px solid var(--clr-accent); }
.ai-loading { color:var(--clr-text-muted); font-size:0.9rem; padding:16px; text-align:center; }
.ai-error { color:var(--clr-danger); font-size:0.9rem; padding:12px; background:#FEF2F2; border-radius:var(--radius-md); }
.module-card.featured { border-color:var(--clr-accent); background:var(--clr-accent-light); }
.module-badge { display:inline-block; background:var(--clr-accent); color:white; padding:2px 10px; border-radius:20px; font-size:0.75rem; font-weight:600; margin-top:6px; }
.nav-badge-new { background:var(--clr-accent); color:white; padding:2px 6px; border-radius:10px; font-size:0.65rem; font-weight:700; margin-left:4px; vertical-align:middle; }
.stat-mini { background:var(--clr-surface); border-radius:var(--radius-md); padding:8px; text-align:center; }
.stat-mini div { font-size:1.1rem; font-weight:700; color:var(--clr-accent); }
.stat-mini small { color:var(--clr-text-muted); font-size:0.75rem; }

/* ── Mission Control ────────────────────────────── */
.mc-section { padding:24px 0; }
.mc-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:20px; flex-wrap:wrap; gap:16px; }
.mc-summary { display:flex; gap:8px; margin-bottom:24px; flex-wrap:wrap; }
.mc-stat-pill { padding:6px 16px; border-radius:20px; font-size:0.875rem; font-weight:600; display:inline-flex; align-items:center; gap:6px; }
.mc-stat-pill.online  { background:#D1FAE5; color:#065F46; }
.mc-stat-pill.error   { background:#FEE2E2; color:#991B1B; }
.mc-stat-pill.unknown { background:var(--clr-surface-2); color:var(--clr-text-muted); }
.mc-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:16px; }
.mc-empty { grid-column:1/-1; text-align:center; padding:48px; color:var(--clr-text-muted); background:var(--clr-surface); border-radius:var(--radius-lg); display:flex; flex-direction:column; align-items:center; gap:12px; }
.mc-card { background:var(--clr-surface); border:1px solid var(--clr-border); border-radius:var(--radius-lg); padding:20px; transition:box-shadow 0.2s; }
.mc-card:hover { box-shadow:0 4px 16px rgba(0,0,0,0.08); }
.mc-card-header { display:flex; align-items:flex-start; gap:12px; margin-bottom:12px; }
.mc-status-dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; margin-top:5px; }
.mc-card-title { flex:1; min-width:0; }
.mc-card-title strong { display:block; margin-bottom:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mc-url { font-size:0.8rem; color:var(--clr-text-muted); text-decoration:none; display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mc-url:hover { color:var(--clr-accent); }
.mc-card-badges { display:flex; gap:4px; flex-wrap:wrap; flex-shrink:0; }
.mc-stats { display:flex; gap:12px; margin-bottom:12px; flex-wrap:wrap; padding:12px; background:var(--clr-surface-2); border-radius:var(--radius-md); }
.mc-stat { text-align:center; min-width:48px; }
.mc-stat span { display:block; font-size:1.1rem; font-weight:700; color:var(--clr-text); line-height:1.1; }
.mc-stat small { font-size:0.7rem; color:var(--clr-text-muted); }
.mc-stat.warning span { color:#F59E0B; }
.mc-error-msg { background:#FEF2F2; color:#991B1B; padding:8px 12px; border-radius:var(--radius-md); font-size:0.8rem; margin-bottom:8px; }
.mc-last-seen { font-size:0.75rem; color:var(--clr-text-muted); margin-bottom:12px; }
.mc-card-actions { display:flex; gap:6px; flex-wrap:wrap; }

/* ── Mission Control — new table layout ── */
.mc-header-bar { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:16px; flex-wrap:wrap; gap:12px; }
.mc-header-bar h2 { margin:0 0 4px; font-size:1.1rem; }
.mc-header-actions { display:flex; gap:8px; flex-wrap:wrap; align-items:center; }
.mc-status-row { display:flex; gap:8px; margin-bottom:20px; flex-wrap:wrap; }
.mc-pill { padding:4px 14px; border-radius:16px; font-size:0.8rem; font-weight:600; }
.mc-pill.online  { background:#D1FAE5; color:#065F46; }
.mc-pill.error   { background:#FEE2E2; color:#991B1B; }
.mc-pill.unknown { background:var(--clr-surface-2); color:var(--clr-text-muted); }
.mc-table { width:100%; border-collapse:collapse; font-size:13px; background:var(--clr-surface); border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--clr-border); }
.mc-table thead th { padding:10px 14px; text-align:left; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.4px; color:var(--clr-text-muted); background:var(--clr-surface-2); border-bottom:1px solid var(--clr-border); }
.mc-table tbody tr { border-bottom:1px solid var(--clr-border); transition:background 0.15s; }
.mc-table tbody tr:last-child { border-bottom:none; }
.mc-table tbody tr:hover { background:var(--clr-surface-2); }
.mc-table td { padding:10px 14px; vertical-align:middle; }
.mc-dot { display:inline-block; width:9px; height:9px; border-radius:50%; flex-shrink:0; }
.mc-url-small { display:block; font-size:0.75rem; color:var(--clr-text-muted); text-decoration:none; }
.mc-url-small:hover { color:var(--clr-accent); }
.mc-status-badge { font-size:12px; font-weight:600; }
.mc-error-small { font-size:11px; color:#991B1B; margin-top:2px; }
.mc-mini-stats { display:flex; gap:10px; flex-wrap:wrap; font-size:12px; color:var(--clr-text-muted); }

/* ── AI module cards ── */
.module-card-ai { border-left:3px solid #8B5CF6 !important; background:linear-gradient(to right,rgba(139,92,246,0.04),transparent) !important; }
.badge-ai { background:#EDE9FE; color:#6D28D9; font-size:11px; padding:2px 8px; border-radius:6px; font-weight:600; }

/* MailerLite campaigns */
.ml-campaigns-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--clr-border);
}
.ml-campaigns-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ml-campaign-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  gap: 16px;
  flex-wrap: wrap;
}
.ml-campaign-info { flex: 1; }
.ml-campaign-info strong { display: block; font-size: 0.9rem; }
.ml-campaign-info small  { color: var(--clr-text-muted); font-size: 0.8rem; }
.ml-campaign-stats { display: flex; gap: 20px; }
.ml-stat           { text-align: center; min-width: 48px; }
.ml-stat span      { display: block; font-weight: 700; font-size: 1rem; color: var(--clr-accent); }
.ml-stat small     { font-size: 0.7rem; color: var(--clr-text-muted); }
.checkout-optin    { margin-bottom: 16px; }

/* === v3.0.4 === */

/* Termékek sub-tabs */
.sub-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--clr-border);
  margin-bottom: 24px;
  overflow-x: auto;
}
.sub-tab {
  padding: 10px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.sub-tab:hover {
  color: var(--clr-accent);
  background: var(--clr-accent-light);
}
.sub-tab.active {
  color: var(--clr-accent);
  border-bottom-color: var(--clr-accent);
  font-weight: 600;
}

/* Gyors hozzáadás keret */
.quick-add-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-accent);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}
.quick-add-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* Haladó beállítások figyelmeztető */
.advanced-warning {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  border-left: 4px solid #F59E0B;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  animation: warning-pulse 2s ease-in-out infinite;
}
.advanced-warning-icon { font-size: 1.5rem; flex-shrink: 0; }
.advanced-warning strong { display: block; color: #92400E; margin-bottom: 6px; font-size: 0.95rem; }
.advanced-warning p { color: #92400E; font-size: 0.875rem; line-height: 1.6; margin: 0; }
@keyframes warning-pulse {
  0%, 100% { border-left-color: #F59E0B; box-shadow: none; }
  50% { border-left-color: #DC2626; box-shadow: 0 0 0 3px rgba(245,158,11,0.2); }
}

/* Wizard redesign */
.wizard-wrap { max-width: 860px; margin: 0 auto; padding: 0 24px 40px; }
.wizard-progress { height: 4px; background: var(--clr-border); border-radius: 2px; margin-bottom: 32px; overflow: hidden; }
.wizard-progress-fill { height: 100%; background: var(--clr-accent); border-radius: 2px; transition: width 0.4s ease; }
.wizard-steps-bar { display: flex; justify-content: space-between; margin-bottom: 40px; position: relative; }
.wizard-steps-bar::before { content: ''; position: absolute; top: 20px; left: 10%; right: 10%; height: 2px; background: var(--clr-border); z-index: 0; }
.wizard-step-item { display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; z-index: 1; flex: 1; }
.wizard-step-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--clr-surface-2); border: 2px solid var(--clr-border); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.2s; }
.wizard-step-item.active .wizard-step-circle { background: var(--clr-accent); border-color: var(--clr-accent); box-shadow: 0 0 0 4px rgba(13,161,204,0.2); }
.wizard-step-item.done .wizard-step-circle { background: var(--clr-success); border-color: var(--clr-success); }
.wizard-step-label { font-size: 0.75rem; color: var(--clr-text-muted); font-weight: 500; }
.wizard-step-item.active .wizard-step-label { color: var(--clr-accent); font-weight: 700; }
.wizard-panels { min-height: 400px; }
.wizard-panel { display: none; }
.wizard-panel.active { display: block; }
.wizard-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; color: var(--clr-text); }
.wizard-subtitle { color: var(--clr-text-muted); margin-bottom: 32px; font-size: 0.95rem; }
.wizard-profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
@media (max-width: 768px) { .wizard-profile-grid { grid-template-columns: 1fr; } }
.wizard-profile-card { border: 2px solid var(--clr-border); border-radius: var(--radius-lg); padding: 28px 20px 20px; cursor: pointer; transition: all 0.2s; text-align: center; background: white; position: relative; }
.wizard-profile-card:hover { border-color: var(--clr-accent); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(13,161,204,0.15); }
.wizard-profile-card.selected { border-color: var(--clr-accent); background: var(--clr-accent-light); }
.wizard-profile-card.selected::after { content: '✓'; position: absolute; top: 12px; right: 12px; width: 24px; height: 24px; background: var(--clr-accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; }
.profile-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.wizard-profile-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.wizard-profile-card p { font-size: 0.85rem; color: var(--clr-text-muted); margin-bottom: 16px; line-height: 1.5; }
.profile-badge { display: inline-block; padding: 3px 10px; background: var(--clr-accent-light); color: var(--clr-accent); border-radius: 20px; font-size: 0.75rem; font-weight: 600; margin-bottom: 16px; }
.profile-select-btn { width: 100%; margin-top: 8px; }
.wizard-nav { display: flex; align-items: center; gap: 12px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--clr-border); }

/* MC summary pills */
.mc-summary-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

/* ============================================
   ÚJ SZEKCIÓK — problem, process, trust-bar,
   stats, category-bar, showroom
   ============================================ */

/* PROBLEM SECTION */
.problem-section {
    padding: 80px 0;
    background: var(--clr-surface);
}
.problem-section .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--clr-text);
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.problem-card {
    background: var(--clr-bg);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.problem-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(220, 38, 38, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-danger);
    font-size: 18px;
}
.problem-card .icon-symbol {
    font-size: 18px;
    line-height: 1;
    color: var(--clr-danger);
    font-style: normal;
}
.problem-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text);
}
.problem-card p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}
@media (max-width: 640px) {
    .problem-grid { grid-template-columns: 1fr; }
}

/* PROCESS SECTION */
.process-section {
    padding: 80px 0;
    background: var(--clr-bg);
}
.process-section .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--clr-text);
}
.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(1/6 * 100% + 24px);
    right: calc(1/6 * 100% + 24px);
    height: 2px;
    background: var(--clr-border);
}
.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.process-step h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text);
}
.process-step p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}
@media (max-width: 640px) {
    .process-steps { flex-direction: column; gap: 32px; }
    .process-steps::before { display: none; }
}

/* TRUST BAR */
.trust-bar {
    padding: 20px 0;
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}
.trust-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-bar-label {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
}
.trust-logos {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.trust-logo-pill {
    padding: 4px 12px;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

/* STATS SECTION */
.stats-section {
    padding: 60px 0;
    background: var(--clr-surface);
}
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-accent);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
}

/* CATEGORY BAR */
.category-bar {
    padding: 24px 0;
    background: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
    overflow-x: auto;
}
.category-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 8px;
    min-width: max-content;
}
.category-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    background: var(--clr-bg);
    text-decoration: none;
    color: var(--clr-text);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}
.category-pill:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: var(--clr-surface);
}
.category-pill .cat-icon {
    font-size: 1.25rem;
}

/* SHOWROOM SECTION */
.showroom-section {
    padding: 80px 0;
    background: var(--clr-bg);
}
.showroom-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.showroom-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--clr-surface);
    aspect-ratio: 4/3;
}
.showroom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showroom-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 240px;
    background: var(--clr-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}
.showroom-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.showroom-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--clr-text);
}
.showroom-content p {
    color: var(--clr-text-muted);
    line-height: 1.6;
}
.showroom-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.showroom-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--clr-text);
}
@media (max-width: 768px) {
    .showroom-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   B PROFIL WEBSHOP — topbar, checklist,
   services-grid-4, hero overlay buttons
   ============================================ */

/* TOPBAR — csak webshop módban jelenik meg */
.topbar-webshop {
    background: var(--clr-text);
    color: var(--clr-white);
    padding: 8px 0;
    font-size: 0.8rem;
}
.topbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left { display: flex; gap: 16px; }
.topbar-item { color: rgba(255,255,255,0.8); font-size: 0.8rem; }
.topbar-right { display: flex; gap: 16px; }
.topbar-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}
.topbar-link:hover { color: var(--clr-white); }
@media (max-width: 640px) {
    .topbar-left { display: none; }
}

/* ABOUT CHECKLIST */
.about-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}
.about-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--clr-text);
}
.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--clr-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* SERVICES GRID 4-COL */
.services-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
    .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .services-grid-4 { grid-template-columns: 1fr; }
}

/* HERO WITH IMAGE — CTA button overrides */
.hero-with-image .btn-primary {
    background: var(--clr-accent);
    color: white;
}
.hero-with-image .btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

/* ============================================
   KARRIER OLDAL
   ============================================ */

.karrier-intro {
    padding: 40px 0;
    background: var(--clr-bg);
}
.karrier-intro-inner {
    max-width: 720px;
    text-align: center;
}
.karrier-intro p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.karrier-jobs {
    padding: 80px 0;
    background: var(--clr-surface);
}
.karrier-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}
.karrier-job-card {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.job-card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.job-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-text);
}
.job-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.job-meta-item {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}
.job-type {
    color: var(--clr-accent);
}
.job-description {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}
.job-apply-btn {
    align-self: flex-start;
}
.karrier-empty {
    text-align: center;
    padding: 48px;
    color: var(--clr-text-muted);
}

.karrier-form-section {
    padding: 80px 0;
    background: var(--clr-bg);
}
.karrier-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.karrier-benefits {
    padding: 80px 0;
    background: var(--clr-surface);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.benefit-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--clr-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.benefit-icon {
    font-size: 2rem;
}
.benefit-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text);
}
.benefit-card p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}
@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .benefits-grid { grid-template-columns: 1fr; }
}

/* ======================================================
   Köszönöm / Visszaigazoló oldal
   ====================================================== */
.koszonom-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}
.koszonom-inner {
    text-align: center;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.koszonom-icon {
    font-size: 72px;
    line-height: 1;
}
.koszonom-icon-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--clr-success);
}
.koszonom-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-text);
}
.koszonom-subtitle {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}
.koszonom-info-box {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: left;
    width: 100%;
}
.koszonom-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.9rem;
    color: var(--clr-text);
}
.koszonom-info-item:last-child {
    border-bottom: none;
}
.koszonom-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-size: 0.875rem;
}
.koszonom-step {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-text-muted);
}
.koszonom-step.active {
    color: var(--clr-accent);
    font-weight: 600;
}
.koszonom-step.done {
    color: var(--clr-success);
}
.koszonom-step-sep {
    color: var(--clr-border);
}
.koszonom-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* === References page === */
.references-section { padding: 80px 0; }
.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.reference-card {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.reference-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.reference-card-image {
    aspect-ratio: 16/9;
    background: var(--clr-surface);
    overflow: hidden;
}
.reference-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.reference-card-image-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    font-size: 2rem;
}
.reference-card-body { padding: 20px; }
.reference-client {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-accent);
    margin-bottom: 6px;
}
.reference-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 8px;
}
.reference-result {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}
.references-filter {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.ref-filter-btn {
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid var(--clr-border);
    background: var(--clr-bg);
    cursor: pointer;
    font-size: 0.875rem;
    transition: var(--transition);
}
.ref-filter-btn.active,
.ref-filter-btn:hover {
    background: var(--clr-accent);
    color: white;
    border-color: var(--clr-accent);
}

/* === Categories page === */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.category-card {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: var(--clr-text);
    transition: var(--transition);
    display: block;
}
.category-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--clr-accent);
}
.category-card-image {
    aspect-ratio: 4/3;
    background: var(--clr-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.category-card-body {
    padding: 16px;
    text-align: center;
}
.category-card-name {
    font-weight: 600;
    font-size: 0.95rem;
}
.category-card-count {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
}
@media (max-width: 1024px) {
    .references-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .references-grid { grid-template-columns: 1fr; }
}
