/* ==========================================================================
   MEVA CITY — Stylesheet
   ========================================================================== */

/* Visually hidden – přístupné pro screen readery a vyhledávače, vizuálně skryté */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --bg: #f5f5f3;
    --bg-alt: #eceae6;
    --bg-dark: #1c1d1f;
    --bg-footer: #0e0f11;
    --ink: #1c1d1f;
    --ink-soft: #3d3f42;
    --muted: #6b6e73;
    --muted-light: #9a9da2;
    --line: rgba(28, 29, 31, 0.1);
    --line-dark: rgba(255, 255, 255, 0.08);
    --accent: #e8721c;
    --accent-hover: #d1610f;
    --accent-light: #fdf4ea;
    --white: #ffffff;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1560px;
    --container-narrow: 1400px;
    --radius: 4px;
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    font-weight: 400;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--white); }

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

.italic { font-style: normal; color: var(--accent); font-weight: 700; }

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
    background: var(--bg-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.topbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left { color: rgba(255, 255, 255, 0.7); }

.topbar-contacts { display: flex; gap: 24px; align-items: center; }

.topbar a {
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}

.topbar a:hover { color: var(--accent); }

.topbar svg { width: 14px; height: 14px; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06); }

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
}

.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
    transition: opacity var(--transition);
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.85;
}

.nav-logo-sub {
    display: inline-block;
    padding-left: 14px;
    border-left: 1px solid var(--line);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.3;
    max-width: 110px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    filter: none;
}

.nav-logo-footer {
    margin-bottom: 24px;
}

.nav-logo-footer .nav-logo-sub {
    color: rgba(255, 255, 255, 0.5);
    border-left-color: rgba(255, 255, 255, 0.15);
}

/* Legacy — ponecháno pro případné další použití (avatar karty) */
.nav-logo-mark {
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--white);
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    font-weight: 500;
}

.nav-logo-text {
    font-family: var(--display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.01em;
    line-height: 1;
}

.nav-logo-text small {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
    list-style: none;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a:hover,
.nav-menu a.active { color: var(--accent); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 114, 28, 0.3);
}

.nav-cta svg { transition: transform var(--transition); }
.nav-cta:hover svg { transform: translateX(3px); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   CATEGORY BAR (šedá sekce kategorií - ladí s designem)
   ========================================================================== */
.category-bar {
    background: var(--bg-alt);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.category-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
}

.category-bar a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    transition: all var(--transition);
    flex: 1;
    justify-content: center;
    border-right: 1px solid var(--line);
    position: relative;
}

.category-bar a:last-child { border-right: none; }

.category-bar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.category-bar a:hover {
    color: var(--accent);
    background: var(--white);
}

.category-bar a:hover::after {
    width: 60%;
}

.category-bar a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: currentColor;
}

/* ==========================================================================
   HERO S VIDEEM
   ========================================================================== */
.hero {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 70px 40px 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(14, 15, 17, 0.08) 0%, rgba(14, 15, 17, 0.30) 100%),
        linear-gradient(90deg, rgba(14, 15, 17, 0.32) 0%, transparent 60%);
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 32px;
    width: auto;
    align-self: flex-start;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
}

.hero-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(232, 114, 28, 0.6);
    animation: pulseDot 2.5s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(232, 114, 28, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(232, 114, 28, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 114, 28, 0); }
}

.hero-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(36px, 5.2vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    max-width: 900px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1.2s 0.5s forwards;
}

.hero-title .italic {
    font-style: normal;
    color: var(--accent);
    font-weight: 700;
}

.hero-desc {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.5;
    max-width: 580px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 1.2s 0.8s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.2s 1s forwards;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: all var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 114, 28, 0.35);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}

.btn-outline:hover {
    background: var(--ink);
    color: var(--white);
}

.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Partneři loga v hero - nyní pod tlačítky */
.hero-partners {
    margin-top: 40px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.2s 1.3s forwards;
    align-self: flex-start;
    position: relative;
}

