* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f6f7f9;
    margin: 0;
    color: #1f2937;
}

.horni-lista {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.hlavicka {
    max-width: 1180px;
    margin: auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: #2563eb;
}

.hlavicka-info {
    font-size: 14px;
    color: #6b7280;
}

.hlavni {
    max-width: 1180px;
    margin: auto;
    padding: 45px 24px 60px;
}

.hero {
    text-align: center;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 12px;
    color: #111827;
    letter-spacing: -1.5px;
}

.hero p {
    margin: 0 auto;
    max-width: 720px;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.6;
}

.vyhledavani {
    max-width: 900px;
    margin: 30px auto 0;
    background-color: white;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    position: relative;
}

.vyhledavaci-radek {
    display: flex;
    gap: 10px;
}

.vyhledavani input {
    flex: 1;
    padding: 17px 18px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 11px;
    outline: none;
}

.vyhledavani input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

button {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background-color: #111827;
    color: white;
    transition: 0.2s;
}

button:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
}

.tlacitko-hledat {
    min-width: 130px;
}

.rychle-info {
    max-width: 900px;
    margin: 15px auto 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    color: #6b7280;
    font-size: 13px;
}

.naseptavac {
    position: absolute;
    left: 12px;
    right: 152px;
    top: calc(100% - 5px);
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 50;
    display: none;
}

.naseptavac.aktivni {
    display: block;
}

.navrh {
    padding: 13px 15px;
    border-bottom: 1px solid #f1f3f5;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
}

.navrh:last-child {
    border-bottom: none;
}

.navrh:hover {
    background-color: #f9fafb;
}

.navrh-nazev {
    font-weight: 700;
    color: #111827;
}

.navrh-meta {
    color: #9ca3af;
    font-size: 12px;
}

.zadny-navrh {
    padding: 14px 15px;
    color: #9ca3af;
    text-align: left;
    font-size: 13px;
}

.demo-info {
    margin-top: 35px;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 14px 18px;
    border-radius: 12px;
    color: #1e40af;
    font-size: 14px;
    line-height: 1.5;
}

.sekce {
    margin-top: 40px;
}

.sekce-nadpis {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.sekce-popis {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
}

.doporucene-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.doporucena-karta {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s;
}

.doporucena-karta:hover {
    transform: translateY(-4px);
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.doporucena-obrazek {
    height: 190px;
    background-color: #f9fafb;
}

.doporucena-obrazek img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.doporucena-obsah {
    padding: 16px;
}

.doporucena-znacka {
    font-size: 12px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 5px;
}

.doporucena-nazev {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}

.doporucena-spodni {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    border-top: 1px solid #e5e7eb;
    margin-top: 15px;
    padding-top: 13px;
}

.doporucena-pocet {
    color: #6b7280;
    font-size: 12px;
}

.doporucena-cena {
    font-size: 20px;
    font-weight: 800;
    color: #16a34a;
}

.proc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.proc-box {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
}

.proc-ikona {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eff6ff;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 15px;
}

.proc-box h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #111827;
}

.proc-box p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.kategorie-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.kategorie {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 14px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}

.kategorie:hover {
    transform: translateY(-4px);
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.kategorie.aktivni {
    border: 2px solid #2563eb;
    background-color: #eff6ff;
}

.kategorie-ikona {
    font-size: 32px;
    margin-bottom: 10px;
}

.kategorie-nazev {
    font-size: 16px;
    font-weight: 800;
}

.kategorie-malym {
    margin-top: 5px;
    font-size: 12px;
    color: #9ca3af;
}

.jak-to-funguje {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
}

.kroky {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.krok {
    text-align: center;
    padding: 20px;
}

.krok-cislo {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111827;
    color: white;
    font-weight: 800;
}

.krok h3 {
    margin: 0 0 7px;
}

.krok p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.filtry {
    padding: 24px;
    background-color: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.filtry-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 15px;
}

.filtr {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.filtr label {
    font-weight: 700;
    font-size: 13px;
}

.filtr input,
.filtr select,
.filtry-tlacitka select {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #d1d5db;
    border-radius: 9px;
    font-size: 14px;
    background-color: white;
}

.filtry-tlacitka {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.filtry-tlacitka select {
    max-width: 230px;
}

.tlacitko-reset {
    background-color: #f3f4f6;
    color: #374151;
}

#vysledek {
    margin-top: 30px;
}

.vysledky-box {
    background-color: white;
    padding: 26px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.vysledky-hlavicka {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
}

.vysledky-hlavicka h2 {
    margin: 0;
}

.pocet {
    color: #6b7280;
    font-size: 14px;
    margin-top: 7px;
}

.produkty-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 25px;
}

.produkt-karta {
    border: 1px solid #e5e7eb;
    padding: 16px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.produkt-karta:hover {
    transform: translateY(-4px);
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.produkt-obrazek {
    height: 230px;
    background-color: #f9fafb;
    border-radius: 10px;
    overflow: hidden;
}

.produkt-obrazek img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.produkt-nazev {
    font-size: 18px;
    font-weight: 800;
    margin-top: 15px;
}

.produkt-znacka {
    margin-top: 6px;
    color: #2563eb;
    font-weight: 700;
    font-size: 13px;
}

.produkt-kategorie {
    margin-top: 6px;
    color: #6b7280;
    font-size: 12px;
}

.produkt-spodni {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.nabidky-pocet {
    font-size: 13px;
    color: #6b7280;
}

.produkt-cena-popis {
    font-size: 11px;
    color: #9ca3af;
}

.produkt-cena {
    font-size: 23px;
    font-weight: 800;
    color: #16a34a;
}

.produkt-tlacitko {
    margin-top: 15px;
    padding: 12px;
    border-radius: 9px;
    text-align: center;
    background-color: #111827;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.zadny-vysledek {
    text-align: center;
    padding: 50px;
    color: #6b7280;
}

.detail-produktu {
    margin-top: 30px;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 26px;
}

.detail-zpet {
    margin-bottom: 20px;
}

.detail-zpet button {
    background-color: #f3f4f6;
    color: #111827;
}

.detail-horni {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
}

.detail-obrazek {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
}

.detail-obrazek img {
    width: 100%;
}

.detail-info h2 {
    margin-top: 0;
    font-size: 32px;
}

.detail-stitek {
    display: inline-block;
    background-color: #eff6ff;
    color: #1d4ed8;
    padding: 7px 11px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.detail-znacka {
    color: #2563eb;
    font-weight: 800;
    margin-bottom: 10px;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 20px;
}

.detail-meta-box {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 13px;
}

.detail-meta-box span {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 5px;
}

.detail-nabidky-nadpis {
    margin-top: 35px;
    font-size: 22px;
    font-weight: 800;
}

.detail-nabidka {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid #e5e7eb;
}

.detail-obchod {
    font-size: 17px;
    font-weight: 800;
}

.detail-radek {
    margin-top: 6px;
    font-size: 13px;
    color: #6b7280;
}

.detail-cena {
    font-size: 21px;
    font-weight: 800;
}

.nejlepsi-detail {
    background-color: #f0fdf4;
}

.do-obchodu {
    display: block;
    padding: 12px 15px;
    background-color: #111827;
    color: white;
    border-radius: 9px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.nejlepsi-detail .do-obchodu {
    background-color: #16a34a;
}

.historie-box {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.historie-hlavicka {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.historie-statistiky {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.historie-stat {
    padding: 10px 13px;
    border-radius: 10px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
}

.historie-stat span {
    display: block;
    font-size: 11px;
    color: #9ca3af;
}

.graf-wrapper {
    margin-top: 25px;
    padding: 20px;
    border-radius: 14px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    overflow-x: auto;
}

.graf {
    min-width: 650px;
}

.graf svg {
    width: 100%;
    height: 280px;
}

.graf-popisky {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    text-align: center;
    font-size: 12px;
    color: #6b7280;
}

footer {
    margin-top: 50px;
    background-color: white;
    border-top: 1px solid #e5e7eb;
}

.paticka {
    max-width: 1180px;
    margin: auto;
    padding: 25px 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #6b7280;
    font-size: 13px;
}

@media (max-width: 950px) {

    .doporucene-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .proc-grid {
        grid-template-columns: 1fr;
    }

    .kategorie-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .filtry-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .produkty-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .kroky {
        grid-template-columns: 1fr;
    }

    .detail-horni {
        grid-template-columns: 1fr;
    }

    .detail-meta {
        grid-template-columns: repeat(2,1fr);
    }

    .detail-nabidka {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {

    .hlavicka-info {
        display: none;
    }

    .hlavni {
        padding: 30px 15px 45px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .vyhledavaci-radek {
        flex-direction: column;
    }

    .naseptavac {
        right: 12px;
        top: 75px;
    }

    .doporucene-grid {
        grid-template-columns: 1fr;
    }

    .kategorie-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .filtry-grid {
        grid-template-columns: 1fr;
    }

    .filtry-tlacitka {
        flex-direction: column;
        align-items: stretch;
    }

    .filtry-tlacitka select {
        max-width: none;
    }

    .produkty-grid {
        grid-template-columns: 1fr;
    }

    .detail-meta {
        grid-template-columns: 1fr;
    }

    .detail-nabidka {
        grid-template-columns: 1fr;
    }

    .historie-hlavicka {
        flex-direction: column;
    }

    .paticka {
        flex-direction: column;
    }
}

/* ===== SROVNEJSTYL DESIGN V1 ===== */

:root {
    --ss-red: #e11d2e;
    --ss-red-dark: #bd1524;
    --ss-black: #111111;
    --ss-dark: #1a1a1a;
    --ss-text: #202124;
    --ss-muted: #70757d;
    --ss-border: #e8e8e8;
    --ss-soft: #f7f7f7;
    --ss-white: #ffffff;
}

body {
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    background:
        linear-gradient(
            180deg,
            #ffffff 0,
            #ffffff 560px,
            #f7f7f8 560px,
            #f7f7f8 100%
        );
    color: var(--ss-text);
}

/* HEADER */

.horni-lista {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 12px rgba(0,0,0,0.035);
}

.hlavicka {
    max-width: 1240px;
    min-height: 76px;
    padding: 14px 26px;
}

.logo {
    position: relative;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1.8px;
    color: var(--ss-black);
}

.logo span {
    color: var(--ss-red);
}

.logo::after {
    content: "";
    position: absolute;
    left: 1px;
    bottom: -5px;
    width: 31px;
    height: 3px;
    border-radius: 20px;
    background: var(--ss-red);
}

.hlavicka-info {
    color: #8a8a8a;
    font-size: 13px;
}

#tlacitkoOblibene {
    border: 1px solid #dedede !important;
    background: #ffffff !important;
    color: #222222 !important;
    border-radius: 999px !important;
    padding: 9px 13px !important;
    transition: 0.2s !important;
}

#tlacitkoOblibene:hover {
    border-color: var(--ss-red) !important;
    color: var(--ss-red) !important;
    transform: translateY(-1px);
}

#pocetOblibenych {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    margin-left: 4px;
    padding: 0 5px;
    border-radius: 20px;
    background: var(--ss-red);
    color: #ffffff;
    font-size: 10px;
}

#jazykCs,
#jazykEn {
    border-radius: 999px !important;
    padding: 8px 10px !important;
}

#jazykCs {
    border-color: var(--ss-black) !important;
    background: var(--ss-black) !important;
    color: #fff !important;
}

#jazykEn {
    border-color: #dedede !important;
    color: #666 !important;
}

/* MAIN */

.hlavni {
    max-width: 1240px;
    padding: 64px 26px 70px;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 66px 35px 54px;
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(225,29,46,0.42),
            transparent 31%
        ),
        radial-gradient(
            circle at 15% 100%,
            rgba(225,29,46,0.15),
            transparent 34%
        ),
        linear-gradient(
            125deg,
            #101010 0%,
            #171717 55%,
            #090909 100%
        );
    box-shadow: 0 26px 65px rgba(0,0,0,0.15);
}

.hero::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -120px;
    top: -170px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}

.hero h1 {
    position: relative;
    max-width: 850px;
    margin: 0 auto 15px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -2.8px;
    font-weight: 900;
}

.hero p {
    position: relative;
    max-width: 680px;
    color: rgba(255,255,255,0.69);
    font-size: 17px;
    line-height: 1.65;
}

/* SEARCH */

.vyhledavani {
    position: relative;
    max-width: 860px;
    margin-top: 34px;
    padding: 7px;
    border: 0;
    border-radius: 17px;
    background: #ffffff;
    box-shadow:
        0 15px 42px rgba(0,0,0,0.28),
        0 0 0 1px rgba(255,255,255,0.08);
}

.vyhledavani input {
    height: 57px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    color: #171717;
    font-size: 16px;
}

.vyhledavani input::placeholder {
    color: #a0a0a0;
}

.vyhledavani input:focus {
    border: 0;
    box-shadow: none;
}

button {
    background: var(--ss-black);
    border-radius: 11px;
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
}

button:hover {
    background: var(--ss-red);
    transform: translateY(-1px);
}

.tlacitko-hledat {
    min-width: 145px;
    background:
        linear-gradient(
            135deg,
            #eb2335,
            #cf1425
        );
    box-shadow: 0 8px 20px rgba(225,29,46,0.28);
}

.tlacitko-hledat:hover {
    background:
        linear-gradient(
            135deg,
            #f1283c,
            #bd1020
        );
    box-shadow: 0 10px 25px rgba(225,29,46,0.38);
}

.rychle-info {
    position: relative;
    margin-top: 24px;
    gap: 12px 22px;
    color: rgba(255,255,255,0.65);
    font-size: 12px;
}

.rychle-info span {
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
}

.naseptavac {
    left: 7px;
    right: 159px;
    border: 0;
    border-radius: 13px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* DEVELOPMENT INFO */

.demo-info {
    margin-top: 26px;
    padding: 12px 16px;
    border: 1px solid #f1d7d9;
    border-radius: 12px;
    background: #fff7f7;
    color: #8f333b;
    font-size: 12px;
}

/* SECTIONS */

.sekce {
    margin-top: 58px;
}

.sekce-nadpis {
    margin-bottom: 7px;
    color: var(--ss-black);
    font-size: 27px;
    letter-spacing: -0.8px;
    font-weight: 900;
}

.sekce-popis {
    margin-bottom: 22px;
    color: var(--ss-muted);
}

/* PRODUCT CARDS */

.doporucene-grid {
    gap: 20px;
}

.doporucena-karta {
    border: 1px solid var(--ss-border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 5px 16px rgba(0,0,0,0.025);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.doporucena-karta:hover {
    transform: translateY(-6px);
    border-color: rgba(225,29,46,0.35);
    box-shadow: 0 18px 38px rgba(0,0,0,0.09);
}

.doporucena-obrazek {
    height: 215px;
    margin: 7px;
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            #fafafa,
            #f2f2f2
        );
}

.doporucena-obsah {
    padding: 13px 17px 17px;
}

.doporucena-znacka,
.produkt-znacka,
.detail-znacka {
    color: var(--ss-red);
}

.doporucena-nazev {
    min-height: 40px;
    font-size: 16px;
    line-height: 1.25;
}

.doporucena-spodni {
    border-top-color: #eeeeee;
}

.doporucena-cena,
.produkt-cena {
    color: var(--ss-black);
    letter-spacing: -0.5px;
}

/* CATEGORIES */

.kategorie-grid {
    gap: 14px;
}

.kategorie {
    position: relative;
    overflow: hidden;
    min-height: 148px;
    padding: 25px 12px;
    border: 1px solid var(--ss-border);
    border-radius: 19px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.025);
}

.kategorie::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--ss-red);
    transform: translateX(-50%);
    transition: width 0.2s ease;
}

.kategorie:hover {
    transform: translateY(-5px);
    border-color: #f0c3c7;
    box-shadow: 0 15px 30px rgba(0,0,0,0.07);
}

.kategorie:hover::after {
    width: 55%;
}

.kategorie.aktivni {
    border: 2px solid var(--ss-red);
    background: #fff6f7;
}

.kategorie-ikona {
    font-size: 35px;
}

/* WHY / HOW */

.proc-grid {
    gap: 18px;
}

.proc-box {
    border: 1px solid var(--ss-border);
    border-radius: 20px;
    padding: 27px;
    box-shadow: 0 5px 16px rgba(0,0,0,0.025);
}

.proc-ikona {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff1f2;
}

.jak-to-funguje {
    border: 0;
    border-radius: 24px;
    padding: 34px;
    background: var(--ss-black);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.jak-to-funguje .sekce-nadpis,
.jak-to-funguje h3 {
    color: #ffffff;
}

.jak-to-funguje p {
    color: rgba(255,255,255,0.62);
}

.krok-cislo {
    width: 46px;
    height: 46px;
    background: var(--ss-red);
    box-shadow: 0 8px 18px rgba(225,29,46,0.28);
}

/* FILTERS */

.filtry {
    padding: 27px;
    border: 1px solid var(--ss-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.035);
}

.filtr input,
.filtr select,
.filtry-tlacitka select {
    min-height: 44px;
    border: 1px solid #dedede;
    border-radius: 11px;
    outline: 0;
}

.filtr input:focus,
.filtr select:focus,
.filtry-tlacitka select:focus {
    border-color: var(--ss-red);
    box-shadow: 0 0 0 3px rgba(225,29,46,0.08);
}

/* SEARCH RESULTS */

.vysledky-box {
    border: 1px solid var(--ss-border);
    border-radius: 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.035);
}

.produkty-grid {
    gap: 21px;
}

.produkt-karta {
    padding: 10px;
    border: 1px solid var(--ss-border);
    border-radius: 19px;
    background: #ffffff;
}

.produkt-karta:hover {
    border-color: rgba(225,29,46,0.35);
    box-shadow: 0 18px 38px rgba(0,0,0,0.09);
}

.produkt-obrazek {
    height: 245px;
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            #fafafa,
            #f1f1f1
        );
}

.produkt-nazev,
.produkt-znacka,
.produkt-kategorie,
.produkt-spodni,
.produkt-tlacitko {
    margin-left: 6px;
    margin-right: 6px;
}

.produkt-nazev {
    margin-top: 17px;
}

.produkt-tlacitko {
    margin-bottom: 6px;
    background: var(--ss-black);
    border-radius: 11px;
}

.produkt-karta:hover .produkt-tlacitko {
    background: var(--ss-red);
}

/* PRODUCT DETAIL */

.detail-produktu {
    border: 1px solid var(--ss-border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.05);
}

.detail-obrazek {
    border-color: #eeeeee;
    border-radius: 18px;
}

.detail-info h2 {
    color: var(--ss-black);
    font-size: 35px;
    letter-spacing: -1px;
}

.detail-stitek {
    background: #fff0f2;
    color: var(--ss-red-dark);
}

.detail-meta-box,
.historie-stat,
.graf-wrapper {
    background: #fafafa;
    border-color: #eeeeee;
}

.detail-nabidka {
    padding: 20px 14px;
    border-radius: 12px;
    border-top: 1px solid #eeeeee;
}

.nejlepsi-detail {
    background: #f7fbf8;
}

.do-obchodu {
    background: var(--ss-black);
    border-radius: 11px;
}

.do-obchodu:hover {
    background: var(--ss-red);
}

.nejlepsi-detail .do-obchodu {
    background: var(--ss-red);
}

/* FOOTER */

footer {
    margin-top: 75px;
    border-top: 1px solid #e8e8e8;
    background: #111111;
}

.paticka {
    max-width: 1240px;
    padding: 30px 26px;
    color: #999999;
}

/* MOBILE */

@media (max-width: 650px) {

    .hlavicka {
        min-height: 66px;
        padding: 11px 15px;
        gap: 8px;
    }

    .logo {
        font-size: 24px;
        letter-spacing: -1.2px;
    }

    #tlacitkoOblibene {
        padding: 7px 9px !important;
        font-size: 11px !important;
    }

    #jazykCs,
    #jazykEn {
        padding: 7px 8px !important;
        font-size: 10px !important;
    }

    .hlavni {
        padding: 22px 13px 45px;
    }

    .hero {
        padding: 47px 17px 34px;
        border-radius: 22px;
    }

    .hero h1 {
        font-size: 38px;
        letter-spacing: -1.8px;
    }

    .hero p {
        font-size: 14px;
    }

    .vyhledavani {
        padding: 6px;
        margin-top: 25px;
    }

    .vyhledavani input {
        height: 52px;
    }

    .tlacitko-hledat {
        width: 100%;
        min-height: 50px;
    }

    .naseptavac {
        left: 6px;
        right: 6px;
        top: 66px;
    }

    .rychle-info {
        gap: 7px;
    }

    .rychle-info span {
        font-size: 10px;
        padding: 6px 8px;
    }

    .sekce {
        margin-top: 42px;
    }

    .sekce-nadpis {
        font-size: 23px;
    }

    .doporucena-obrazek {
        height: 250px;
    }

    .kategorie {
        min-height: 130px;
        padding: 21px 8px;
    }

    .jak-to-funguje {
        padding: 25px 16px;
    }

    .filtry {
        padding: 20px 15px;
    }

    .detail-produktu {
        padding: 17px;
        border-radius: 19px;
    }

    .detail-info h2 {
        font-size: 28px;
    }
}


/* ===== SROVNEJSTYL DESIGN V2 DARK ===== */

:root {
    --ss-red: #f0182f;
    --ss-red-light: #ff263e;
    --ss-bg: #050505;
    --ss-panel: #101012;
    --ss-panel-light: #17171a;
    --ss-line: rgba(255,255,255,0.11);
    --ss-white: #ffffff;
    --ss-muted: #a0a0a8;
}

html {
    background: #030303;
}

body {
    margin: 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(240,24,47,0.15),
            transparent 25%
        ),
        radial-gradient(
            circle at 5% 48%,
            rgba(240,24,47,0.05),
            transparent 22%
        ),
        #050505;
}


/* HEADER */

.horni-lista {
    background: rgba(3,3,3,0.97);
    border-bottom:
        1px solid
        rgba(255,255,255,0.09);
    box-shadow:
        0 8px 30px
        rgba(0,0,0,0.32);
    backdrop-filter:
        blur(16px);
}

.hlavicka {
    max-width: 1240px;
    min-height: 116px;
    padding: 9px 26px;
    gap: 22px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.logo::after {
    display: none;
}

.logo-obrazek {
    display: block;
    width: 98px;
    height: 98px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow:
        0 0 0 1px
        rgba(255,255,255,0.08),
        0 0 30px
        rgba(240,24,47,0.22);
}

.hlavicka-info {
    color: #99999f;
}

#tlacitkoOblibene {
    border-color:
        rgba(255,255,255,0.18)
        !important;
    background:
        rgba(255,255,255,0.04)
        !important;
    color: white !important;
}

#tlacitkoOblibene:hover {
    border-color:
        var(--ss-red)
        !important;
    background:
        rgba(240,24,47,0.12)
        !important;
    color: white !important;
}

#pocetOblibenych {
    background:
        var(--ss-red);
}

