/* ==========================================================
   NADPIS PRODUKTU – CAPSLOCK + Futura Italic (desktop + mobil)
========================================================== */
.p-detail-inner-header h1,
.p-detail-inner-header .h1,
.p-detail-inner-header-mobile h1,
.p-detail-inner-header-mobile .h1 {
    font-family: "Futura PT", sans-serif !important;
    font-style: italic !important;
    text-transform: uppercase !important;
    font-weight: 600;
    letter-spacing: .5px;
    margin: 0 0 10px;
}

/* Desktop */
@media (min-width: 992px) {
    .p-detail-inner-header h1,
    .p-detail-inner-header .h1 {
        font-size: 32px !important;
        line-height: 36px !important;
    }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 576px) {
    .p-detail-inner-header h1,
    .p-detail-inner-header .h1 {
        font-size: 26px !important;
        line-height: 30px !important;
    }
}

/* Mobil */
@media (max-width: 575px) {
    .p-detail-inner-header h1,
    .p-detail-inner-header .h1,
    .p-detail-inner-header-mobile h1,
    .p-detail-inner-header-mobile .h1 {
        font-size: 22px !important;
        line-height: 26px !important;
    }
}

/* ==========================================================
   KÓD PRODUKTU POD NÁZVEM (vložený JS)
========================================================== */
.p-code-header {
    font-size: 14px;
    color: #999;
    margin: 6px 0 14px;
}

.p-code-header .p-code {
    color: #999;
}

/* Skryj kód produktu pouze v doplňkových parametrech */
.p-detail .extended-description .detail-parameters tr.p-code {
    display: none;
}

/* ==========================================================
   ODKAZ „VÍCE INFORMACÍ“ POD KRÁTKÝ POPIS
========================================================== */
.show-more-description {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;

    font-family: "Stolzl", sans-serif;
    font-size: 13px;
    font-weight: 500;

    color: #1195FE;
    text-decoration: none;
    cursor: pointer;
}

.show-more-description::after {
    content: "→";
    transition: transform .2s ease;
}

.show-more-description:hover::after {
    transform: translateX(3px);
}

/* aby scroll neseděl úplně na hraně a byly vidět nadpisy */
#description {
    scroll-margin-top: 120px;
}

/* ==========================================================
   DOPLŇKOVÉ PARAMETRY – BÍLÁ KARTA SE STÍNEM
========================================================== */
.extended-description {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 35px;
    margin-top: 40px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Nadpis */
.extended-description > p strong {
    display: block;
    font-family: "Futura PT", sans-serif;
    font-style: italic;
    font-size: 22px;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ==========================================================
   DOPLŇKOVÉ PARAMETRY – ODSTRANIT ČÁRY / BUBLINY DISCO
========================================================== */
.extended-description .detail-parameters,
.extended-description .detail-parameters tr,
.extended-description .detail-parameters th,
.extended-description .detail-parameters td,
.extended-description .detail-parameters th span,
.extended-description .detail-parameters .row-header-label,
.extended-description .detail-parameters .row-header-label-colon {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* vypnout pseudo-čáry */
.extended-description .detail-parameters tr::before,
.extended-description .detail-parameters tr::after,
.extended-description .detail-parameters th::before,
.extended-description .detail-parameters th::after {
    content: none !important;
    display: none !important;
}

/* desktop: klasická tabulka */
.extended-description .detail-parameters th {
    padding-right: 16px !important;
    vertical-align: top;
    font-family: "Stolzl", sans-serif;
    font-weight: 600;
    color: #333;
}

.extended-description .detail-parameters td {
    font-family: "Stolzl", sans-serif;
    color: #000;
}

/* mobil: sloupce pod sebe (aby levý nebyl úzký) */
@media (max-width: 575px) {
    .extended-description .detail-parameters tr {
        display: block;
        margin-bottom: 12px;
    }

    .extended-description .detail-parameters th,
    .extended-description .detail-parameters td {
        display: block;
        width: 100% !important;
    }

    .extended-description .detail-parameters th {
        margin-bottom: 2px;
        font-size: 14px;
    }

    .extended-description .detail-parameters td {
        font-size: 15px;
    }
}