.hero-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-partners-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.hero-partners-logos {
    display: flex;
    gap: 56px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-partner-logo {
    height: 44px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
    transition: opacity var(--transition);
}

.hero-partner-logo:hover { opacity: 1; }

/* ==========================================================================
   SECTION HEADING
   ========================================================================== */
.section {
    padding: 110px 0;
}

.section.dark {
    background: var(--bg-dark);
    color: var(--white);
}

.section.alt { background: var(--bg-alt); }

.section-head {
    max-width: 800px;
    margin-bottom: 64px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.section-title .italic {
    font-style: normal;
    color: var(--accent);
    font-weight: 700;
}

.section-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 640px;
}

.section.dark .section-lead { color: rgba(255, 255, 255, 0.7); }

/* Intro grid — title vlevo, popis vpravo, roztažené na celou šířku */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 64px;
    align-items: start;
}

.intro-grid .intro-left .section-title {
    margin-bottom: 0;
}

.intro-grid .intro-right p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 18px;
}

.intro-grid .intro-right p:last-child {
    margin-bottom: 0;
}

.intro-grid .intro-right strong {
    color: var(--ink);
    font-weight: 600;
}

@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }
}

/* ==========================================================================
   CATEGORIES GRID (kompaktnější karty kategorií jako na mevacity.cz)
   ========================================================================== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cat-card {
    position: relative;
    aspect-ratio: 5/4;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--bg-alt);
    display: block;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.cat-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.cat-card-title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cat-card-arrow {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.cat-card:hover .cat-card-arrow { transform: translateX(4px); }

/* ==========================================================================
   WHY US (šest důvodů)
   ========================================================================== */
.why {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.why-item {
    padding: 48px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background var(--transition);
}

.why-item:hover {
    background: var(--bg-alt);
}

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

.why-num {
    font-family: var(--display);
    font-style: normal;
    font-size: 36px;
    font-weight: 700;
    color: var(--muted-light);
    transition: color var(--transition);
    margin-bottom: 16px;
    display: block;
    line-height: 1;
    letter-spacing: -0.02em;
}

.why-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(47%) sepia(89%) saturate(976%) hue-rotate(357deg) brightness(93%) contrast(95%);
}

.why-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.why-text {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   PARTNERS STRIP
   ========================================================================== */
.partners-strip {
    padding: 60px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.partners-strip-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.partners-strip-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.partners-strip-logos {
    display: flex;
    gap: 56px;
    align-items: center;
    flex-wrap: wrap;
}

.partners-strip-logos img {
    height: 42px;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.65;
    transition: all var(--transition);
}

.partners-strip-logos img:hover {
    filter: none;
    opacity: 1;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.breadcrumbs-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    font-size: 13px;
    color: var(--muted);
}

.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 10px; color: var(--muted-light); }
.breadcrumbs .current { color: var(--ink); font-weight: 500; }

/* ==========================================================================
   PAGE HERO (menší hero pro podstránky)
   ========================================================================== */
.page-hero {
    padding: 80px 0 60px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
}

.page-hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: end;
}

.page-hero h1 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.page-hero h1 .italic {
    font-style: normal;
    color: var(--accent);
    font-weight: 700;
}

.page-hero-lead {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 400px;
}

/* ==========================================================================
   CONTENT / TYPOGRAFIE v podstránkách
   ========================================================================== */
.content {
    max-width: 100%;
    margin: 0 auto;
}

.content.wide { max-width: 100%; }

.content.narrow { max-width: 800px; }

.content h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 56px 0 20px;
}

.content h2 .italic {
    font-style: normal;
    color: var(--accent);
    font-weight: 700;
}

.content h2:first-child { margin-top: 0; }

.content h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 20px;
    margin: 32px 0 12px;
    color: var(--accent);
    letter-spacing: -0.01em;
}

.content p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 20px;
}

.content ul {
    list-style: none;
    margin: 16px 0 28px;
    max-width: 75ch;
}