#jazykCs {
    border-color:
        var(--ss-red)
        !important;
    background:
        var(--ss-red)
        !important;
    color:
        #ffffff
        !important;
}

#jazykEn {
    border-color:
        rgba(255,255,255,0.18)
        !important;
    background:
        rgba(255,255,255,0.04)
        !important;
    color:
        #ccccd1
        !important;
}


/* PAGE */

.hlavni {
    max-width: none;
    padding: 0 0 70px;
    background: transparent;
}


/* HERO */

.hero {
    position: relative;
    isolation: isolate;

    max-width: 1240px;
    min-height: 410px;

    margin:
        34px auto 0;

    padding:
        62px 58px 48px;

    overflow: hidden;

    border:
        1px solid
        rgba(240,24,47,0.36);

    border-radius: 28px;

    text-align: left;

    background:
        radial-gradient(
            circle at 87% 25%,
            rgba(240,24,47,0.40),
            transparent 24%
        ),
        radial-gradient(
            circle at 68% 110%,
            rgba(240,24,47,0.17),
            transparent 35%
        ),
        linear-gradient(
            118deg,
            #060607 0%,
            #111113 58%,
            #1d070c 100%
        );

    box-shadow:
        0 30px 70px
        rgba(0,0,0,0.48),
        inset 0 0 70px
        rgba(240,24,47,0.035);
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -2;

    opacity: 0.4;

    background:
        linear-gradient(
            115deg,
            transparent 0 72%,
            rgba(255,255,255,0.05)
            72.2% 72.5%,
            transparent 72.7%
        ),
        linear-gradient(
            70deg,
            transparent 0 84%,
            rgba(240,24,47,0.13)
            84.2% 84.5%,
            transparent 84.7%
        );
}

.hero::after {
    content: "";

    position: absolute;
    z-index: -1;

    width: 430px;
    height: 430px;

    right: -155px;
    top: -175px;

    border:
        2px solid
        rgba(240,24,47,0.25);

    border-radius: 50%;

    box-shadow:
        0 0 80px
        rgba(240,24,47,0.15);
}

.hero h1 {
    max-width: 760px;

    margin:
        0 0 17px;

    color: white;

    font-size:
        clamp(
            42px,
            5.1vw,
            67px
        );

    line-height: 0.98;

    letter-spacing:
        -3px;

    font-weight: 950;

    text-align: left;

    text-shadow:
        0 6px 25px
        rgba(0,0,0,0.4);
}

.hero p {
    max-width: 680px;

    margin: 0;

    color: #c5c5ca;

    font-size: 17px;

    line-height: 1.65;

    text-align: left;
}


/* SEARCH */

.vyhledavani {
    max-width: 810px;

    margin:
        30px 0 0;

    padding: 6px;

    border:
        1px solid
        rgba(255,255,255,0.14);

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 18px 40px
        rgba(0,0,0,0.38),
        0 0 34px
        rgba(240,24,47,0.12);
}

.vyhledavani input {
    height: 56px;
    color: #171719;
    background: white;
}

.tlacitko-hledat {
    min-width: 150px;

    background:
        linear-gradient(
            135deg,
            #ff263e,
            #d90d24
        );

    box-shadow:
        0 9px 24px
        rgba(240,24,47,0.34);
}

.tlacitko-hledat:hover {
    background:
        linear-gradient(
            135deg,
            #ff3047,
            #e41129
        );

    box-shadow:
        0 12px 30px
        rgba(240,24,47,0.44);
}

.rychle-info {
    justify-content:
        flex-start;

    margin-top: 21px;

    gap: 9px;

    color: #d4d4d8;
}

.rychle-info span {
    padding:
        7px 11px;

    border:
        1px solid
        rgba(255,255,255,0.11);

    background:
        rgba(255,255,255,0.035);
}


/* DEV INFO */

.demo-info {
    max-width: 1188px;

    margin:
        18px auto 0;

    padding:
        12px 16px;

    border-color:
        rgba(240,24,47,0.30);

    background:
        rgba(240,24,47,0.07);

    color:
        #d7a7ad;
}

.demo-info strong {
    color:
        #ff6273;
}


/* SECTIONS */

.sekce {
    max-width: 1240px;

    margin:
        0 auto;

    padding:
        54px 26px 0;
}

.sekce-nadpis {
    color: white;

    font-size: 29px;

    letter-spacing:
        -0.9px;
}

.sekce-popis {
    color: #92929a;

    margin-bottom:
        22px;
}


/* PRODUCT CARDS */

.doporucene-grid {
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(
                235px,
                285px
            )
        );

    justify-content:
        start;

    gap: 18px;
}

.doporucena-karta {
    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius:
        18px;

    background:
        #ffffff;

    box-shadow:
        0 16px 35px
        rgba(0,0,0,0.27);
}

.doporucena-karta:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(240,24,47,0.8);

    box-shadow:
        0 20px 42px
        rgba(0,0,0,0.35),
        0 0 0 1px
        rgba(240,24,47,0.13);
}

.doporucena-obrazek {
    height: 230px;

    margin: 0;

    border-radius:
        17px 17px 0 0;

    background:
        linear-gradient(
            145deg,
            #f7f7f8,
            #eceef1
        );
}

.doporucena-obsah {
    padding:
        15px 15px 16px;
}

.doporucena-znacka,
.produkt-znacka,
.detail-znacka {
    color:
        var(--ss-red);
}

.doporucena-nazev,
.produkt-nazev {
    color:
        #111115;
}

.doporucena-spodni {
    border-top-color:
        #ececef;
}

.doporucena-pocet {
    color:
        #777780;
}

.doporucena-cena {
    display:
        inline-block;

    padding:
        5px 8px;

    border-radius:
        8px;

    background:
        var(--ss-red);

    color:
        #ffffff;

    font-size:
        18px;

    line-height:
        1;

    box-shadow:
        0 7px 16px
        rgba(240,24,47,0.20);
}


/* CATEGORIES */

.kategorie-grid {
    gap: 13px;
}

.kategorie {
    min-height: 150px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius:
        18px;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(240,24,47,0.11),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #151518,
            #0b0b0d
        );

    color: white;

    box-shadow:
        0 12px 28px
        rgba(0,0,0,0.24);
}

.kategorie:hover {
    border-color:
        rgba(240,24,47,0.72);

    box-shadow:
        0 16px 34px
        rgba(0,0,0,0.33),
        0 0 26px
        rgba(240,24,47,0.08);
}

.kategorie.aktivni {
    border-color:
        var(--ss-red);

    background:
        linear-gradient(
            145deg,
            rgba(240,24,47,0.19),
            #0b0b0d
        );
}

.kategorie-nazev {
    color: white;
}

.kategorie-malym {
    color: #8e8e97;
}


/* WHY */

.proc-grid {
    gap: 16px;
}

.proc-box {
    border:
        1px solid
        rgba(255,255,255,0.12);

    background:
        linear-gradient(
            145deg,
            #141417,
            #0b0b0d
        );

    box-shadow:
        0 14px 30px
        rgba(0,0,0,0.24);
}

.proc-box:hover {
    border-color:
        rgba(240,24,47,0.5);
}

.proc-ikona {
    background:
        rgba(240,24,47,0.12);

    box-shadow:
        inset 0 0 0 1px
        rgba(240,24,47,0.18);
}

.proc-box h3 {
    color: white;
}

.proc-box p {
    color: #a2a2aa;
}


/* HOW IT WORKS */

.jak-to-funguje {
    margin-top: 58px;

    padding:
        34px 30px;

    border:
        1px solid
        rgba(240,24,47,0.54);

    border-radius:
        21px;

    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(240,24,47,0.20),
            transparent 25%
        ),
        linear-gradient(
            125deg,
            #0a0a0b,
            #111113
        );

    box-shadow:
        0 18px 40px
        rgba(0,0,0,0.30),
        0 0 38px
        rgba(240,24,47,0.07);
}

.jak-to-funguje
.sekce-nadpis,
.jak-to-funguje h3 {
    color: white;
}

.jak-to-funguje p {
    color:
        #aaaab2;
}

.krok-cislo {
    background:
        var(--ss-red);

    box-shadow:
        0 8px 20px
        rgba(240,24,47,0.30);
}


/* FILTERS */

.filtry {
    margin-top:
        58px;

    padding: 28px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius:
        21px;

    background:
        linear-gradient(
            145deg,
            #121214,
            #0a0a0c
        );

    box-shadow:
        0 16px 35px
        rgba(0,0,0,0.25);
}

.filtr label,
.filtry .sekce-nadpis {
    color:
        white;
}

.filtr input,
.filtr select,
.filtry-tlacitka select {
    color:
        #171719;

    background:
        white;

    border-color:
        #dedee2;
}

.filtry-tlacitka button {
    background:
        var(--ss-red);
}


/* RESULTS + DETAIL */

.vysledky-box,
.detail-produktu {
    border-color:
        rgba(255,255,255,0.12);

    background:
        #0d0d0f;

    color:
        white;

    box-shadow:
        0 16px 35px
        rgba(0,0,0,0.28);
}

.produkt-karta {
    border-color:
        rgba(255,255,255,0.12);

    background:
        white;

    box-shadow:
        0 14px 30px
        rgba(0,0,0,0.26);
}

.produkt-karta:hover {
    border-color:
        rgba(240,24,47,0.72);
}

.produkt-cena {
    color:
        #111115;
}

.produkt-tlacitko,
.do-obchodu {
    background:
        var(--ss-red);
}

.detail-info h2,
.detail-info h3 {
    color:
        white;
}

.detail-meta-box,
.historie-stat,
.graf-wrapper {
    color:
        #e6e6e9;

    border-color:
        rgba(255,255,255,0.10);

    background:
        #151518;
}

.detail-nabidka {
    border-top-color:
        rgba(255,255,255,0.10);
}


/* FOOTER */

footer {
    margin-top:
        70px;

    border-top:
        1px solid
        rgba(240,24,47,0.26);

    background:
        #020202;
}

.paticka {
    max-width:
        1240px;

    color:
        #818188;
}


/* TABLET */

@media (max-width: 950px) {

    .hlavicka {
        min-height:
            98px;
    }

    .logo-obrazek {
        width:
            78px;

        height:
            78px;
    }

    .hero {
        width:
            calc(100% - 34px);

        min-height:
            0;

        padding:
            50px 34px 40px;
    }

    .doporucene-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }
}


/* MOBILE */

@media (max-width: 650px) {

    .hlavicka {
        min-height:
            76px;

        padding:
            7px 12px;

        gap:
            8px;
    }

    .logo-obrazek {
        width:
            62px;

        height:
            62px;
    }

    .hlavicka-info {
        display:
            none;
    }

    #tlacitkoOblibene {
        padding:
            7px 8px
            !important;

        font-size:
            10px
            !important;
    }

    .hlavni {
        padding-bottom:
            46px;
    }

    .hero {
        width:
            calc(100% - 24px);

        margin-top:
            16px;

        padding:
            39px 18px 31px;

        border-radius:
            20px;
    }

    .hero h1 {
        font-size:
            39px;

        letter-spacing:
            -1.9px;
    }

    .hero p {
        font-size:
            14px;
    }

    .vyhledavani {
        margin-top:
            24px;
    }

    .rychle-info {
        gap:
            6px;
    }

    .rychle-info span {
        font-size:
            10px;

        padding:
            6px 7px;
    }

    .demo-info {
        width:
            calc(100% - 24px);
    }

    .sekce {
        padding:
            42px 12px 0;
    }

    .sekce-nadpis {
        font-size:
            24px;
    }

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

    .doporucena-obrazek {
        height:
            255px;
    }

    .kategorie-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .jak-to-funguje,
    .filtry {
        width:
            calc(100% - 24px);

        padding:
            24px 17px;
    }
}


/* ===== SROVNEJSTYL DESIGN V3 ===== */

:root {
    --v3-red: #f20d2f;
    --v3-red-bright: #ff1738;
    --v3-black: #030304;
    --v3-panel: #0c0c0e;
    --v3-panel2: #141417;
    --v3-white: #ffffff;
    --v3-muted: #a8a8ad;
    --v3-line: rgba(255,255,255,0.10);
}


/* GLOBAL */

body {
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(242,13,47,0.14),
            transparent 23%
        ),
        radial-gradient(
            circle at 10% 38%,
            rgba(242,13,47,0.045),
            transparent 24%
        ),
        #030304;
}

.hlavni {
    overflow: hidden;
}


/* HEADER */

.horni-lista {
    position: sticky;
    top: 0;
    z-index: 1000;

    background:
        rgba(3,3,4,0.93);

    border-bottom:
        1px solid
        rgba(255,255,255,0.075);

    backdrop-filter:
        blur(18px);
}

.hlavicka {
    max-width: 1280px;

    min-height: 94px;

    padding:
        8px 26px;

    display: flex;
    align-items: center;

    gap: 22px;
}

.logo-obrazek {
    width: 78px;
    height: 78px;

    border-radius: 50%;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.09),
        0 0 26px rgba(242,13,47,0.27);
}


/* TOP NAV */

.ss-v3-nav {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-left: 10px;
}

.ss-v3-nav button {
    padding:
        9px 13px;

    border: 0;

    border-radius: 9px;

    background: transparent;

    color:
        rgba(255,255,255,0.82);

    font-size: 13px;

    font-weight: 650;

    cursor: pointer;

    box-shadow: none;
}

.ss-v3-nav button:hover {
    color: white;

    background:
        rgba(242,13,47,0.11);

    transform: none;
}


/* HERO */

.hero {
    max-width: 1280px;

    min-height: 390px;

    margin:
        24px auto 0;

    padding:
        52px 55px 42px;

    border-radius: 24px;

    border:
        1px solid
        rgba(242,13,47,0.32);

    text-align: left;

    background:
        radial-gradient(
            circle at 80% 38%,
            rgba(242,13,47,0.27),
            transparent 24%
        ),
        radial-gradient(
            circle at 97% 5%,
            rgba(242,13,47,0.18),
            transparent 20%
        ),
        linear-gradient(
            115deg,
            #050506 0%,
            #09090b 58%,
            #18070a 100%
        );

    box-shadow:
        0 28px 70px
        rgba(0,0,0,0.52),
        inset 0 0 55px
        rgba(242,13,47,0.025);
}

.hero h1 {
    max-width: 720px;

    margin:
        0 0 17px;

    color: white;

    font-size:
        clamp(
            44px,
            5.25vw,
            70px
        );

    line-height: 0.91;

    letter-spacing:
        -3px;

    text-transform:
        uppercase;

    font-weight: 950;

    font-style: italic;

    text-align: left;
}

.hero h1 span {
    color:
        var(--v3-red-bright);

    text-shadow:
        0 0 28px
        rgba(242,13,47,0.22);
}

.hero p {
    max-width: 650px;

    margin: 0;

    color:
        #c4c4c9;

    font-size:
        16px;

    line-height:
        1.65;
}


/* SEARCH */

.vyhledavani {
    max-width: 760px;

    margin:
        27px 0 0;

    padding: 5px;

    border: 0;

    border-radius: 14px;

    background:
        #ffffff;

    box-shadow:
        0 14px 38px
        rgba(0,0,0,0.40),
        0 0 30px
        rgba(242,13,47,0.10);
}

.vyhledavani input {
    height: 54px;

    color: #17171a;

    font-size: 15px;
}

.tlacitko-hledat {
    min-width: 145px;

    border-radius:
        10px;

    background:
        linear-gradient(
            135deg,
            #ff1738,
            #d90827
        );

    box-shadow:
        0 7px 19px
        rgba(242,13,47,0.31);
}

.rychle-info {
    justify-content:
        flex-start;

    margin-top:
        18px;
}

.rychle-info span {
    border:
        1px solid
        rgba(255,255,255,0.12);

    background:
        rgba(5,5,6,0.42);

    color:
        #dddddf;

    backdrop-filter:
        blur(8px);
}


/* HERO SLOGAN */

.hero::after {
    content: "";

    white-space:
        pre;

    position:
        absolute;

    right: 60px;
    bottom: 52px;

    width: 230px;

    padding:
        16px 19px;

    transform:
        rotate(-4deg);

    border-radius:
        3px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #ff1738,
            #e40829
        );

    font-size:
        25px;

    line-height:
        1.05;

    font-weight:
        850;

    font-style:
        italic;

    text-align:
        center;

    box-shadow:
        0 12px 30px
        rgba(242,13,47,0.27);
}