.content ul li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 10px;
}

.content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 14px;
    height: 2px;
    background: var(--accent);
}

.content strong { color: var(--ink); font-weight: 600; }

.content-callout {
    background: var(--accent-light);
    border-left: 3px solid var(--accent);
    padding: 28px 32px;
    margin: 32px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.content-callout p { margin: 0; font-size: 17px; }
.content-callout strong { color: var(--accent-hover); }

/* ==========================================================================
   KONTAKT KARTA
   ========================================================================== */
.contact-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    margin: 40px 0;
}

.contact-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-style: normal;
    font-size: 36px;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
    letter-spacing: -0.02em;
}

.contact-avatar img { width: 100%; height: 100%; object-fit: cover; }

.contact-info-name {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.contact-info-role {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.contact-info-methods {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-info-methods a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 500;
    transition: color var(--transition);
    font-size: 15px;
}

.contact-info-methods a:hover { color: var(--accent); }
.contact-info-methods svg { width: 18px; height: 18px; color: var(--accent); }

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
}

.social-link svg {
    width: 18px;
    height: 18px;
    display: block;
    color: currentColor;
}

.social-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.social-facebook { background: #2f5f9f; }
.social-instagram { background: linear-gradient(135deg, #f58529 0%, #dd2a7b 42%, #8134af 72%, #515bd4 100%); }
.social-linkedin { background: #0077b5; }
.social-youtube { background: #e62117; }

.social-instagram svg,
.social-youtube svg { fill: none; }

.contact-card .social-links { margin-top: 16px; }
.contact-card .social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}
.contact-card .social-link svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   FORMULÁŘ
   ========================================================================== */
.form-wrap {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 48px;
    margin: 40px 0;
}

.form-title {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--muted);
    margin-bottom: 32px;
    font-size: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field { margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-field label .req { color: var(--accent); }

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: all var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 114, 28, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%236b6e73' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

/* Checkbox skupiny */
.form-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.form-check {
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px 48px 16px 20px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    user-select: none;
}

/* Nativní input úplně skryt — používáme :has() pro stylování celé položky */
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.form-check:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.form-check:has(input:checked) {
    border-color: var(--accent);
    background: var(--accent-light);
    color: var(--ink);
    font-weight: 600;
}

/* Fajfka vpravo, viditelná jen když je položka vybraná */
.form-check:has(input:checked)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 22px;
    width: 6px;
    height: 12px;
    border-right: 2.5px solid var(--accent);
    border-bottom: 2.5px solid var(--accent);
    transform: translateY(-65%) rotate(45deg);
}

.form-check:focus-within {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.form-upload {
    padding: 28px;
    border: 2px dashed var(--line);
    border-radius: var(--radius);
    text-align: center;
    background: var(--bg);
    transition: all var(--transition);
    cursor: pointer;
}

.form-upload:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.form-upload-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: var(--accent);
}

.form-upload-text { font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.form-upload-hint { font-size: 12px; color: var(--muted); }

.form-upload.dragging {
    border-color: var(--accent);
    background: var(--accent-light);
}

/* Univerzální upload list (konzultace, dotace, reseni) */
.form-upload-list:empty { display: none; }
.form-upload-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-upload-summary {
    font-size: 13px;
    color: var(--muted);
    padding: 6px 0 4px;
}
.form-upload-summary strong { color: var(--ink); }
.form-upload-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}
.form-upload-item img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.form-upload-file-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: 6px;
    color: var(--accent);
    flex-shrink: 0;
}
.form-upload-item-info {
    flex: 1;
    min-width: 0;
}
.form-upload-item-name {
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.form-upload-item-size {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}
.form-upload-item-remove {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}
.form-upload-item-remove:hover {
    background: #fee;
    color: #c33;
}

/* Upload list — náhledy nahraných souborů */
.upload-list:empty { display: none; }
.upload-list {
    margin-top: 14px;
}

.upload-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.upload-summary.over-limit {
    background: #fdecec;
    border-color: #e74c3c;
}

.upload-summary-text {
    font-size: 14px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.upload-warning {
    color: #e74c3c;
    font-weight: 500;
    font-size: 13px;
}

.upload-progress {
    height: 4px;
    background: var(--line);
    border-radius: 2px;
    overflow: hidden;
}

.upload-progress-bar {
    height: 100%;
    background: var(--accent);
    transition: width 0.2s ease;
}

.upload-summary.over-limit .upload-progress-bar {
    background: #e74c3c;
}

.upload-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.upload-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all var(--transition);
}

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

.upload-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.upload-item-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.upload-item-name {
    font-size: 13px;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.upload-item-size {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.upload-item-remove {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 6px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    flex-shrink: 0;
    transition: all var(--transition);
}

.upload-item-remove:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #fdecec;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.form-consent input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--muted);
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition);
    background: var(--white);
    margin-top: 0;
}

.form-consent input[type="checkbox"]:hover { border-color: var(--accent); }

.form-consent input[type="checkbox"]:checked {
    border-color: var(--accent);
    background: var(--accent);
}

.form-consent input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-55%, -60%) rotate(45deg);
    width: 5px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
}

.form-consent input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.form-submit {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.form-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 114, 28, 0.3);
}

/* ==========================================================================
   PRODUKTY (grid)
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

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

@media (max-width: 640px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRODUCTS CAROUSEL — horizontální slider pro "Mohlo by vás také zajímat"
   ========================================================================== */
.products-carousel {
    position: relative;
    margin: 0 -8px; /* drobný negative margin aby šipky mohly přesahovat */
}

.products-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 8px 12px;
    /* Skrýt scrollbar úplně — listujeme šipkami */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.products-carousel-track .product-card {
    scroll-snap-align: start;
}

.products-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

@media (max-width: 1100px) {
    .products-carousel-track { grid-auto-columns: calc((100% - 48px) / 3); }
}

@media (max-width: 800px) {
    .products-carousel-track { grid-auto-columns: calc((100% - 24px) / 2); }
}

@media (max-width: 540px) {
    .products-carousel-track { grid-auto-columns: 85%; }
}

/* Tlačítka šipek */
.carousel-btn {
    position: absolute;
    top: calc(50% - 30px); /* nad popisem, na úrovni obrázku */
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all var(--transition);
}

.carousel-btn:hover:not(:disabled) {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(232, 114, 28, 0.25);
}

.carousel-btn:disabled {
    opacity: 0;
    pointer-events: none;
}

.carousel-btn-prev { left: -24px; }
.carousel-btn-next { right: -24px; }

@media (max-width: 600px) {
    .carousel-btn { width: 40px; height: 40px; }
    .carousel-btn-prev { left: -8px; }
    .carousel-btn-next { right: -8px; }
}

/* ==========================================================================
   PRODUCT VIDEO — sekce s videem na produktové stránce
   ========================================================================== */
.product-video-wrap {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: #000;
}

.product-video-wrap video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* YouTube embed — klikatelný náhled (funguje i přes file://) */
.product-video {
    margin-top: 40px;
    max-width: 760px;
}
.product-video-embed {
    position: relative;
    display: block;
    width: 100%;
    max-width: 760px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: #000;
    margin-top: 16px;
    text-decoration: none;
}
.product-video-embed img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}
.product-video-embed:hover img {
    transform: scale(1.03);
    opacity: 0.9;
}
.product-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
    transition: transform 0.25s ease;
}
.product-video-embed:hover .product-video-play {
    transform: translate(-50%, -50%) scale(1.1);
}
.product-video-note {
    margin-top: 12px;
    padding: 12px 16px;
    background: var(--bg-alt);
    border-left: 3px solid var(--accent);
    border-radius: 6px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

/* ==========================================================================
   ACCESSORIES GRID — karty příslušenství
   ========================================================================== */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

@media (max-width: 900px) {
    .accessories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .accessories-grid { grid-template-columns: 1fr; }
}

.accessory-card {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.accessory-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.accessory-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.accessory-icon svg {
    width: 22px;
    height: 22px;
}

.accessory-card-title {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin: 0;
}

.accessory-card-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.accessory-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin-top: auto;
}

.accessory-card-price-amount {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.accessory-card-price-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.accessory-card-note {
    font-size: 12px;
    color: var(--muted);
    font-style: italic;
    margin-top: 4px;
}

.accessory-section-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.accessory-section-footer p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

/* ==========================================================================
   PRICE OFFER — sekce s cenovou nabídkou
   ========================================================================== */
.price-offer {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 24px;
    border: 1px solid var(--line);
}

.price-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.price-variant {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    border: 1.5px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--transition);
}

.price-variant:hover {
    border-color: var(--accent);
}

.price-variant-name {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
}

.price-variant-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price-variant-main {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-variant-vat {
    font-size: 13px;
    color: var(--muted);
}

.price-variant-incl {
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
}

.price-variant a.btn {
    margin-top: 8px;
    align-self: flex-start;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

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

.product-card-img {
    aspect-ratio: 4/3;
    background: var(--white);
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition);
}

/* Sjednocení velikosti aut v kartách užitkových elektromobilů */
/* Victory fotky mají 4:3 a vyplňují celý rám – mírně zmenšit */
.product-card[href*="victory"] .product-card-img img,
.product-card[href*="evum"] .product-card-img img {
    transform: scale(0.88);
}

.product-card[href*="victory"]:hover .product-card-img img,
.product-card[href*="evum"]:hover .product-card-img img {
    transform: scale(0.92);
}

/* Pickman fotka má auto malé – mírný zoom */
.product-card[href*="pickman"] .product-card-img img {
    transform: scale(1.10);
}

.product-card[href*="pickman"]:hover .product-card-img img {
    transform: scale(1.14);
}

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

.product-card-body {
    padding: 24px;
}

.product-card-title {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card-link {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.product-card-link:hover { gap: 10px; }

/* ==========================================================================
   PRODUCT CARD - vylepšené pro nový layout
   ========================================================================== */
a.product-card {
    color: var(--ink);
    display: block;
    text-decoration: none;
}

.product-card-img {
    position: relative;
}

.product-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    z-index: 2;
}

.product-card-perex {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 6px 0 16px;
}

/* ==========================================================================
   PRODUCT DETAIL HERO
   ========================================================================== */
.product-hero {
    padding: 60px 0 40px;
    background: var(--bg);
}

.product-hero + .section {
    padding-top: 60px;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.product-hero-gallery {
    position: relative;
}

.product-hero-main {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 16px;
}

.product-hero-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    z-index: 2;
}

.product-hero-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.product-gallery-thumb {
    aspect-ratio: 1/1;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    opacity: 0.7;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    opacity: 1;
    border-color: var(--accent);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Šipky pro listování v galerii (hero) */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
}
.product-hero-main:hover .gallery-nav {
    opacity: 1;
    pointer-events: auto;
}
.gallery-nav:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}
.gallery-nav-prev { left: 16px; }
.gallery-nav-next { right: 16px; }

.gallery-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 999px;
    z-index: 3;
    pointer-events: none;
}

/* Na mobilu jsou šipky vidět vždy a o trochu menší */
@media (max-width: 768px) {
    .gallery-nav {
        opacity: 1;
        pointer-events: auto;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.85);
    }
    .gallery-nav-prev { left: 8px; }
    .gallery-nav-next { right: 8px; }
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: lightboxFadeIn 0.2s ease;
}
@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--accent);
}
.lightbox-close {
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
}
.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 999px;
}
.lightbox-caption {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 8px;
    max-width: 80vw;
}