/* DEV BOX */

.demo-info {
    max-width:
        1230px;

    margin:
        16px auto 0;

    border:
        1px solid
        rgba(242,13,47,0.23);

    background:
        rgba(242,13,47,0.045);

    color:
        #ba858b;
}


/* SECTIONS */

.sekce {
    max-width:
        1280px;

    padding:
        45px 26px 0;
}

.sekce + .sekce {
    border-top:
        1px solid
        rgba(255,255,255,0.055);
}

.sekce-nadpis {
    margin-bottom:
        5px;

    font-size:
        26px;

    font-weight:
        850;

    color:
        #ffffff;
}

.sekce-popis {
    color:
        #929298;

    font-size:
        13px;
}


/* PRODUCT GRID */

.doporucene-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0,1fr)
        );

    gap:
        16px;

    justify-content:
        stretch;
}

.doporucena-karta {
    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,0.11);

    border-radius:
        14px;

    background:
        #ffffff;

    box-shadow:
        0 14px 30px
        rgba(0,0,0,0.31);
}

.doporucena-karta:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(242,13,47,0.75);

    box-shadow:
        0 18px 38px
        rgba(0,0,0,0.38),
        0 0 22px
        rgba(242,13,47,0.08);
}

.doporucena-obrazek {
    height:
        230px;

    border-radius:
        0;
}

.doporucena-obsah {
    padding:
        13px 14px 15px;
}

.doporucena-znacka {
    font-size:
        10px;

    font-weight:
        750;

    color:
        var(--v3-red);
}

.doporucena-nazev {
    color:
        #0f0f12;

    font-size:
        14px;

    font-weight:
        800;
}

.doporucena-cena {
    padding:
        5px 8px;

    border-radius:
        6px;

    background:
        var(--v3-red);

    color:
        #ffffff;

    font-weight:
        850;
}


/* CATEGORIES */

.kategorie-grid {
    grid-template-columns:
        repeat(
            5,
            1fr
        );

    gap:
        13px;
}

.kategorie {
    min-height:
        135px;

    border-radius:
        13px;

    border:
        1px solid
        rgba(255,255,255,0.15);

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(242,13,47,0.13),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #17171a,
            #09090b
        );

    box-shadow:
        0 12px 26px
        rgba(0,0,0,0.28);
}

.kategorie:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(242,13,47,0.68);
}

.kategorie-ikona {
    font-size:
        31px;
}

.kategorie-nazev {
    color:
        white;

    font-weight:
        800;
}

.kategorie-malym {
    color:
        #8e8e94;
}


/* WHY */

.proc-grid {
    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:
        14px;
}

.proc-box {
    padding:
        22px;

    border-radius:
        13px;

    background:
        linear-gradient(
            140deg,
            #161619,
            #0c0c0e
        );

    border:
        1px solid
        rgba(255,255,255,0.12);
}

.proc-ikona {
    width:
        42px;

    height:
        42px;

    border-radius:
        10px;

    color:
        white;

    background:
        linear-gradient(
            135deg,
            #ff1738,
            #d90827
        );

    box-shadow:
        0 8px 18px
        rgba(242,13,47,0.18);
}


/* HOW */

.jak-to-funguje {
    margin-top:
        45px;

    border-radius:
        15px;

    border:
        1px solid
        rgba(242,13,47,0.62);

    background:
        radial-gradient(
            circle at 92% 52%,
            rgba(242,13,47,0.18),
            transparent 26%
        ),
        #09090b;

    box-shadow:
        0 0 35px
        rgba(242,13,47,0.075);
}

.krok-cislo {
    background:
        var(--v3-red);
}


/* FILTERS */

.filtry {
    border-radius:
        15px;

    background:
        #0d0d0f;

    border:
        1px solid
        rgba(255,255,255,0.12);
}


/* FOOTER */

footer {
    background:
        #020203;

    border-top:
        1px solid
        rgba(242,13,47,0.22);
}


/* DESKTOP HERO EFFECT */

@media (min-width: 951px) {

    .hero h1,
    .hero p,
    .vyhledavani,
    .rychle-info {
        position:
            relative;

        z-index:
            2;
    }

    .hero h1 {
        width:
            68%;
    }
}


/* TABLET */

@media (max-width: 950px) {

    .ss-v3-nav {
        display:
            none;
    }

    .hero::after {
        display:
            none;
    }

    .doporucene-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .kategorie-grid {
        grid-template-columns:
            repeat(
                3,
                1fr
            );
    }
}


/* MOBILE */

@media (max-width: 650px) {

    .hlavicka {
        min-height:
            72px;
    }

    .logo-obrazek {
        width:
            58px;

        height:
            58px;
    }

    .hero {
        padding:
            35px 17px 29px;
    }

    .hero h1 {
        font-size:
            38px;

        letter-spacing:
            -1.8px;
    }

    .hero p {
        font-size:
            13px;
    }

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

    .kategorie-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

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



/* ===== SROVNEJSTYL V3.1 HEADER FIX ===== */

.hlavicka {
    min-height: 132px;
    gap: 24px;
}

.logo {
    flex-shrink: 0;
    margin-right: 10px;
}

.logo-obrazek {
    width: 118px;
    height: 118px;

    border-radius: 50%;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.10),
        0 0 38px rgba(242,13,47,0.34);
}

.hlavicka-info {
    display: none;
}

.ss-v3-nav {
    margin-left: 2px;
    gap: 10px;
}

.ss-v3-nav button {
    font-size: 14px;
    font-weight: 700;

    padding:
        10px 14px;
}

@media (max-width: 950px) {

    .hlavicka {
        min-height: 92px;
    }

    .logo-obrazek {
        width: 78px;
        height: 78px;
    }
}

@media (max-width: 650px) {

    .hlavicka {
        min-height: 80px;
    }

    .logo-obrazek {
        width: 68px;
        height: 68px;
    }
}



/* ===== SROVNEJSTYL V3.2 HERO TARGET ===== */


/* ===== HLAVICKA SPOJENA S HERO ===== */

.horni-lista {
    position: relative;
    z-index: 30;

    background:
        #030304;

    border-bottom: 0;

    box-shadow: none;

    backdrop-filter: none;
}

.hlavicka {
    position: relative;

    z-index: 20;

    max-width: 1280px;

    min-height: 120px;

    padding:
        8px 24px 0;

    background:
        transparent;
}

.logo-obrazek {
    width: 112px;
    height: 112px;

    position: relative;

    z-index: 50;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.10),
        0 0 18px rgba(242,13,47,0.35),
        0 0 42px rgba(242,13,47,0.28);
}

.ss-v3-nav {
    align-self: flex-start;

    margin-top: 35px;
    margin-left: 18px;

    gap: 18px;
}

.ss-v3-nav button {
    padding: 7px 10px;

    color:
        rgba(255,255,255,0.92);

    font-size: 14px;

    font-weight: 750;

    background: transparent;
}

.ss-v3-nav button:hover {
    color: #ffffff;

    background:
        rgba(242,13,47,0.10);
}


/* ===== HERO ===== */

.hero {
    position: relative;

    isolation: isolate;

    max-width: 1280px;

    min-height: 500px;

    margin:
        -10px auto 0;

    padding:
        75px 55px 34px;

    overflow: hidden;

    border: 0;

    border-radius:
        0 0 28px 28px;

    background:
        radial-gradient(
            circle at 87% 38%,
            rgba(242,13,47,0.28),
            transparent 25%
        ),
        radial-gradient(
            circle at 8% 55%,
            rgba(242,13,47,0.10),
            transparent 22%
        ),
        linear-gradient(
            105deg,
            #030304 0%,
            #050506 42%,
            #110609 72%,
            #22070c 100%
        );

    box-shadow:
        0 30px 60px
        rgba(0,0,0,0.40);
}


/* RED NEON BACKGROUND */

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -3;

    pointer-events: none;

    background:
        radial-gradient(
            ellipse at 78% 44%,
            rgba(255,18,50,0.19),
            transparent 31%
        ),
        linear-gradient(
            92deg,
            transparent 0 62%,
            rgba(255,0,35,0.04) 63% 100%
        );
}


/* REMOVE OLD RED CARD */

.hero::after {
    content: "";

    white-space: pre;

    position: absolute;

    right: 38px;
    top: 62px;

    width: auto;

    height: auto;

    padding: 0;

    transform:
        rotate(-5deg);

    border: 0;

    background: transparent;

    color: white;

    font-size: 29px;

    font-family:
        "Segoe Script",
        "Brush Script MT",
        cursive;

    font-style: italic;

    font-weight: 500;

    line-height: 1.1;

    text-align: center;

    text-shadow:
        0 0 16px
        rgba(242,13,47,0.30);

    box-shadow: none;

    z-index: 7;

    opacity: 0.95;
}


/* ===== MUZ + ZENA ===== */

.ss-v32-couple {
    position: absolute;

    z-index: 2;

    top: 0;

    right: 20px;

    width: 58%;

    height: 100%;

    overflow: hidden;

    pointer-events: none;
}

.ss-v32-couple::before {
    content: "";

    position: absolute;

    z-index: 2;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            #030304 0%,
            rgba(3,3,4,0.92) 8%,
            rgba(3,3,4,0.26) 30%,
            transparent 48%
        ),
        linear-gradient(
            0deg,
            rgba(3,3,4,0.86) 0%,
            transparent 26%
        );

    pointer-events: none;
}

.ss-v32-couple img {
    position: absolute;

    right: -55px;
    bottom: -40px;

    width: 108%;
    height: 108%;

    object-fit: cover;

    object-position:
        center center;

    filter:
        contrast(1.07)
        saturate(1.02);

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,0,0,0.35) 13%,
            #000 29%,
            #000 100%
        );

    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,0,0,0.35) 13%,
            #000 29%,
            #000 100%
        );
}


/* ===== HERO TEXT ===== */

.hero h1 {
    position: relative;

    z-index: 6;

    max-width: 610px;

    margin:
        0 0 22px;

    color: white;

    font-size:
        clamp(
            48px,
            5.4vw,
            74px
        );

    line-height: 0.88;

    letter-spacing:
        -3px;

    font-weight: 950;

    font-style: italic;

    text-transform: uppercase;

    text-align: left;
}

.hero h1 span {
    color:
        #ff1132;

    text-shadow:
        0 0 25px
        rgba(242,13,47,0.22);
}

.hero p {
    position: relative;

    z-index: 6;

    max-width: 600px;

    margin: 0;

    color:
        #d2d2d5;

    font-size: 16px;

    line-height: 1.55;

    text-align: left;
}


/* ===== SEARCH ===== */

.vyhledavani {
    position: relative;

    z-index: 8;

    max-width: 760px;

    margin:
        28px 0 0;

    padding: 5px;

    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 13px 35px
        rgba(0,0,0,0.42),
        0 0 22px
        rgba(242,13,47,0.08);
}

.vyhledavani input {
    height: 55px;

    font-size: 15px;
}

.tlacitko-hledat {
    min-width: 150px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #ff1537,
            #dd0929
        );

    box-shadow:
        0 7px 20px
        rgba(242,13,47,0.32);
}


/* ===== FEATURE CHIPS ===== */

.rychle-info {
    position: relative;

    z-index: 8;

    justify-content: flex-start;

    margin-top: 18px;

    gap: 10px;
}

.rychle-info span {
    padding:
        8px 13px;

    border:
        1px solid
        rgba(255,255,255,0.16);

    border-radius: 999px;

    background:
        rgba(0,0,0,0.42);

    color:
        #f0f0f2;

    backdrop-filter:
        blur(10px);
}


/* ===== RED BRUSH SLOGAN ===== */

.hero .ss-v32-couple::after {
    content: "";

    white-space: pre;

    position: absolute;

    z-index: 5;

    right: 25px;
    bottom: 34px;

    padding:
        13px 22px;

    transform:
        rotate(-4deg);

    background:
        linear-gradient(
            135deg,
            #ff1637,
            #dc0828
        );

    color: white;

    font-size: 23px;

    line-height: 1.05;

    font-family:
        "Segoe Script",
        "Brush Script MT",
        cursive;

    font-style: italic;

    text-align: center;

    box-shadow:
        0 11px 24px
        rgba(242,13,47,0.24);
}


/* ===== DEV BOX ===== */

.demo-info {
    max-width: 1230px;

    margin:
        15px auto 0;
}


/* ===== TABLET ===== */

@media (max-width: 950px) {

    .hlavicka {
        min-height: 92px;
    }

    .logo-obrazek {
        width: 80px;
        height: 80px;
    }

    .hero {
        min-height: 440px;

        padding:
            55px 32px 34px;
    }

    .ss-v32-couple {
        width: 63%;

        right: -70px;

        opacity: 0.72;
    }

    .hero h1 {
        max-width: 570px;

        font-size:
            clamp(
                42px,
                7vw,
                62px
            );
    }

    .hero p {
        max-width: 510px;
    }

    .hero::after {
        display: none;
    }

    .hero .ss-v32-couple::after {
        display: none;
    }
}


/* ===== MOBILE ===== */

@media (max-width: 650px) {

    .hlavicka {
        min-height: 78px;
    }

    .logo-obrazek {
        width: 66px;
        height: 66px;
    }

    .hero {
        min-height: 520px;

        margin-top: 0;

        padding:
            38px 17px 28px;

        border-radius:
            0 0 20px 20px;
    }

    .ss-v32-couple {
        top: 175px;

        right: -95px;

        width: 110%;

        height: 350px;

        opacity: 0.48;
    }

    .ss-v32-couple::before {
        background:
            linear-gradient(
                180deg,
                #030304 0%,
                rgba(3,3,4,0.32) 28%,
                rgba(3,3,4,0.20) 66%,
                #030304 100%
            );
    }

    .ss-v32-couple img {
        right: -35px;

        bottom: -5px;

        width: 100%;
        height: 100%;
    }

    .hero h1 {
        max-width: 100%;

        font-size: 40px;

        line-height: 0.91;

        letter-spacing:
            -1.7px;
    }

    .hero p {
        max-width: 92%;

        font-size: 13px;
    }

    .vyhledavani {
        margin-top: 23px;
    }

    .rychle-info {
        margin-top: 13px;
    }

    .rychle-info span {
        font-size: 10px;

        padding:
            6px 8px;
    }
}



/* ===== SROVNEJSTYL V3.3 HERO REPAIR ===== */

/* OLD V3.2 PSEUDO SLOGANS OFF */

.hero::after,
.hero .ss-v32-couple::after {
    display: none !important;
}


/* HEADER + HERO = ONE VISUAL UNIT */

.horni-lista {
    background: #030304 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.hlavicka {
    max-width: 1320px !important;
    min-height: 112px !important;
    padding: 0 30px !important;
    background: #030304 !important;
}

.logo {
    position: relative;
    z-index: 50;
}

.logo-obrazek {
    width: 145px !important;
    height: 145px !important;

    margin-bottom: -42px;

    border-radius: 50%;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.10),
        0 0 20px rgba(255,20,50,0.45),
        0 0 48px rgba(255,20,50,0.28) !important;
}

.ss-v3-nav {
    margin-left: 45px !important;
    margin-top: 18px !important;
    gap: 26px !important;
}

.ss-v3-nav button {
    font-size: 15px !important;
    font-weight: 750 !important;
}


/* HERO */

.hero {
    position: relative !important;

    max-width: 1320px !important;
    min-height: 510px !important;

    margin: 0 auto !important;

    padding:
        76px 58px 34px !important;

    overflow: hidden !important;

    border: 0 !important;

    border-radius:
        0 0 26px 26px !important;

    background:
        radial-gradient(
            circle at 80% 48%,
            rgba(244,12,46,0.30),
            transparent 25%
        ),
        linear-gradient(
            105deg,
            #020203 0%,
            #050506 42%,
            #100407 70%,
            #26070d 100%
        ) !important;

    box-shadow:
        0 28px 60px rgba(0,0,0,0.42) !important;
}


/* COUPLE */

.ss-v32-couple {
    position: absolute !important;

    z-index: 2 !important;

    top: 0 !important;
    right: 0 !important;

    width: 61% !important;
    height: 100% !important;

    overflow: hidden !important;

    pointer-events: none !important;
}

.ss-v32-couple::before {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    z-index: 3 !important;

    background:
        linear-gradient(
            90deg,
            #030304 0%,
            rgba(3,3,4,0.94) 8%,
            rgba(3,3,4,0.50) 20%,
            transparent 38%
        ),
        linear-gradient(
            0deg,
            rgba(3,3,4,0.50) 0%,
            transparent 24%
        ) !important;

    pointer-events: none !important;
}

.ss-v32-couple img {
    position: absolute !important;

    right: -20px !important;
    bottom: -22px !important;

    width: 103% !important;
    height: 103% !important;

    object-fit: cover !important;
    object-position: center 34% !important;

    display: block !important;

    opacity: 1 !important;

    filter:
        contrast(1.08)
        saturate(1.04) !important;

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,0,0,0.28) 10%,
            #000 25%,
            #000 100%
        ) !important;

    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,0,0,0.28) 10%,
            #000 25%,
            #000 100%
        ) !important;
}


/* MAIN HERO CONTENT */

.hero h1,
.hero p,
.vyhledavani,
.rychle-info {
    position: relative !important;
    z-index: 10 !important;
}

.hero h1 {
    width: 57% !important;
    max-width: 660px !important;

    margin: 0 0 23px !important;

    color: #ffffff !important;

    font-size:
        clamp(
            54px,
            5vw,
            76px
        ) !important;

    line-height: 0.88 !important;

    letter-spacing: -3.5px !important;

    font-weight: 950 !important;
    font-style: italic !important;

    text-transform: uppercase !important;

    text-align: left !important;
}

.hero h1 span {
    color: #ff1234 !important;

    text-shadow:
        0 0 24px
        rgba(255,18,52,0.20);
}

.hero p {
    width: 55% !important;
    max-width: 610px !important;

    color: #d4d4d7 !important;

    font-size: 16px !important;
    line-height: 1.55 !important;
}


/* SEARCH */

.vyhledavani {
    width: 65% !important;
    max-width: 780px !important;

    margin-top: 27px !important;

    border-radius: 14px !important;
}

.rychle-info {
    width: 70% !important;

    justify-content: flex-start !important;

    gap: 9px !important;
}


/* RIGHT WHITE HANDWRITTEN SLOGAN */

.ss-v33-right-slogan {
    position: absolute;

    z-index: 12;

    top: 70px;
    right: 37px;

    width: 170px;

    color: white;

    font-family:
        "Segoe Script",
        "Brush Script MT",
        cursive;

    font-size: 27px;
    line-height: 1.14;

    font-style: italic;

    text-align: center;

    transform: rotate(-7deg);

    text-shadow:
        0 0 15px
        rgba(255,20,50,0.35);
}


/* RED BRUSH */

.ss-v33-brush {
    position: absolute;

    z-index: 12;

    right: 28px;
    bottom: 42px;

    padding:
        15px 24px;

    min-width: 245px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #ff1537,
            #db0728
        );

    font-family:
        "Segoe Script",
        "Brush Script MT",
        cursive;

    font-size: 22px;
    line-height: 1.05;

    font-style: italic;

    text-align: center;

    transform: rotate(-4deg);

    box-shadow:
        0 12px 28px
        rgba(255,15,45,0.28);
}


/* TABLET */

@media (max-width: 950px) {

    .logo-obrazek {
        width: 92px !important;
        height: 92px !important;
        margin-bottom: -18px;
    }

    .hero {
        min-height: 470px !important;

        padding:
            55px 30px 30px !important;
    }

    .ss-v32-couple {
        width: 70% !important;
        right: -100px !important;
        opacity: 0.70;
    }

    .hero h1 {
        width: 69% !important;
    }

    .hero p,
    .vyhledavani,
    .rychle-info {
        width: 67% !important;
    }

    .ss-v33-right-slogan,
    .ss-v33-brush {
        display: none;
    }
}


/* MOBILE */

@media (max-width: 650px) {

    .hlavicka {
        min-height: 78px !important;
    }

    .logo-obrazek {
        width: 70px !important;
        height: 70px !important;

        margin-bottom: 0;
    }

    .hero {
        min-height: 545px !important;

        padding:
            37px 17px 25px !important;
    }

    .hero h1 {
        width: 100% !important;

        font-size: 41px !important;

        line-height: 0.90 !important;

        letter-spacing: -2px !important;
    }

    .hero p,
    .vyhledavani,
    .rychle-info {
        width: 100% !important;
    }

    .ss-v32-couple {
        top: 195px !important;
        right: -85px !important;

        width: 120% !important;
        height: 355px !important;

        opacity: 0.43;
    }

    .ss-v32-couple::before {
        background:
            linear-gradient(
                180deg,
                #030304 0%,
                rgba(3,3,4,0.22) 28%,
                rgba(3,3,4,0.14) 65%,
                #030304 100%
            ) !important;
    }
}



/* ===== SROVNEJSTYL V3.4 HERO TUNING ===== */

/* HEADER / LOGO */

.logo-obrazek {
    width: 150px !important;
    height: 150px !important;

    margin-bottom: -58px !important;

    position: relative !important;
    top: 9px !important;

    z-index: 60 !important;
}


/* HERO */

.hero {
    padding:
        72px 58px 34px !important;
}


/* TITLE */

.hero .ss-v34-title {
    position: relative !important;
    z-index: 15 !important;

    width: 49% !important;
    max-width: 575px !important;

    margin:
        0 0 22px !important;

    color: #ffffff !important;

    font-size:
        clamp(
            46px,
            4.25vw,
            64px
        ) !important;

    line-height: 0.91 !important;

    letter-spacing: -3px !important;

    font-weight: 950 !important;
    font-style: italic !important;

    text-transform: uppercase !important;

    text-align: left !important;
}

.hero .ss-v34-title span {
    color: #ff1234 !important;

    text-shadow:
        0 0 22px
        rgba(255,18,52,0.22) !important;
}


/* LEFT CONTENT */

.hero p {
    width: 48% !important;
    max-width: 555px !important;
}

.vyhledavani {
    width: 59% !important;
    max-width: 710px !important;
}

.rychle-info {
    width: 60% !important;
}


/* COUPLE - MOVE RIGHT */

.ss-v32-couple {
    width: 57% !important;

    right: -36px !important;
}

.ss-v32-couple img {
    right: -42px !important;

    width: 105% !important;
    height: 105% !important;

    object-position:
        center 32% !important;
}

.ss-v32-couple::before {
    background:
        linear-gradient(
            90deg,
            #030304 0%,
            rgba(3,3,4,0.96) 6%,
            rgba(3,3,4,0.58) 18%,
            rgba(3,3,4,0.10) 34%,
            transparent 45%
        ),
        linear-gradient(
            0deg,
            rgba(3,3,4,0.48) 0%,
            transparent 23%
        ) !important;
}


/* CATEGORY CARDS - READY FOR REAL PHOTOS */

.kategorie {
    position: relative !important;

    overflow: hidden !important;

    min-height: 190px !important;

    padding:
        112px 18px 20px !important;

    background:
        linear-gradient(
            145deg,
            #161619,
            #080809
        ) !important;
}

.kategorie-ikona.ss-v34-photo-placeholder {
    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;

    border-radius: inherit !important;

    background:
        radial-gradient(
            circle at 65% 25%,
            rgba(255,20,52,0.18),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #1b1b1f,
            #080809
        ) !important;
}

.kategorie-ikona.ss-v34-photo-placeholder::after {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    background:
        linear-gradient(
            180deg,
            transparent 20%,
            rgba(0,0,0,0.20) 50%,
            rgba(0,0,0,0.94) 100%
        ) !important;
}

.kategorie-nazev,
.kategorie-malym {
    position: relative !important;
    z-index: 5 !important;
}

.kategorie-nazev {
    color: #ffffff !important;
}

.kategorie:hover {
    transform:
        translateY(-5px) !important;

    border-color:
        rgba(255,18,52,0.85) !important;

    box-shadow:
        0 15px 32px
        rgba(255,18,52,0.14) !important;
}


/* TABLET */

@media (max-width: 950px) {

    .logo-obrazek {
        top: 3px !important;

        margin-bottom:
            -25px !important;
    }

    .hero .ss-v34-title {
        width: 62% !important;

        font-size:
            clamp(
                43px,
                7vw,
                58px
            ) !important;
    }

    .hero p,
    .vyhledavani,
    .rychle-info {
        width: 62% !important;
    }

    .ss-v32-couple {
        width: 67% !important;

        right: -115px !important;
    }
}


/* MOBILE */

@media (max-width: 650px) {

    .logo-obrazek {
        top: 0 !important;

        margin-bottom:
            0 !important;
    }

    .hero .ss-v34-title {
        width: 100% !important;

        font-size:
            39px !important;

        line-height:
            0.92 !important;

        letter-spacing:
            -2px !important;
    }

    .hero p,
    .vyhledavani,
    .rychle-info {
        width: 100% !important;
    }

    .kategorie {
        min-height:
            165px !important;

        padding:
            95px 14px 16px !important;
    }
}



/* ===== SROVNEJSTYL V3.4.1 TITLE FIX ===== */

.hero .ss-v34-title {
    width: 52% !important;
    max-width: 690px !important;

    font-size: clamp(40px, 3.35vw, 54px) !important;
    line-height: 0.94 !important;
    letter-spacing: -2px !important;

    margin-bottom: 24px !important;
}

.hero .ss-v34-title span {
    color: #ff1234 !important;
}

.hero p {
    width: 47% !important;
    max-width: 570px !important;
}

.ss-v32-couple {
    width: 59% !important;
    right: -5px !important;
}

.ss-v32-couple img {
    width: 102% !important;
    height: 102% !important;
    right: -15px !important;
    object-position: center 30% !important;
}

@media (max-width: 950px) {
    .hero .ss-v34-title {
        width: 60% !important;
        font-size: clamp(39px, 6vw, 50px) !important;
    }

    .ss-v32-couple {
        width: 65% !important;
        right: -80px !important;
    }
}