/* ==========================================================================
   GALERIE REALIZACÍ (galerie.html)
   ========================================================================== */
.gallery-section {
    margin-bottom: 80px;
}

.gallery-section-head {
    max-width: 800px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--accent);
}

.gallery-section-head h2 {
    font-family: var(--display);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 8px 0 16px;
}

.gallery-section-head p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 16px;
}

.gallery-realization {
    margin-bottom: 56px;
}

.gallery-realization h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 8px;
}

.gallery-realization-desc {
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 800px;
    font-size: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-tile {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-alt);
    cursor: zoom-in;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-tile:hover img {
    transform: scale(1.05);
}

.gallery-cta {
    margin-top: 40px;
    padding: 40px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.gallery-cta > div {
    flex: 1;
    min-width: 280px;
}

.gallery-cta h3 {
    font-family: var(--display);
    font-size: 24px;
    margin: 0 0 8px;
    color: var(--ink);
}

.gallery-cta p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-section { margin-bottom: 56px; }
    .gallery-realization { margin-bottom: 40px; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .gallery-cta {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   DĚKOVACÍ STRÁNKA (dekujeme.html)
   ========================================================================== */
.thanks-hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #fafaf7 0%, #ffffff 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 60px 56px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    display: block;
    animation: thanksPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes thanksPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.thanks-card .eyebrow {
    color: var(--accent);
    font-weight: 600;
}

.thanks-card h1 {
    margin: 12px 0 20px;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.thanks-lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 48px;
}

.thanks-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
    margin: 0 0 48px;
}

.thanks-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--bg-alt);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}

.thanks-step-num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 600;
    font-size: 16px;
}

.thanks-step strong {
    display: block;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 4px;
}

.thanks-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
}

.thanks-redirect {
    padding-top: 36px;
    border-top: 1px solid var(--line);
}

.thanks-redirect p {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 20px;
}

.thanks-redirect strong {
    color: var(--accent);
    font-size: 17px;
    font-family: var(--display);
}

@media (max-width: 600px) {
    .thanks-hero { padding: 48px 16px 64px; }
    .thanks-card { padding: 40px 24px; }
    .thanks-icon { width: 80px; height: 80px; margin-bottom: 20px; }
    .thanks-lead { font-size: 16px; margin-bottom: 36px; }
    .thanks-steps { gap: 12px; margin-bottom: 36px; }
    .thanks-step { padding: 14px 16px; }
}
@media (max-width: 768px) {
    .lightbox-overlay { padding: 16px; }
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
}

.product-hero-info h1 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    letter-spacing: -0.035em;
    margin: 12px 0 8px;
}

.product-hero-name {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 24px;
}

.product-hero-manufacturer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.product-hero-manufacturer:hover {
    background: var(--accent);
    color: var(--white);
}

.product-hero-manufacturer .manufacturer-label {
    opacity: 0.7;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.08em;
}

.product-hero-manufacturer .manufacturer-name {
    font-weight: 700;
}