@media (max-width: 650px) {
    .hero .ss-v34-title {
        width: 100% !important;
        font-size: 37px !important;
        line-height: 0.94 !important;
    }
}


/* ===== SROVNEJSTYL V3.4.2 SEARCH ALIGNMENT ===== */

/* Search stays completely in the left content column */

.vyhledavani {
    width: 43% !important;
    max-width: 690px !important;

    margin-left: 0 !important;
    margin-right: auto !important;

    position: relative !important;
    z-index: 20 !important;
}

.vyhledavani input {
    min-width: 0 !important;
}

.vyhledavani button {
    width: 180px !important;
    min-width: 180px !important;
}


/* Feature chips aligned directly below search */

.rychle-info {
    width: 43% !important;
    max-width: 690px !important;

    margin-top: 12px !important;
    margin-left: 0 !important;
    margin-right: auto !important;

    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    gap: 8px !important;

    justify-content: stretch !important;
    align-items: stretch !important;

    position: relative !important;
    z-index: 20 !important;
}

.rychle-info > * {
    width: 100% !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 10px 7px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
    white-space: nowrap !important;

    font-size: 12px !important;
}


/* Keep description aligned with the same left column */

.hero p {
    width: 43% !important;
    max-width: 690px !important;
}


/* Tablet */

@media (max-width: 1100px) {

    .vyhledavani,
    .rychle-info,
    .hero p {
        width: 52% !important;
    }

    .rychle-info {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }
}


/* Mobile */

@media (max-width: 650px) {

    .vyhledavani,
    .rychle-info,
    .hero p {
        width: 100% !important;
        max-width: none !important;
    }

    .vyhledavani button {
        width: 125px !important;
        min-width: 125px !important;
    }

    .rychle-info {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }
}



/* ===== SROVNEJSTYL V3.4.3 SEARCH DROPDOWN ===== */

/*
   Search suggestions must sit above the feature chips.
   Width follows the full search container.
*/

.vyhledavani {
    overflow: visible !important;
    z-index: 100 !important;
}

.naseptavac {
    position: absolute !important;

    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    max-width: none !important;

    top: calc(100% + 5px) !important;

    z-index: 500 !important;

    margin: 0 !important;

    border: 1px solid rgba(255,255,255,0.16) !important;
    border-radius: 14px !important;

    overflow: hidden !important;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.55) !important;
}

.naseptavac.aktivni {
    display: block !important;
}

.rychle-info {
    position: relative !important;
    z-index: 10 !important;
}


/* Suggestion rows */

.naseptavac .navrh {
    position: relative !important;
    z-index: 501 !important;

    background: #ffffff !important;
}


/* Mobile */

@media (max-width: 650px) {

    .naseptavac {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;

        top: calc(100% + 5px) !important;
    }
}



/* ===== SROVNEJSTYL V3.5 REAL CATEGORY VISUALS ===== */

/* Category cards */

.kategorie-karta {
    position: relative !important;
    overflow: hidden !important;

    min-height: 250px !important;

    background:
        radial-gradient(
            circle at 72% 38%,
            rgba(255, 20, 55, 0.12),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #151518 0%,
            #09090b 68%,
            #050506 100%
        ) !important;

    border: 1px solid rgba(255,255,255,0.14) !important;
}


/* Real visual area */

.ss-v35-category-image {
    position: absolute !important;

    top: 5px !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    height: 170px !important;

    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;

    overflow: visible !important;

    pointer-events: none !important;

    z-index: 1 !important;
}

.ss-v35-category-image img {
    display: block !important;

    width: auto !important;
    height: 100% !important;

    max-width: 94% !important;

    object-fit: contain !important;
    object-position: center bottom !important;

    filter:
        drop-shadow(0 12px 16px rgba(0,0,0,0.52))
        drop-shadow(0 0 14px rgba(255,20,55,0.08)) !important;
}


/* Text stays clean below image */

.kategorie-karta .kategorie-nazev {
    position: relative !important;
    z-index: 3 !important;

    margin-top: 165px !important;

    font-size: 20px !important;
    font-weight: 800 !important;

    color: #ffffff !important;
}

.kategorie-karta .kategorie-popis {
    position: relative !important;
    z-index: 3 !important;

    color: rgba(255,255,255,0.62) !important;
}


/* Individual visual tuning */

.ss-cat-women img {
    height: 176px !important;
}

.ss-cat-men img {
    height: 176px !important;
}

.ss-cat-shoes img {
    width: 92% !important;
    height: 145px !important;
}

.ss-cat-kids img {
    height: 174px !important;
}

.ss-cat-accessories img {
    width: 92% !important;
    height: 145px !important;
}


/* Hover */

.kategorie-karta:hover {
    transform: translateY(-4px) !important;

    border-color: rgba(255,20,55,0.55) !important;

    box-shadow:
        0 18px 40px rgba(0,0,0,0.42),
        0 0 24px rgba(255,20,55,0.08) !important;
}

.kategorie-karta:hover .ss-v35-category-image img {
    transform: scale(1.035) !important;
}

.ss-v35-category-image img {
    transition:
        transform 180ms ease,
        filter 180ms ease !important;
}


/* Tablet */

@media (max-width: 1100px) {

    .kategorie-karta {
        min-height: 235px !important;
    }

    .ss-v35-category-image {
        height: 155px !important;
    }

    .kategorie-karta .kategorie-nazev {
        margin-top: 150px !important;
    }
}


/* Mobile */

@media (max-width: 650px) {

    .kategorie-karta {
        min-height: 225px !important;
    }

    .ss-v35-category-image {
        height: 145px !important;
    }

    .kategorie-karta .kategorie-nazev {
        margin-top: 142px !important;
    }
}



/* ===== SROVNEJSTYL V3.5.1 CATEGORY LAYOUT ===== */

/* =========================================
   ORDER:
   WOMEN / MEN / KIDS / SHOES / ACCESSORIES
========================================= */

.kategorie-grid .kategorie:nth-child(1) {
    order: 1 !important;
}

.kategorie-grid .kategorie:nth-child(2) {
    order: 2 !important;
}

.kategorie-grid .kategorie:nth-child(3) {
    order: 4 !important;
}

.kategorie-grid .kategorie:nth-child(4) {
    order: 3 !important;
}

.kategorie-grid .kategorie:nth-child(5) {
    order: 5 !important;
}


/* =========================================
   CATEGORY CARD
========================================= */

.kategorie {
    position: relative !important;
    overflow: hidden !important;

    min-height: 235px !important;

    padding: 0 !important;

    background:
        linear-gradient(
            145deg,
            #151518 0%,
            #080809 100%
        ) !important;
}


/* =========================================
   IMAGE AREA
========================================= */

.kategorie .ss-v35-category-image {
    position: absolute !important;

    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
    bottom: 64px !important;

    width: auto !important;
    height: auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;

    z-index: 1 !important;
}

.kategorie .ss-v35-category-image img {
    width: auto !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;
    object-position: center bottom !important;

    transform: none !important;
}


/* =========================================
   CLEAN BLACK TEXT AREA
========================================= */

.kategorie::after {
    content: "" !important;

    position: absolute !important;

    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    height: 68px !important;

    background:
        linear-gradient(
            180deg,
            rgba(5,5,6,0.96) 0%,
            #050506 35%,
            #050506 100%
        ) !important;

    border-top:
        1px solid rgba(255,255,255,0.06) !important;

    z-index: 2 !important;

    pointer-events: none !important;
}


/* CATEGORY NAME */

.kategorie .kategorie-nazev {
    position: absolute !important;

    left: 10px !important;
    right: 10px !important;
    bottom: 34px !important;

    margin: 0 !important;

    z-index: 3 !important;

    color: #ffffff !important;

    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;

    text-align: center !important;

    text-shadow:
        0 2px 8px rgba(0,0,0,0.85) !important;
}


/* CATEGORY DESCRIPTION */

.kategorie .kategorie-malym {
    position: absolute !important;

    left: 10px !important;
    right: 10px !important;
    bottom: 12px !important;

    margin: 0 !important;

    z-index: 3 !important;

    color:
        rgba(255,255,255,0.62) !important;

    font-size: 13px !important;
    line-height: 1.1 !important;

    text-align: center !important;
}


/* =========================================
   INDIVIDUAL IMAGE TUNING
========================================= */

.kategorie .ss-cat-women img {
    height: 108% !important;
}

.kategorie .ss-cat-men img {
    height: 108% !important;
}

.kategorie .ss-cat-kids img {
    height: 105% !important;
}

.kategorie .ss-cat-shoes img {
    width: 96% !important;
    height: auto !important;
}

.kategorie .ss-cat-accessories img {
    width: 88% !important;
    height: auto !important;
}


/* =========================================
   HOVER
========================================= */

.kategorie:hover {
    transform:
        translateY(-4px) !important;

    border-color:
        rgba(255,18,52,0.68) !important;

    box-shadow:
        0 16px 36px rgba(0,0,0,0.45),
        0 0 20px rgba(255,18,52,0.10) !important;
}

.kategorie:hover .ss-v35-category-image img {
    transform:
        scale(1.035) !important;
}


/* MOBILE */

@media (max-width: 650px) {

    .kategorie {
        min-height: 220px !important;
    }

    .kategorie .ss-v35-category-image {
        bottom: 62px !important;
    }

    .kategorie::after {
        height: 64px !important;
    }
}



/* ===== SROVNEJSTYL V3.5.2 KIDS SCALE ===== */

/* Kids visual slightly larger to match women and men */

.kategorie .ss-cat-kids img {
    height: 118% !important;
    max-height: none !important;
}



/* ===== SROVNEJSTYL V3.5.3 KIDS FIT FIX ===== */

/* Keep the existing kids image fully visible */

.kategorie .ss-cat-kids {
    overflow: visible !important;
}

.kategorie .ss-cat-kids img {
    width: auto !important;
    height: 100% !important;
    max-width: 96% !important;
    max-height: 100% !important;

    object-fit: contain !important;
    object-position: center bottom !important;

    transform: none !important;
}

.kategorie:hover .ss-cat-kids img {
    transform: scale(1.025) !important;
}



/* ===== SROVNEJSTYL V3.7 FILTER PANEL ===== */

/* FILTER PANEL */

.filtry {
    margin-top: 42px !important;
    padding: 24px 26px !important;

    border:
        1px solid rgba(255,255,255,0.11) !important;

    border-radius: 18px !important;

    background:
        radial-gradient(
            circle at 92% 0%,
            rgba(255,18,52,0.08),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #111113 0%,
            #09090b 100%
        ) !important;

    box-shadow:
        0 16px 36px rgba(0,0,0,0.25) !important;
}


/* TITLE */

.filtry .sekce-nadpis {
    margin-bottom: 5px !important;

    color: #ffffff !important;

    font-size: 20px !important;
    font-weight: 850 !important;
}

.filtry .sekce-popis {
    margin-bottom: 20px !important;

    color:
        rgba(255,255,255,0.55) !important;

    font-size: 14px !important;
}


/* FIVE MAIN FILTERS */

.filtry-grid {
    display: grid !important;

    grid-template-columns:
        1fr 1fr 1fr 1fr 1fr !important;

    gap: 14px !important;
}

.filtr {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;

    min-width: 0 !important;
}

.filtr label {
    color:
        rgba(255,255,255,0.88) !important;

    font-size: 12px !important;
    font-weight: 750 !important;
}


/* INPUTS + SELECTS */

.filtry .filtr input,
.filtry .filtr select,
.filtry-tlacitka select {
    width: 100% !important;
    min-height: 48px !important;

    box-sizing: border-box !important;

    padding: 0 14px !important;

    color: #ffffff !important;

    background:
        #17171a !important;

    border:
        1px solid rgba(255,255,255,0.13) !important;

    border-radius: 11px !important;

    outline: none !important;

    font-size: 14px !important;

    transition:
        border-color 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease !important;
}


/* PLACEHOLDER */

.filtry .filtr input::placeholder {
    color:
        rgba(255,255,255,0.38) !important;
}


/* SELECT OPTIONS */

.filtry select option {
    color: #ffffff !important;
    background: #17171a !important;
}


/* FOCUS */

.filtry .filtr input:focus,
.filtry .filtr select:focus,
.filtry-tlacitka select:focus {
    background:
        #1c1c20 !important;

    border-color:
        #f0182f !important;

    box-shadow:
        0 0 0 3px rgba(240,24,47,0.13),
        0 0 18px rgba(240,24,47,0.07) !important;
}


/* BOTTOM ROW */

.filtry-tlacitka {
    display: flex !important;
    align-items: center !important;

    gap: 12px !important;

    margin-top: 16px !important;
}

.filtry-tlacitka select {
    width: 280px !important;
    max-width: 280px !important;
}


/* RESET BUTTON */

.filtry .tlacitko-reset {
    min-height: 48px !important;

    padding: 0 22px !important;

    border: 1px solid #f0182f !important;
    border-radius: 11px !important;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #f0182f,
            #d50d26
        ) !important;

    font-size: 14px !important;
    font-weight: 800 !important;

    cursor: pointer !important;

    box-shadow:
        0 8px 22px rgba(240,24,47,0.15) !important;

    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease !important;
}