.product-hero-perex {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
}

.product-hero-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.product-hero-spec {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    background: var(--bg-alt);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    transition: all var(--transition);
}

.product-hero-spec:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.product-spec-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.product-spec-value {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}

.product-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==========================================================================
   PRODUCT DESCRIPTION & TABLE
   ========================================================================== */
.product-subhead {
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin: 40px 0 20px;
}

.product-plusy,
.product-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.product-plusy li,
.product-list li {
    position: relative;
    padding-left: 32px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.product-plusy li::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.product-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 11px;
    width: 14px;
    height: 2px;
    background: var(--accent);
}

.product-spec-table-wrap {
    overflow-x: auto;
    margin: 0 0 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.product-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: var(--white);
}

.product-spec-table th,
.product-spec-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.product-spec-table thead th {
    background: var(--bg-alt);
    font-family: var(--display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--ink);
}

.product-spec-table tbody th,
.product-spec-table tbody td:first-child {
    font-weight: 500;
    color: var(--ink);
    background: var(--bg);
    width: 35%;
}

.product-spec-table tbody td {
    color: var(--ink-soft);
}

.product-spec-table tr:last-child th,
.product-spec-table tr:last-child td {
    border-bottom: none;
}

.product-equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.product-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 32px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-top: 40px;
}