.filtry .tlacitko-reset:hover {
    transform:
        translateY(-2px) !important;

    background:
        #ff1738 !important;

    box-shadow:
        0 12px 28px rgba(240,24,47,0.25) !important;
}


/* REMOVE EXCESS SPACE AROUND RESULTS AREA */

#vysledek:empty,
#detailProduktu:empty {
    display: none !important;
}

#vysledek:not(:empty) {
    margin-top: 28px !important;
}


/* TABLET */

@media (max-width: 1050px) {

    .filtry-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr)) !important;
    }

    .filtr:last-child {
        grid-column:
            span 2 !important;
    }
}


/* MOBILE */

@media (max-width: 650px) {

    .filtry {
        margin-top: 30px !important;

        padding:
            20px 16px !important;
    }

    .filtry-grid {
        grid-template-columns:
            1fr !important;
    }

    .filtr:last-child {
        grid-column:
            auto !important;
    }

    .filtry-tlacitka {
        flex-direction:
            column !important;

        align-items:
            stretch !important;
    }

    .filtry-tlacitka select {
        width: 100% !important;
        max-width: none !important;
    }

    .filtry .tlacitko-reset {
        width: 100% !important;
    }
}



/* ===== SROVNEJSTYL V3.7.1 FILTER COMPACT ===== */

.filtry {
    padding-bottom: 18px !important;
}

.filtry-tlacitka {
    margin-bottom: 0 !important;
}



/* ===== SROVNEJSTYL V3.8 PRODUCT CARDS ===== */

/* RESULTS CONTAINER */

.vysledky-box {
    padding: 26px !important;
    border-radius: 18px !important;
}

.vysledky-hlavicka {
    padding-bottom: 18px !important;
    border-bottom:
        1px solid rgba(255,255,255,0.10) !important;
}

.vysledky-hlavicka h2 {
    color: #ffffff !important;
}

.vysledky-hlavicka .pocet,
.vysledky-box .pocet {
    color: rgba(255,255,255,0.52) !important;
}


/* 4 PRODUCT CARDS */

.produkty-grid {
    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 18px !important;
    margin-top: 22px !important;
}


/* CARD */

.produkt-karta {
    min-width: 0 !important;
    padding: 10px !important;

    overflow: hidden !important;

    border:
        1px solid rgba(255,255,255,0.11) !important;

    border-radius: 16px !important;

    background:
        linear-gradient(
            155deg,
            #171719 0%,
            #0c0c0e 100%
        ) !important;

    color: #ffffff !important;

    box-shadow:
        0 10px 24px rgba(0,0,0,0.24) !important;

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease !important;
}

.produkt-karta:hover {
    transform: translateY(-5px) !important;

    border-color:
        rgba(240,24,47,0.68) !important;

    box-shadow:
        0 18px 34px rgba(0,0,0,0.38),
        0 0 20px rgba(240,24,47,0.07) !important;
}


/* PRODUCT IMAGE */

.produkt-obrazek {
    height: 190px !important;

    border-radius: 11px !important;

    background:
        linear-gradient(
            145deg,
            #f7f7f8,
            #ececef
        ) !important;

    overflow: hidden !important;
}

.produkt-obrazek img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;

    transition:
        transform 220ms ease !important;
}

.produkt-karta:hover .produkt-obrazek img {
    transform: scale(1.035) !important;
}


/* PRODUCT TEXT */

.produkt-nazev {
    margin:
        13px 5px 0 !important;

    color: #ffffff !important;

    font-size: 16px !important;
    line-height: 1.25 !important;
    font-weight: 850 !important;
}

.produkt-znacka {
    margin:
        6px 5px 0 !important;

    color: #f0182f !important;

    font-size: 12px !important;
    font-weight: 800 !important;
}

.produkt-meta,
.produkt-kategorie {
    margin:
        6px 5px 0 !important;

    color:
        rgba(255,255,255,0.48) !important;

    font-size: 11px !important;
}


/* OFFERS / SHOPS */

.produkt-info-radek {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;

    margin:
        11px 5px 0 !important;
}

.produkt-info-radek span {
    padding:
        5px 8px !important;

    border:
        1px solid rgba(255,255,255,0.10) !important;

    border-radius: 999px !important;

    color:
        rgba(255,255,255,0.68) !important;

    background:
        rgba(255,255,255,0.035) !important;

    font-size: 10px !important;
}


/* PRICE + COMPARE */

.produkt-spodni {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;

    gap: 10px !important;

    margin:
        13px 5px 4px !important;

    padding-top:
        12px !important;

    border-top:
        1px solid rgba(255,255,255,0.09) !important;
}

.produkt-cena-popis {
    color:
        rgba(255,255,255,0.43) !important;

    font-size: 10px !important;
}

.produkt-cena {
    margin-top: 2px !important;

    color: #ffffff !important;

    font-size: 20px !important;
    font-weight: 900 !important;
}

.produkt-porovnat {
    padding:
        8px 10px !important;

    border-radius: 9px !important;

    background:
        #f0182f !important;

    color: #ffffff !important;

    font-size: 10px !important;
    font-weight: 800 !important;

    white-space: nowrap !important;
}


/* TABLET */

@media (max-width: 1100px) {

    .produkty-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr)) !important;
    }

    .produkt-obrazek {
        height: 210px !important;
    }
}


/* MOBILE */

@media (max-width: 620px) {

    .vysledky-box {
        padding: 16px !important;
    }

    .produkty-grid {
        grid-template-columns:
            1fr !important;

        gap: 14px !important;
    }

    .produkt-obrazek {
        height: 220px !important;
    }
}



/* ===== SROVNEJSTYL V3.8.1 PRODUCT CARD TUNING ===== */

/* Slightly more compact product image */

.produkt-obrazek {
    height: 170px !important;
}


/* Stronger price */

.produkt-cena {
    font-size: 23px !important;
    line-height: 1 !important;
    font-weight: 950 !important;

    color: #ffffff !important;
}


/* More visible compare button */

.produkt-porovnat {
    min-height: 38px !important;

    padding: 0 14px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 10px !important;

    font-size: 11px !important;
    font-weight: 850 !important;

    box-shadow:
        0 8px 18px rgba(240,24,47,0.17) !important;

    transition:
        transform 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease !important;
}

.produkt-porovnat:hover {
    transform: translateY(-2px) !important;

    background: #ff1738 !important;

    box-shadow:
        0 11px 24px rgba(240,24,47,0.27) !important;
}


/* Slightly tighter card bottom */

.produkt-spodni {
    margin-top: 11px !important;
    padding-top: 10px !important;
}


/* Tablet */

@media (max-width: 1100px) {
    .produkt-obrazek {
        height: 195px !important;
    }
}


/* Mobile */

@media (max-width: 620px) {
    .produkt-obrazek {
        height: 210px !important;
    }
}



/* ===== SROVNEJSTYL V3.9.5 IMAGE BACKGROUND ===== */

html {
    background: #030304 !important;
}

body {
    background:
        linear-gradient(
            rgba(0,0,0,.16),
            rgba(0,0,0,.16)
        ),
        url("SrovnejStyl-Pozadi.png") center top / 100% auto repeat-y !important;

    background-color: #030304 !important;
    background-attachment: scroll !important;
}

.hlavni,
.sekce {
    background: transparent !important;
}

.filtry,
.vysledky-box,
.jak-to-funguje {
    background:
        linear-gradient(
            125deg,
            rgba(10,10,12,.94),
            rgba(14,7,9,.92)
        ) !important;

    border: 1px solid rgba(239,15,48,.30) !important;

    box-shadow:
        0 12px 32px rgba(0,0,0,.38),
        0 0 18px rgba(239,15,48,.055) !important;
}

.produkt-karta {
    background:
        linear-gradient(
            150deg,
            rgba(17,17,19,.98),
            rgba(7,7,8,.99)
        ) !important;

    border: 1px solid rgba(239,15,48,.25) !important;
}

footer {
    background: rgba(3,3,4,.94) !important;
    border-top: 1px solid rgba(239,15,48,.20) !important;
}

@media (max-width: 650px) {
    body {
        background-size: auto 1050px !important;
        background-position: center top !important;
    }
}



/* ===== SROVNEJSTYL V3.9.8 HERO IMAGE SMOKE ===== */

/*
   Same smoke image as page background.
   Applied ONLY to hero background.
   Existing people, pseudo-elements and layout stay untouched.
*/

.hero {
    background-image:
        linear-gradient(
            90deg,
            rgba(3,3,4,.82) 0%,
            rgba(3,3,4,.66) 27%,
            rgba(3,3,4,.30) 55%,
            rgba(3,3,4,.12) 100%
        ),
        url("SrovnejStyl-Pozadi.png") !important;

    background-size:
        100% 100%,
        cover !important;

    background-position:
        center center,
        center 47% !important;

    background-repeat:
        no-repeat,
        no-repeat !important;

    background-attachment:
        scroll,
        scroll !important;
}



/* ===== SROVNEJSTYL V3.9.8 HERO RED ATMOSPHERE ===== */

/*
   More red atmosphere behind headline/search.
   No layout, couple or content changes.
*/

.hero {
    background:
        radial-gradient(
            ellipse 42% 48% at 18% 28%,
            rgba(235, 8, 42, .24) 0%,
            rgba(125, 0, 20, .16) 38%,
            transparent 74%
        ),
        radial-gradient(
            ellipse 48% 38% at 27% 72%,
            rgba(245, 10, 45, .20) 0%,
            rgba(115, 0, 18, .13) 42%,
            transparent 76%
        ),
        radial-gradient(
            ellipse 36% 32% at 48% 20%,
            rgba(190, 0, 28, .13) 0%,
            transparent 72%
        ),
        radial-gradient(
            ellipse 28% 45% at 77% 48%,
            rgba(244, 12, 46, .25) 0%,
            transparent 75%
        ),
        linear-gradient(
            105deg,
            #020203 0%,
            #070305 28%,
            #100307 48%,
            #110407 70%,
            #26070d 100%
        ) !important;
}

@media (max-width: 650px) {
    .hero {
        background:
            radial-gradient(
                ellipse 70% 38% at 30% 24%,
                rgba(235, 8, 42, .20) 0%,
                transparent 72%
            ),
            radial-gradient(
                ellipse 75% 35% at 32% 72%,
                rgba(220, 7, 38, .16) 0%,
                transparent 75%
            ),
            linear-gradient(
                105deg,
                #020203 0%,
                #090305 48%,
                #1b060a 100%
            ) !important;
    }
}



/* ===== SROVNEJSTYL V3.9.8 MORE RED BEHIND TITLE ===== */

/*
   More red atmosphere behind the left hero text.
   No pseudo-elements, no layout changes.
*/

.hero {
    background:
        radial-gradient(
            ellipse 48% 70% at 18% 46%,
            rgba(150, 0, 27, .34) 0%,
            rgba(100, 0, 20, .22) 28%,
            rgba(55, 0, 13, .12) 52%,
            transparent 76%
        ),
        radial-gradient(
            ellipse 38% 55% at 42% 88%,
            rgba(120, 0, 22, .19) 0%,
            rgba(65, 0, 14, .10) 46%,
            transparent 76%
        ),
        radial-gradient(
            ellipse 42% 60% at 92% 32%,
            rgba(115, 0, 22, .16) 0%,
            transparent 70%
        ),
        linear-gradient(
            105deg,
            rgba(4,4,5,.97) 0%,
            rgba(10,3,5,.95) 35%,
            rgba(19,3,7,.90) 70%,
            rgba(12,2,5,.92) 100%
        ) !important;
}



/* ===== SROVNEJSTYL V3.9.10 SMOKE COVERAGE ===== */

/*
   ONLY BACKGROUNDS.
   No layout / positioning / people / slogan changes.
*/


/* ===== HEADER ===== */

.horni-lista {
    background:
        linear-gradient(
            rgba(3,3,4,.56),
            rgba(3,3,4,.56)
        ),
        url("SrovnejStyl-Pozadi.png") center 26% / 100% 310% no-repeat !important;
}

.hlavicka {
    background: transparent !important;
}


/* ===== HERO ===== */

/*
   Two copies bring edge smoke further into the centre.
   Left copy fills title/search area.
   Right copy fills area around the models.
*/

.hero {
    background:
        linear-gradient(
            90deg,
            rgba(2,2,3,.28) 0%,
            rgba(2,2,3,.18) 38%,
            rgba(2,2,3,.16) 55%,
            rgba(2,2,3,.28) 100%
        ),
        url("SrovnejStyl-Pozadi.png") left center / 72% 100% no-repeat,
        url("SrovnejStyl-Pozadi.png") right center / 72% 100% no-repeat,
        #030304 !important;
}


/* Mobile stays calmer */

@media (max-width: 650px) {

    .horni-lista {
        background:
            linear-gradient(
                rgba(3,3,4,.66),
                rgba(3,3,4,.66)
            ),
            url("SrovnejStyl-Pozadi.png") center top / auto 520px no-repeat !important;
    }

    .hero {
        background:
            linear-gradient(
                rgba(2,2,3,.38),
                rgba(2,2,3,.38)
            ),
            url("SrovnejStyl-Pozadi.png") center center / cover no-repeat,
            #030304 !important;
    }
}