@media (max-width: 900px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .product-hero-gallery {
        position: static;
    }
    .product-hero-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
    .product-hero-specs {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .product-equipment-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .product-download {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ==========================================================================
   FOOTER (tmavší)
   ========================================================================== */
.footer {
    background: var(--bg-footer);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 32px;
    margin-top: 0;
}

.footer-main {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line-dark);
}

.footer-brand .nav-logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col h5 {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-contact p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact strong { color: var(--white); font-weight: 600; }

.footer-contact a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin-bottom: 6px;
    transition: color var(--transition);
}

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

.footer-contact .social-links { margin-top: 12px; margin-bottom: 14px; }
.footer-contact .social-link {
    display: inline-flex;
    color: var(--white);
    margin: 0;
}
.footer-contact .social-link:hover { color: var(--white); }

.footer-bottom {
    max-width: var(--container);
    margin: 32px auto 0;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--accent); }

.footer-counter-link {
    color: rgba(255, 255, 255, 0.45);
    opacity: 0.45;
    text-decoration: none;
}

.footer-counter-link:hover {
    color: var(--accent);
    opacity: 1;
}

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .nav-menu { display: none; }
    .nav-menu.mobile-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px 40px;
        gap: 16px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    }
    .nav-toggle { display: flex; }
    .nav-cta span:not(.btn-arrow) { display: none; }
    .nav-cta {
        padding: 10px 14px;
        margin-left: auto;
        margin-right: 12px;
    }
    .nav-inner {
        gap: 12px;
    }

    .cat-grid { grid-template-columns: 1fr 1fr; }
    .cat-grid .cat-card:last-child { grid-column: 1 / -1; aspect-ratio: 16/7; }

    .why-grid { grid-template-columns: 1fr 1fr; }

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

    .page-hero-inner { grid-template-columns: 1fr; gap: 30px; }

    .category-bar-inner { flex-direction: column; }
    .category-bar a { border-right: none; border-bottom: 1px solid var(--line); justify-content: flex-start; }
    .category-bar a:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
    .container,
    .nav-inner,
    .topbar-inner,
    .hero-content,
    .breadcrumbs-inner,
    .page-hero-inner,
    .partners-strip-inner,
    .footer-main,
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .topbar-left { display: none; }
    .topbar-contacts { gap: 16px; font-size: 12px; }

    .section { padding: 70px 0; }

    .nav-logo-img { height: 40px; }

    .hero { min-height: 70vh; }
    .hero-content { padding: 80px 20px 60px; }

    .hero-partners {
        margin-top: 40px;
        padding-top: 24px;
        gap: 20px;
    }

    .hero-partners-logos {
        gap: 28px;
    }

    .hero-partner-logo { height: 32px; }

    .cat-grid { grid-template-columns: 1fr; gap: 16px; }
    .cat-card {
        aspect-ratio: 16/10;
        height: 240px;
    }
    .cat-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .why-grid { grid-template-columns: 1fr; }
    .why-item { padding: 32px 24px; }

    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-checks { grid-template-columns: 1fr; }
    .form-wrap { padding: 24px; }

    .contact-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
    .contact-avatar { margin: 0 auto; }
    .contact-info-methods { justify-content: center; }

    .footer-main { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .partners-strip-inner { flex-direction: column; text-align: center; gap: 24px; }
    .partners-strip-logos { gap: 32px; justify-content: center; }

    /* Mobil: page-hero kompaktnější, text se nepřekrývá */
    .page-hero { padding: 40px 0 30px; }
    .page-hero h1 { font-size: clamp(28px, 8vw, 40px); }
    .page-hero-lead { font-size: 15px; }
    .page-hero-inner { padding-left: 20px; padding-right: 20px; gap: 16px; }

    /* Mobil: category bar – scrollovatelná */
    .category-bar-inner {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .category-bar-inner::-webkit-scrollbar { display: none; }
    .category-bar-inner a {
        flex-shrink: 0;
        white-space: nowrap;
    }

    /* Mobil: karty produktů – kompaktní layout */
    .product-card-img { aspect-ratio: 16/10; }
    .product-card-body { padding: 18px 20px; }
    .product-card-title { font-size: 16px; }
    .product-card-perex { font-size: 13.5px; line-height: 1.55; }

    /* Mobil: nadpisy menší aby se nepřekrývaly */
    .section h2 { font-size: clamp(26px, 6vw, 36px); }
    h1 { word-wrap: break-word; overflow-wrap: break-word; }
    h2 { word-wrap: break-word; overflow-wrap: break-word; }
}

/* ==========================================================================
   VIEW SWITCHER (eshop / showroom)
   ========================================================================== */
.view-switch {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
}

.view-switch-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.view-switch-label {
    color: var(--muted);
}

.view-switch-buttons {
    display: flex;
    gap: 4px;
    margin-left: auto;
    background: var(--white);
    padding: 4px;
    border-radius: 999px;
    border: 1px solid var(--line);
}

.view-switch-btn {
    padding: 8px 16px;
    color: var(--muted);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 500;
    border-radius: 999px;
    transition: all var(--transition);
}

.view-switch-btn:hover {
    color: var(--ink);
}

.view-switch-btn.active {
    background: var(--accent);
    color: var(--white);
}

@media (max-width: 768px) {
    .view-switch-inner {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 11px;
        gap: 8px;
    }
    .view-switch-label { display: none; }
}

/* ==========================================================================
   PRODUCT VARIANTS - galerie variant nástaveb (GASTONE)
   ========================================================================== */
.product-variants {
    margin: 56px 0 32px;
}

.product-variants-head {
    margin-bottom: 32px;
}

.product-variants-head .eyebrow {
    color: var(--accent);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.product-variants-head h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0 0 12px;
    color: var(--ink);
}

.product-variants-head h3 .accent {
    color: var(--accent);
}

.product-variants-head p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 75ch;
}

.product-variants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-variant-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.product-variant-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.product-variant-img {
    aspect-ratio: 4/3;
    background: var(--bg-alt);
    overflow: hidden;
}

.product-variant-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
    padding: 8px;
}

.product-variant-card:hover .product-variant-img img {
    transform: scale(1.04);
}

.product-variant-body {
    padding: 20px 22px 22px;
}

.product-variant-name {
    font-family: var(--display);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-variant-desc {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 1024px) {
    .product-variants-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .product-variants-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRODUCT TEST DRIVE BANNER
   ========================================================================== */
.product-test-drive {
    margin-top: 24px;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--accent) 0%, #d35e0d 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 14px 32px rgba(232, 114, 28, 0.22);
    flex-wrap: wrap;
}

.product-test-drive-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.product-test-drive-text {
    color: white;
    flex: 1;
    min-width: 220px;
    line-height: 1.4;
}

.product-test-drive-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.product-test-drive-text span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.btn-test-drive {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    color: var(--accent);
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: 0.01em;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all var(--transition);
    flex-shrink: 0;
}

.btn-test-drive:hover {
    background: var(--ink);
    color: white;
    transform: translateY(-1px);
}

@media (max-width: 700px) {
    .product-test-drive {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .product-test-drive-icon {
        margin: 0 auto;
    }
    .btn-test-drive {
        justify-content: center;
        width: 100%;
    }
}

/* ==========================================================================
   PARTNER LINKS - klikatelná loga výrobců
   ========================================================================== */
.hero-partner-link,
.partners-strip-logos a {
    display: inline-flex;
    align-items: center;
    transition: opacity var(--transition);
    opacity: 0.85;
}

.hero-partner-link:hover,
.partners-strip-logos a:hover {
    opacity: 1;
}