/* ===== SROVNEJSTYL V3.9.10 HEADER SMOKE ===== */

/*
   Smoke only inside the top navigation strip.
   No layout, positioning or hero changes.
*/

.horni-lista {
    background:
        linear-gradient(
            90deg,
            rgba(3,3,4,.62) 0%,
            rgba(3,3,4,.78) 30%,
            rgba(3,3,4,.72) 65%,
            rgba(3,3,4,.58) 100%
        ),
        url("SrovnejStyl-Pozadi.png") center 22% / 100% auto no-repeat !important;

    border-bottom:
        1px solid rgba(240,24,47,.16) !important;
}

.hlavicka {
    background:
        transparent !important;
}



/* ===== SROVNEJSTYL V3.9.11 HEADER SMOKE CROP ===== */

/*
   Bring smoky parts of the existing image further
   into the middle of the navigation bar.
*/

.horni-lista {
    background:
        linear-gradient(
            rgba(3,3,4,.42),
            rgba(3,3,4,.55)
        ),
        url("SrovnejStyl-Pozadi.png") left 38% center / 64% auto no-repeat,
        url("SrovnejStyl-Pozadi.png") right 38% center / 64% auto no-repeat !important;

    border-bottom:
        1px solid rgba(240,24,47,.18) !important;
}

.hlavicka {
    background: transparent !important;
}



/* ===== SROVNEJSTYL V3.9.12 HEADER SMOKE STRONG ===== */

/*
   Stronger smoke across the whole header.
   Background only - no layout changes.
*/

.horni-lista {
    background:
        linear-gradient(
            rgba(3,3,4,.18),
            rgba(3,3,4,.32)
        ),
        url("SrovnejStyl-Pozadi.png") 0% 30% / 58% auto no-repeat,
        url("SrovnejStyl-Pozadi.png") 50% 25% / 58% auto no-repeat,
        url("SrovnejStyl-Pozadi.png") 100% 30% / 58% auto no-repeat
        !important;

    border-bottom:
        1px solid rgba(240,24,47,.20) !important;
}

.hlavicka {
    background: transparent !important;
}



/* ===== SROVNEJSTYL V3.9.13 HEADER LEFT SMOKE BOOST ===== */

/*
   Strong smoke on the left half of the header.
   No layout, no positioning, no hero changes.
*/

.horni-lista {
    background:
        linear-gradient(
            90deg,
            rgba(3,3,4,.06) 0%,
            rgba(3,3,4,.10) 18%,
            rgba(3,3,4,.18) 38%,
            rgba(3,3,4,.32) 62%,
            rgba(3,3,4,.48) 100%
        ),
        url("SrovnejStyl-Pozadi.png") -8% 18% / 78% auto no-repeat,
        url("SrovnejStyl-Pozadi.png") 28% 28% / 64% auto no-repeat,
        url("SrovnejStyl-Pozadi.png") 72% 28% / 48% auto no-repeat
        !important;

    border-bottom:
        1px solid rgba(240,24,47,.20) !important;
}

.hlavicka {
    background: transparent !important;
}


/* ===== SROVNEJSTYL V3.9.14 REMOVE HEADER LINE ===== */

.horni-lista {
    border-bottom: none !important;
}


/* ===== SROVNEJSTYL V3.9.15 HERO EDGE BLEND ===== */

/*
   Removes the visible rectangular hero edge.
   Layout and hero content stay unchanged.
*/

.hero {
    border-radius: 0 !important;
    box-shadow: none !important;

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            #000 5%,
            #000 95%,
            transparent 100%
        );

    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            #000 5%,
            #000 95%,
            transparent 100%
        );
}

/* Keep the centre fully solid */
.hero > * {
    position: relative;
}

/* Mobile: smaller fade so we do not lose useful space */
@media (max-width: 650px) {
    .hero {
        -webkit-mask-image:
            linear-gradient(
                90deg,
                transparent 0%,
                #000 2%,
                #000 98%,
                transparent 100%
            );

        mask-image:
            linear-gradient(
                90deg,
                transparent 0%,
                #000 2%,
                #000 98%,
                transparent 100%
            );
    }
}


/* ===== SROVNEJSTYL V3.9.16 - OPRAVA NAVAZANI GRAFIKY ===== */

/* odstraneni cerveneho sikmeho obdelniku */
.ss-v33-brush {
    display: none !important;
}

/* jedno souvisle pozadi - zadny samostatny obdelnik HERO */
.hero {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* hlavicka nebude mit vlastni oddelene pozadi */
.horni-lista,
.hlavicka {
    background: transparent !important;
}

/* hlavni obsah pokracuje na stejnem pozadi */
.hlavni {
    background: transparent !important;
}


/* ===== SROVNEJSTYL V3.9.18 - VRACENI SLOGANU ===== */

/* slogan znovu zobrazit */
.ss-v33-right-slogan {
    display: block !important;

    position: absolute !important;
    left: 72px !important;
    top: 110px !important;

    z-index: 8 !important;

    color: #ffffff !important;

    font-size: 34px !important;
    line-height: 1.05 !important;

    transform: rotate(-6deg) !important;

    opacity: 0.95 !important;

    pointer-events: none !important;
}

/* ponechat plynule ztraceni postav dole */
.ss-v32-couple {
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            #000 0%,
            #000 82%,
            rgba(0,0,0,.85) 88%,
            rgba(0,0,0,.40) 94%,
            transparent 100%
        ) !important;

    mask-image:
        linear-gradient(
            to bottom,
            #000 0%,
            #000 82%,
            rgba(0,0,0,.85) 88%,
            rgba(0,0,0,.40) 94%,
            transparent 100%
        ) !important;
}


/* ===== SROVNEJSTYL V3.9.19 - OPRAVA POZICE SLOGANU ===== */

.ss-v33-right-slogan {
    display: block !important;

    position: absolute !important;

    left: auto !important;
    right: 37px !important;

    top: 70px !important;

    width: 170px !important;

    z-index: 12 !important;

    color: #ffffff !important;

    font-size: 27px !important;
    line-height: 1.14 !important;

    text-align: center !important;

    transform: rotate(-7deg) !important;

    opacity: 1 !important;

    pointer-events: none !important;
}

/* Na uzsim displeji slogan radeji schovat,
   aby nelezl pres hlavni text */
@media (max-width: 950px) {
    .ss-v33-right-slogan {
        display: none !important;
    }
}


/* ===== SROVNEJSTYL V3.9.20 - PLYNULE NAPOJENI POSTAV ===== */

/*
   Postavy zustavaji na stejnem miste.
   Mizí pouze tvrdy pravy a spodni okraj obrazku.
*/

.ss-v32-couple {
    -webkit-mask-image:
        linear-gradient(
            to right,
            #000 0%,
            #000 86%,
            rgba(0,0,0,.95) 89%,
            rgba(0,0,0,.70) 93%,
            rgba(0,0,0,.30) 97%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            #000 0%,
            #000 82%,
            rgba(0,0,0,.90) 87%,
            rgba(0,0,0,.55) 93%,
            transparent 100%
        ) !important;

    -webkit-mask-composite: source-in !important;

    mask-image:
        linear-gradient(
            to right,
            #000 0%,
            #000 86%,
            rgba(0,0,0,.95) 89%,
            rgba(0,0,0,.70) 93%,
            rgba(0,0,0,.30) 97%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            #000 0%,
            #000 82%,
            rgba(0,0,0,.90) 87%,
            rgba(0,0,0,.55) 93%,
            transparent 100%
        ) !important;

    mask-composite: intersect !important;
}


/* =========================================================
   SROVNEJSTYL - FINAL MOBILE LAYOUT FIX
   ========================================================= */

@media (max-width: 650px) {

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .hlavicka {
        width: 100% !important;
        max-width: none !important;
        min-height: 68px !important;
        height: 68px !important;
        padding: 5px 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 6px !important;
        overflow: visible !important;
    }

    .logo {
        flex: 0 0 auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .logo-obrazek {
        width: 58px !important;
        height: 58px !important;
        min-width: 58px !important;
        min-height: 58px !important;
        top: 0 !important;
        margin: 0 !important;
        transform: none !important;
    }

    .hlavicka-info {
        display: none !important;
    }

    .ss-v3-nav {
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 5px !important;
        flex-wrap: nowrap !important;
    }

    #tlacitkoOblibene {
        min-width: 0 !important;
        padding: 6px 8px !important;
        font-size: 10px !important;
        white-space: nowrap !important;
    }

    #jazykCs,
    #jazykEn {
        min-width: 34px !important;
        padding: 6px !important;
        font-size: 10px !important;
    }

    .hero {
        width: 100% !important;
        max-width: none !important;
        min-height: 0 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 34px 18px 28px !important;
        border-radius: 0 0 20px 20px !important;
        overflow: hidden !important;
    }

    .hero h1,
    .hero .ss-v34-title {
        position: relative !important;
        z-index: 20 !important;
        width: 100% !important;
        max-width: 360px !important;
        margin: 0 0 20px !important;
        font-size: 36px !important;
        line-height: 0.96 !important;
        letter-spacing: -1.5px !important;
        text-align: left !important;
    }

    .hero p {
        position: relative !important;
        z-index: 20 !important;
        width: 100% !important;
        max-width: 355px !important;
        margin: 0 !important;
        font-size: 15px !important;
        line-height: 1.55 !important;
    }

    .ss-v32-couple {
        top: auto !important;
        bottom: 0 !important;
        right: -125px !important;
        width: 330px !important;
        height: 330px !important;
        opacity: 0.18 !important;
        z-index: 2 !important;
        pointer-events: none !important;
    }

    .ss-v32-couple img {
        width: 100% !important;
        height: 100% !important;
        right: 0 !important;
        bottom: 0 !important;
        object-fit: cover !important;
        object-position: center 25% !important;
    }

    .vyhledavani {
        position: relative !important;
        z-index: 30 !important;
        width: 100% !important;
        max-width: none !important;
        margin: 24px 0 0 !important;
        padding: 6px !important;
        border-radius: 15px !important;
    }

    .vyhledavaci-radek {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 105px !important;
        gap: 6px !important;
        align-items: stretch !important;
    }

    .vyhledavani input {
        width: 100% !important;
        min-width: 0 !important;
        height: 52px !important;
        padding: 0 13px !important;
        font-size: 16px !important;
    }

    .vyhledavani button,
    .tlacitko-hledat {
        width: 105px !important;
        min-width: 105px !important;
        max-width: 105px !important;
        min-height: 52px !important;
        padding: 0 8px !important;
        font-size: 15px !important;
    }

    .rychle-info {
        position: relative !important;
        z-index: 30 !important;
        width: 100% !important;
        max-width: none !important;
        margin: 12px 0 0 !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    .rychle-info > *,
    .rychle-info span {
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 8px 5px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        font-size: 10px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        white-space: normal !important;
    }

    .demo-info {
        width: calc(100% - 24px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* SROVNEJSTYL - DETAIL NABIDKY - KONTRAST */

.detail-nabidka .detail-obchod {
    color: #111111 !important;
    font-weight: 900 !important;
    font-size: 18px !important;
}

.detail-nabidka .detail-cena {
    color: #111111 !important;
    font-weight: 900 !important;
    font-size: 24px !important;
}

/* SROVNEJSTYL - LEGAL PAGES */

.legal-page {
    width: min(100% - 32px, 920px);
    margin: 0 auto;
    padding: 36px 0 60px;
    line-height: 1.7;
}

.legal-page h1 {
    margin: 20px 0 8px;
}

.legal-page h2 {
    margin-top: 32px;
}

.legal-page h3 {
    margin-top: 22px;
}

.legal-page section {
    margin: 24px 0;
}

.legal-page a {
    color: inherit;
    text-decoration: underline;
}

.legal-top {
    margin-bottom: 24px;
}

.legal-updated {
    opacity: 0.7;
    margin-bottom: 32px;
}

.legal-page code {
    word-break: break-word;
}

.legal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(128,128,128,0.35);
}

/* SROVNEJSTYL - LEGAL LINKS */

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    margin: 18px 0;
}

.legal-links a {
    color: inherit;
    text-decoration: underline;
}

/* ==================================================
   SROVNEJSTYL - FINAL FOOTER ALIGNMENT
================================================== */

.paticka {
    display: grid !important;
    grid-template-columns:
        0.75fr
        1.65fr
        1.65fr
        1.35fr
        1.15fr
        1.15fr;
    align-items: start;
    gap: 28px;
}

.paticka > div {
    min-width: 0;
}

.paticka > div:last-child {
    white-space: normal;
    min-width: 150px;
}

@media (max-width: 1050px) {
    .paticka {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .paticka > div:last-child {
        min-width: 0;
    }
}

@media (max-width: 650px) {
    .paticka {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}
/* SROVNEJSTYL - FOOTER LEGAL LINKS ALIGNMENT */
.paticka .legal-links {
    justify-content: flex-start;
    align-content: flex-start;
    margin: 0;
}