﻿:root {
    --ink: #171717;
    --muted: #6c6a66;
    --paper: #fff;
    --warm: #efe3d2;
    --line: #e9e6e1;
    --max: 1440px;
    --radius: 18px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit
}

.shell {
    width: min(calc(100% - 48px),var(--max));
    margin-inline: auto
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20
}

.shipping-bar {
    background: #faf8f4;
    border-bottom: 1px solid rgba(0,0,0,.025);
    font-size: 11px;
    color: #6f6a64;
}

.shipping-bar__inner {
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    white-space: nowrap;
    overflow: hidden;
}

    .shipping-bar__inner span + span::before {
        content: "•";
        margin-right: 14px;
        color: #c3bdb5;
    }

.shipping-bar .stock {
    color: #626a61;
    font-weight: 500;
}

    .shipping-bar .stock::before {
        content: "";
        display: inline-block;
        width: 6px;
        height: 6px;
        margin-right: 6px;
        border-radius: 50%;
        background: #579261;
        vertical-align: 1px;
    }



.nav-wrap {
    padding: 0 16px;
    box-shadow: 0 8px 30px rgba(47,36,25,.08);
}

.nav {
    min-height: 68px;
    margin-top: 0;
    padding: 0 22px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 0 0 12px 12px
}

.brand {
    display: flex;
    align-items: center;
}

    .brand img {
        display: block;
        width: auto;
        height: 32px;
        opacity: 0.65;
    }

.nav-links {
    display: flex;
    justify-content: center;
    gap: 34px;
    font-size: 15px;
    font-weight: 600
}

    .nav-links a {
        position: relative;
        padding: 20px 0
    }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 100%;
            bottom: 20px;
            height: 1px;
            background: var(--ink);
            transition: right .2s ease
        }

        .nav-links a:hover::after {
            right: 0
        }

.cart {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700
}

    .cart svg {
        width: 27px;
        height: 27px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round
    }

.nav-toggle, .nav-toggle-label {
    display: none
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #eadcc9
}

.hero__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #eadcc9
}

    .hero__media img {
        position: absolute;
        inset: 0 0 0 auto;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: right center;
        display: block;
    }

.hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(244,233,218,.98) 0%,rgba(244,233,218,.94) 24%,rgba(244,233,218,.55) 44%,rgba(244,233,218,.08) 63%,rgba(244,233,218,0) 74%)
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 125px
}

.hero__copy {
    max-width: 600px
}

.hero__title {
    font-size: clamp(48px, 4vw, 66px);
    line-height: .98;
    font-weight: 700;
    letter-spacing: -.035em;
    max-width: 650px;
    color: #222;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 800;
    margin: 0 0 16px
}

.hero__lead {
    max-width: 560px;
    font-size: 19px;
    line-height: 1.55;
    margin: 0 0 34px;
    color: #34302d
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 17px 25px;
    background: rgba(236,213,181,.92);
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .2s ease,background .2s ease
}

    .btn:hover {
        transform: translateY(-1px);
        background: #ead0ad
    }

.benefits {
    border-bottom: 1px solid var(--line);
    background: white
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding: 35px 0
}

.benefit {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 4px 28px;
    align-items: start
}

    .benefit + .benefit {
        border-left: 1px solid var(--line)
    }

.benefit__icon {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    color: #555;
}

    .benefit__icon svg {
        display: block;
        width: 100%;
        height: 100%;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }


.benefit h2 {
    font-size: 15px;
    margin: 0 0 7px;
    color: #222;
}

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

.chooser {
    padding: 58px 0 72px;
    text-align: center
}

.section-heading h2 {
    font-size: 34px;
    letter-spacing: -.03em;
    margin: 0 0 30px
}

.text-link {
    display: inline-block;
    margin-top: 24px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 14px
}

@media (max-width:1050px) {
    .nav-links {
        gap: 20px
    }

    .hero {
        min-height: 660px
    }

    .hero__media img {
        width: 112%;
        right: -6%
    }

    .hero__veil {
        background: linear-gradient(90deg,rgba(244,233,218,.97) 0%,rgba(244,233,218,.84) 35%,rgba(244,233,218,.18) 66%,rgba(244,233,218,0) 82%)
    }

    .benefits__grid {
        grid-template-columns: repeat(2,1fr);
        row-gap: 24px
    }

    .benefit:nth-child(3) {
        border-left: 0
    }

    .benefit {
        padding-block: 8px
    }
}

@media (max-width:760px) {
    .shell {
        width: min(calc(100% - 28px),var(--max))
    }


    .shipping-bar__inner {
        justify-content: flex-start;
        gap: 12px;
        overflow-x: auto;
        padding: 0 14px;
        scrollbar-width: none;
    }

        .shipping-bar__inner::-webkit-scrollbar {
            display: none;
        }

        .shipping-bar__inner span + span::before {
            margin-right: 12px;
        }

    .nav-wrap {
        padding: 0 8px
    }

    .nav {
        min-height: 66px;
        padding: 0 16px;
        grid-template-columns: 1fr auto auto;
        gap: 14px;
        border-radius: 0 0 10px 10px
    }

    .brand {
        font-size: 25px
    }

    .cart__label {
        display: none
    }

    .nav-toggle-label {
        display: grid;
        width: 30px;
        height: 30px;
        place-content: center;
        gap: 5px;
        cursor: pointer;
        order: 3
    }

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

    .cart {
        order: 2
    }


    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: grid;
        gap: 0;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        box-shadow: 0 14px 24px rgba(0,0,0,.08);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height .25s ease, opacity .2s ease;
    }

        .nav-links a {
            padding: 13px 24px;
            font-size: 15px;
            font-weight: 600;
            text-align: left;
            border-bottom: 0;
        }

            .nav-links a:last-child {
                border-bottom: 0;
            }

    .nav-toggle:checked ~ .nav-links {
        max-height: 260px;
        opacity: 1;
    }

    .hero {
        min-height: 0;
        display: block;
        padding-top: 100px;
        background: #f3e8da
    }

    .hero__media {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 4/5;
        background: #f3e8da
    }

        .hero__media img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center
        }

    .hero__veil {
        display: none
    }

    .hero__content {
        padding: 0;
        background: #f3e8da
    }

    .hero__copy {
        max-width: none;
        padding: 30px 0 38px
    }

    .eyebrow {
        margin-bottom: 10px
    }

    .hero h1 {
        font-size: clamp(42px,12vw,58px);
        line-height: 1.01;
        margin-bottom: 16px
    }

    .hero__lead {
        font-size: 16px;
        line-height: 1.45;
        margin-bottom: 24px;
        max-width: 34rem
    }

    .btn {
        padding: 15px 20px
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        padding: 24px 0
    }

    .benefit, .benefit:nth-child(3) {
        border-left: 0
    }

        .benefit + .benefit {
            border-top: 1px solid var(--line);
            border-left: 0;
            padding-top: 20px
        }

    .benefit {
        grid-template-columns: 42px 1fr;
        padding: 14px 4px
    }

    .benefit__icon {
        font-size: 30px
    }

    .chooser {
        padding: 42px 0 56px
    }

    .section-heading h2 {
        font-size: 30px
    }

    .swatches {
        gap: 14px
    }

    .swatch {
        width: 38px;
        height: 38px
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important
    }
}

/* v3 — responsive hero framing fixes */
@media (min-width:761px) {
    .hero {
        min-height: clamp(570px,38vw,680px);
        background: #f1e4d3;
    }

    .hero__media {
        background: #f1e4d3;
    }

        .hero__media img {
            width: auto;
            height: 100%;
            max-width: none;
            object-fit: contain;
            object-position: center center;
            right: clamp(-150px,calc((100vw - 1500px) * -.28),-18px);
            left: auto;
        }

    .hero__veil {
        /* No visible seam: the beige field dissolves gradually into the photo. */
        background: linear-gradient(90deg, rgba(244,233,218,1) 0%, rgba(244,233,218,.99) 20%, rgba(244,233,218,.94) 31%, rgba(244,233,218,.78) 41%, rgba(244,233,218,.48) 51%, rgba(244,233,218,.20) 61%, rgba(244,233,218,.05) 70%, rgba(244,233,218,0) 78%);
    }

    .hero__content {
        padding-top: 112px
    }
}

/* Narrow desktop / landscape tablet: keep shoes-to-shoulder in the useful zone. */
@media (min-width:761px) and (max-width:1180px) {
    .hero {
        min-height: 570px
    }

    .hero__media img {
        height: 100%;
        width: auto;
        right: -155px;
    }

    .hero__veil {
        background: linear-gradient(90deg, rgba(244,233,218,1) 0%, rgba(244,233,218,.98) 27%, rgba(244,233,218,.86) 39%, rgba(244,233,218,.57) 51%, rgba(244,233,218,.24) 62%, rgba(244,233,218,.05) 73%, rgba(244,233,218,0) 82%);
    }

    .hero__copy {
        max-width: 520px
    }

    .hero h1 {
        font-size: clamp(50px,6vw,68px);
        max-width: 600px
    }

    .hero__lead {
        font-size: 17px;
        max-width: 500px
    }
}

@media (min-width:761px) and (max-width:900px) {
    .hero {
        min-height: 540px
    }

    .hero__media img {
        right: -205px
    }

    .hero__content {
        padding-top: 106px
    }

    .hero__copy {
        max-width: 455px
    }

    .hero h1 {
        font-size: clamp(46px,6.2vw,58px)
    }

    .hero__lead {
        font-size: 16px;
        max-width: 430px;
        margin-bottom: 24px
    }
}

/* From the stacked breakpoint down, the photo is deliberately a compact,
   landscape crop. This keeps the important horizontal span (shoes → shoulder)
   instead of spending height on the window/cabinet. */
@media (max-width:760px) {
    .hero {
        padding-top: 100px
    }

    .hero__media {
        aspect-ratio: 16/10;
        max-height: 430px;
        min-height: 0;
    }

        .hero__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 58% 55%;
        }

    .hero__copy {
        padding: 24px 0 32px
    }
}

@media (max-width:520px) {
    .hero__media {
        aspect-ratio: 4/3;
        max-height: 390px
    }

        .hero__media img {
            object-position: 59% 55%
        }

    .hero__copy {
        padding: 22px 0 30px
    }
}

/* v4 — hero polish: seamless blend, media starts below nav, compact mobile crop */
.site-header {
    position: relative;
    inset: auto;
}

@media (min-width:761px) {
    .hero {
        min-height: clamp(560px,37vw,660px);
        background: #f1e4d3;
    }

    .hero__content {
        padding-top: 0;
    }

    .hero__media img {
        /* Fade the actual image into the beige field, not just an overlay above it.
       This removes the visible rectangular left edge of the photo. */
        -webkit-mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.12) 8%,rgba(0,0,0,.55) 19%,#000 31%,#000 100%);
        mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.12) 8%,rgba(0,0,0,.55) 19%,#000 31%,#000 100%);
    }

    .hero__veil {
        background: linear-gradient(90deg, #f4e9da 0%, rgba(244,233,218,.995) 22%, rgba(244,233,218,.94) 35%, rgba(244,233,218,.74) 47%, rgba(244,233,218,.43) 58%, rgba(244,233,218,.17) 68%, rgba(244,233,218,.035) 77%, rgba(244,233,218,0) 86%);
    }
}

@media (min-width:1181px) and (max-width:1499px) {
    .hero__media img {
        right: clamp( -120px, calc(-120px + (100vw - 1180px) * .47), 30px );
    }
}

@media (min-width:1500px) and (max-width:1799px) {
    .hero__media img {
        right: calc(30px + (100vw - 1500px) * .10);
    }
}

@media (min-width:1800px) {
    .hero__media img {
        right: calc(60px + (100vw - 1800px) / 2);
    }
}

@media (min-width:901px) and (max-width:1180px) {
    .hero {
        min-height: 550px
    }

    .hero__media img {
        right: -120px
    }

    .hero__copy {
        max-width: 500px
    }
}

@media (min-width:761px) and (max-width:900px) {
    .hero {
        min-height: 515px
    }

    .hero__media img {
        right: -175px
    }

    .hero__copy {
        max-width: 430px
    }

    .hero h1 {
        font-size: clamp(43px,6.1vw,55px)
    }
}

@media (max-width:760px) {
    .hero {
        padding-top: 0;
        display: flex;
        flex-direction: column;
        background: #f3e8da;
    }

    .hero__media {
        order: 0;
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16/10;
        max-height: none;
        background: #f3e8da;
    }

        .hero__media img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 50% 50%;
            -webkit-mask-image: none;
            mask-image: none;
        }

    .hero__content {
        order: 1;
        width: 100%;
        padding: 0;
    }

    .hero__copy {
        width: calc(100% - 28px);
        max-width: 520px;
        margin-inline: auto;
        padding: 32px 0 38px;
    }

    .hero h1 {
        font-size: clamp(34px,9.5vw,48px);
        line-height: 1.02;
    }
}

@media (max-width:520px) {
    .hero__media {
        aspect-ratio: 16/10;
        max-height: none;
    }

        .hero__media img {
            object-position: 50% 50%;
        }

    .hero__copy {
        padding: 20px 0 28px
    }

    .shipping-bar__inner span:last-child {
        display: none;
    }
}

@media (max-width: 760px) {
    .brand img {
        height: 26px;
    }
}

/*------------------------------------KATZALOG---------------*/
.catalog-section {
    padding: 58px 0 40px;
    background: #fff;
}

.catalog-head {
    text-align: center;
}

.catalog-eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.catalog-head h2 {
    margin: 0;
    font-size: clamp(34px, 3.4vw, 54px);
    line-height: 1;
    letter-spacing: -.045em;
}

.catalog-head__bottom {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    margin-top: 12px;
}

.catalog-meta {
    margin: 0;
    color: #5f5b56;
    font-size: 15px;
}

.size-help {
    position: absolute;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #393633;
    text-decoration: underline;
    text-underline-offset: 4px;
}

    .size-help svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }


/* produkty */

.products-grid__section-title {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #555;
}

    .products-grid__section-title span {
        margin: 0 .35em;
        color: #aaa;
    }

.products-grid__section-title--ballet {
    margin-top: 24px;
    margin-bottom: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.product-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border: 1px solid #e8e4de;
    border-radius: 12px;
    background: #fff;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .product-card:hover {
        border-color: #dcd6cf;
        box-shadow: 0 12px 28px rgba(45, 34, 23, .07);
    }

.product-card__image {
    display: grid;
    place-items: center;
    aspect-ratio: 1.45 / 1;
    padding: 22px 18px 8px;
    background: linear-gradient( 180deg, rgba(250,249,247,.75), rgba(255,255,255,0) );
}

    .product-card__image img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease !important;
    }

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

.product-card__body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 16px 14px;
}

.product-card h3 {
    margin: 0 0 5px;
    font-size: 15px;
    line-height: 1.25;
}

.product-card p {
    margin: 0;
    font-size: 14px;
    color: #4f4b46;
}

.product-card__arrow {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid #d5d0c9;
    border-radius: 50%;
    color: #333;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

    .product-card__arrow svg {
        width: 15px;
        height: 15px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform .2s ease;
    }

.product-card:hover .product-card__arrow {
    background: #191919;
    border-color: #191919;
    color: #fff;
}

    .product-card:hover .product-card__arrow svg {
        transform: translateX(1px);
    }

.product-card__badge {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    padding: 5px 8px;
    border-radius: 5px;
    background: #eee3d3;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}



/* tablet */

@media (max-width: 1180px) {
    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .size-help {
        position: static;
        margin-left: 28px;
    }
}

@media (max-width: 900px) {
    .catalog-section {
        padding-top: 48px;
    }

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

    .catalog-head__bottom {
        flex-wrap: wrap;
        gap: 10px 24px;
    }

    .size-help {
        margin-left: 0;
    }
}


/* mobil */

@media (max-width: 620px) {
    .catalog-section {
        padding: 40px 0 54px;
    }

    .catalog-head {
        margin-bottom: 26px;
    }

    .catalog-head__bottom {
        display: grid;
        justify-items: center;
        min-height: 0;
    }

    .catalog-meta {
        font-size: 14px;
    }

    .size-help {
        margin-top: 3px;
        font-size: 13px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .product-card {
        border-radius: 9px;
    }

    .product-card__image {
        aspect-ratio: 1.15 / 1;
        padding: 14px 10px 4px;
    }

    .product-card__body {
        padding: 8px 11px 13px;
    }

    .product-card h3 {
        font-size: 13px;
    }

    .product-card p {
        font-size: 12px;
    }

    .product-card__arrow {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .product-card__badge {
        top: 7px;
        left: 7px;
        padding: 4px 6px;
        font-size: 8px;
    }
}


/*-----------------------------------proc-------------------------*/

.why-jarmilky {
    padding: 40px 0 40px;
    background: #faf8f5;
}

.why-jarmilky__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(50px, 6vw, 100px);
    align-items: center;
}


/* FOTO */

.why-jarmilky__visual {
    overflow: hidden;
    border-radius: 12px;
    background: #eee8df;
}

    .why-jarmilky__visual img {
        display: block;
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1.08;
        object-fit: cover;
    }


/* TEXT */

.why-jarmilky__content {
    max-width: 600px;
}

.why-jarmilky__eyebrow {
    margin: 0 0 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.why-jarmilky h2 {
    margin: 0;
    font-size: clamp(38px, 3.4vw, 58px);
    line-height: .98;
    letter-spacing: -.045em;
}

.why-jarmilky__intro {
    max-width: 570px;
    margin: 28px 0 34px;
    color: #55504a;
    font-size: 17px;
    line-height: 1.65;
}


/* VLASTNOSTI */

.why-jarmilky__features {
    border-top: 1px solid #ded8d0;
}

.why-feature {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ded8d0;
}

.why-feature__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eee6db;
    color: #282522;
}

    .why-feature__icon svg {
        width: 25px;
        height: 25px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.why-feature__text h3 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.why-feature__text p {
    margin: 0;
    color: #625d57;
    font-size: 14px;
    line-height: 1.5;
}


/* TABLET */

@media (max-width: 950px) {

    .why-jarmilky {
        padding: 70px 0 76px;
    }

    .why-jarmilky__grid {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: 42px;
    }

    .why-jarmilky h2 {
        font-size: clamp(36px, 5vw, 48px);
    }

    .why-jarmilky__intro {
        margin: 22px 0 28px;
        font-size: 16px;
    }

    .why-feature {
        grid-template-columns: 48px 1fr;
        gap: 16px;
        padding: 16px 0;
    }

    .why-feature__icon {
        width: 44px;
        height: 44px;
    }

        .why-feature__icon svg {
            width: 22px;
            height: 22px;
        }
}


/* MOBIL */

@media (max-width: 720px) {

    .why-jarmilky {
        padding: 0 0 56px;
    }

        .why-jarmilky .shell {
            padding-left: 0;
            padding-right: 0;
        }

    .why-jarmilky__grid {
        display: block;
    }

    .why-jarmilky__visual {
        border-radius: 0;
    }

        .why-jarmilky__visual img {
            aspect-ratio: 4 / 3;
            object-position: center;
        }

    .why-jarmilky__content {
        max-width: none;
        padding: 40px 24px 0;
    }

    .why-jarmilky__eyebrow {
        margin-bottom: 14px;
    }

    .why-jarmilky h2 {
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1;
    }

    .why-jarmilky__intro {
        margin: 22px 0 28px;
        font-size: 16px;
        line-height: 1.55;
    }

    .why-feature {
        grid-template-columns: 44px 1fr;
        gap: 15px;
        padding: 17px 0;
    }

    .why-feature__icon {
        width: 42px;
        height: 42px;
    }

        .why-feature__icon svg {
            width: 28px;
            height: 28px;
        }

    .why-feature__text h3 {
        font-size: 13px;
    }

    .why-feature__text p {
        font-size: 13px;
    }
}

/* =========================================================
   ZÁVĚREČNÉ CTA
   ========================================================= */

.final-cta {
    background: #fff;
    border-top: 1px solid #eeeae4;
}

.final-cta__inner {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
}

.final-cta__eyebrow {
    margin: 0 0 13px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #55504b;
}

.final-cta h2 {
    margin: 0;
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.04em;
    color: #1c1c1c;
}

.final-cta__text {
    margin: 17px 0 27px;
    font-size: 15px;
    line-height: 1.5;
    color: #625d57;
}

.final-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    min-width: 230px;
    padding: 17px 24px;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 5px;
    background: #ecd5b5;
    color: #171717;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: background-color .2s ease, transform .2s ease;
}

    .final-cta__button svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform .2s ease;
    }

    .final-cta__button:hover {
        background: #e7cca6;
        transform: translateY(-1px);
    }

        .final-cta__button:hover svg {
            transform: translateY(-2px);
        }


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #f8f5f0;
    border-top: 1px solid #ebe6df;
    color: #35312d;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.25fr) minmax(150px, .8fr) minmax(190px, 1fr) minmax(140px, .65fr);
    gap: clamp(38px, 5vw, 82px);
    padding: 58px 0 50px;
}


/* logo + popis */

.site-footer__brand {
    max-width: 290px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

    .site-footer__logo img {
        display: block;
        width: auto;
        height: 38px;
        opacity: .72;
    }

.site-footer__brand p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #6c6761;
}


/* sociální ikonky */

.site-footer__socials {
    display: flex;
    gap: 9px;
    margin-top: 24px;
}

.site-footer__social {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #ddd7cf;
    border-radius: 50%;
    color: #37332f;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

    .site-footer__social svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* Facebook potřebuje fill */
    .site-footer__social:first-child svg {
        fill: currentColor;
        stroke: none;
    }

    .site-footer__social:hover {
        background: #191919;
        border-color: #191919;
        color: #fff;
    }


/* sloupce */

.site-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .site-footer__column h3 {
        margin: 0 0 19px;
        font-size: 11px;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: .13em;
        text-transform: uppercase;
        color: #27231f;
    }

    .site-footer__column a {
        position: relative;
        margin: 0 0 10px;
        font-size: 13px;
        line-height: 1.4;
        color: #625d57;
        transition: color .18s ease;
    }

        .site-footer__column a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 100%;
            bottom: -2px;
            height: 1px;
            background: #777069;
            transition: right .2s ease;
        }

        .site-footer__column a:hover {
            color: #171717;
        }

            .site-footer__column a:hover::after {
                right: 0;
            }


/* spodní copyright */

.site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 18px 0 22px;
    border-top: 1px solid #ddd7cf;
    font-size: 11px;
    color: #77716a;
}

.site-footer__author {
    justify-self: end;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px;
    border: 1px solid #ddd7cf;
    border-radius: 7px;
    background: rgba(255,255,255,.45);
}

    .language-switcher a {
        display: grid;
        place-items: center;
        min-width: 34px;
        height: 28px;
        padding: 0 8px;
        border-radius: 5px;
        color: #625d57;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .04em;
        text-decoration: none;
        transition: color .18s ease, background-color .18s ease;
    }

        .language-switcher a:hover {
            color: #171717;
            background: #eee8df;
        }

        .language-switcher a.is-active {
            color: #171717;
            background: #ecd5b5;
        }

    .site-footer__bottom a {
        text-decoration: underline;
    }

        .site-footer__bottom a:hover {
            text-decoration: none;
        }

@media (max-width: 620px) {
    .site-footer__bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 12px 20px;
        text-align: center;
    }

    .language-switcher {
        flex: 0 0 100%;
        justify-content: center;
        margin-bottom: 2px;
    }

    .site-footer__copyright,
    .site-footer__author {
        flex: 0 0 auto;
        color: #6f6a64;
    }

    .site-footer__author {
        justify-self: auto;
    }

    .language-switcher a {
        min-width: 30px;
        height: 27px;
        padding: 0 6px;
    }
}

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

@media (max-width: 950px) {

    .final-cta__inner {
        padding-top: 60px;
        padding-bottom: 64px;
    }

    .site-footer__grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 42px 34px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
        max-width: none;
    }

        .site-footer__brand p {
            max-width: 320px;
        }
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 650px) {

    .final-cta__inner {
        padding-top: 48px;
        padding-bottom: 52px;
    }

    .final-cta h2 {
        font-size: 34px;
    }

    .final-cta__text {
        max-width: 290px;
        margin-left: auto;
        margin-right: auto;
    }

    .final-cta__button {
        width: 100%;
        max-width: 320px;
    }


    .site-footer__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 42px 0 30px;
    }

    .site-footer__brand {
        padding-bottom: 34px;
    }

    .site-footer__column {
        padding: 22px 0;
        border-top: 1px solid #e2ddd6;
    }

        .site-footer__column h3 {
            margin-bottom: 15px;
        }

        .site-footer__column a {
            margin-bottom: 9px;
        }

    .site-footer__bottom {
        display: grid;
        gap: 6px;
        padding: 18px 0 22px;
    }
}

/*-----------------ware detail---------------*/
.product-detail {
    padding: 34px 0 72px;
    background: #fff;
}


/* breadcrumbs */

.product-detail__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    font-size: 12px;
    color: #77716a;
}

    .product-detail__breadcrumbs a:hover {
        color: #171717;
    }


/* hlavní layout */

.product-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    gap: clamp(42px, 5vw, 76px);
    align-items: start;
}

/* GALERIE */

.product-gallery__main {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 11;
    border: 1px solid #e7e2dc;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

    .product-gallery__main img {
        width: 84%;
        height: 84%;
        object-fit: contain;
    }

.product-gallery__360 {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    cursor: pointer;
}

.product-gallery__thumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.product-gallery__thumb {
    position: relative;
    display: block;
    flex: 0 0 92px;
    flex-basis: 96px;
    width: 96px;
    height: 96px;
    padding: 0;
    border: 1px solid #e6e1db;
    border-radius: 7px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease;
}

    .product-gallery__thumb img {
        position: absolute !important;
        inset: 6px !important;
        display: block !important;
        width: calc(100% - 12px) !important;
        height: calc(100% - 12px) !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain !important;
        object-position: center center !important;
        margin: 0 !important;
    }

    .product-gallery__thumb:hover,
    .product-gallery__thumb.is-active {
        border-color: #c9b596;
        box-shadow: 0 4px 14px rgba(0,0,0,.05);
    }

/* BUY AREA */

.product-buy__title {
    margin: 0 0 32px;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -.04em;
}

.product-purchase {
    margin-top: 32px;
}

.product-purchase__price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 105px;
}

    .product-purchase__price strong {
        font-size: 30px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: -.025em;
        white-space: nowrap;
    }

    .product-purchase__price span {
        margin-top: 4px;
        font-size: 9px;
        line-height: 1;
        color: #77716a;
    }


/* velikosti */

.product-size {
}

.product-size__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
}

    .product-size__head h2 {
        margin: 0;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

.product-size__head span {
    color: #b85a4d;
}

.product-size__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
}

    .product-size__grid button {
        height: 42px;
        border: 1px solid #ddd8d1;
        border-radius: 7px;
        background: #fff;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: background .16s ease, border-color .16s ease, color .16s ease;
    }

        .product-size__grid button:hover {
            border-color: #aaa39a;
        }

        .product-size__grid button.is-selected {
            background: #1b1b1b;
            border-color: #1b1b1b;
            color: #fff;
        }

.product-size__help {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    font-size: 11px;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    color: #55504b;
    opacity: 1;
}

.product-size__help:hover {
    opacity: 1;
}

    .product-size__help svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

@media (max-width: 520px) {
    .product-size__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
}

/* akce */

.product-actions {
    display: grid;
    grid-template-columns: max-content 90px minmax(0, 1fr);
    align-items: stretch;
    gap: 14px;
    margin-top: 22px;
}

.product-qty {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid #ddd8d1;
    border-radius: 5px;
    overflow: hidden;
}

    .product-qty button {
        border: 0;
        background: #fff;
        cursor: pointer;
        font-size: 18px;
        color: #555;
    }

    .product-qty span {
        display: grid;
        place-items: center;
        font-size: 14px;
        font-weight: 600;
    }

.product-add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 48px;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 5px;
    background: #ead0ad;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    white-space: nowrap;
    min-width: 0;
}

    .product-add:hover {
        background: #1c1c1c;
        border-color: #1c1c1c;
        color: #fff;
        transform: translateY(-1px);
    }

    .product-add svg {
        width: 25px;
        height: 25px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }


/* dostupnost */

.product-status {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 16px;
    border: 1px solid #e2ded7;
    border-radius: 7px;
}

.product-status__item {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px 0;
    font-size: 11px;
    line-height: 1.45;
    color: #4e4944;
}

    .product-status__item + .product-status__item {
        border-top: 1px solid #eeeae5;
    }

    .product-status__item svg {
        flex: 0 0 auto;
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .product-status__item strong {
        display: block;
        margin-bottom: 2px;
        color: #527850;
    }

    .product-status__item span {
        display: block;
    }

.product-status__item--stock {

}

    .product-status__item--stock strong {
        color: #4f7850;
        font-weight: 700;
    }

    .product-status__item--stock svg {
        stroke: #4f7850;
    }

    .product-status__item--stock.is-available {
        color: #4f7850;
    }

        .product-status__item--stock.is-available strong,
        .product-status__item--stock.is-available svg {
            color: #4f7850;
            stroke: #4f7850;
        }


/* převod velikostí */

.size-conversion {
    margin-top: 16px;
    padding: 16px 15px 14px;
    border: 1px solid #e2ded7;
    border-radius: 7px;
}

    .size-conversion h3 {
        margin: 0 0 12px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

.size-conversion__row {
    display: none;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    padding: 5px 0;
    font-size: 12px;
    line-height: 1.4;
}

.size-conversion.is-visible .size-conversion__row
{
    display: grid;
}

.size-conversion__empty {
    display: flex;
    align-items: center;
    min-height: 88px;
    font-size: 12px;
    line-height: 1.5;
    color: #6f6a64;
}

.size-conversion.is-visible .size-conversion__empty {
    display: none;
}

.size-conversion__row span {
    color: #5f5953;
}

    .size-conversion__row strong {
        font-weight: 600;
        color: #222;
    }



/* INFO */

.product-info {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 42px;
    margin-top: 24px;
    padding: 26px 0 30px;
    border-top: 1px solid #e3ded8;
    border-bottom: 1px solid #e3ded8;
}

    .product-info h2 {
        margin: 0 0 16px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .11em;
        text-transform: uppercase;
    }

.material-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: center;
}

    .material-item + .material-item {
        margin-top: 18px;
    }

.material-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .material-item__icon svg {
        display: block;
        width: 24px;
        height: 24px;
        color: #222;
    }

.material-item__content span {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
    color: #6f6a64;
}

.material-item__content strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1d;
}

.product-info__description {
    padding-left: 42px;
    border-left: 1px solid #e3ded8;
}

.product-info__materials {
    padding-left: 22px;
}

    .product-info__description p {
        max-width: 580px;
        margin: 0;
        font-size: 13px;
        line-height: 1.65;
        color: #504a45;
    }

.product-info--description-only {
    grid-template-columns: 1fr;
}

    .product-info--description-only .product-info__description {
        padding-left: 22px;
        border-left: 0;
    }

        .product-info--description-only .product-info__description p {
            max-width: 800px;
        }

/* RELATED */

.product-related {
    padding-top: 28px;
}

.product-related__head {
    text-align: center;
    margin-bottom: 22px;
}

.product-related__eyebrow {
    margin: 0 0 6px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #6d6760;
}

.product-related__head h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -.02em;
}

.product-related__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.related-card {
    padding: 10px;
    border: 1px solid #e6e1db;
    border-radius: 8px;
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease;
}

    .related-card:hover {
        border-color: #cfc7bd;
        box-shadow: 0 8px 18px rgba(0,0,0,.04);
    }

    .related-card.is-current {
        border-color: #d6ae76;
    }

.related-card__image {
    aspect-ratio: 1.2 / 1;
    display: grid;
    place-items: center;
}

    .related-card__image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.related-card h3 {
    margin: 8px 0 4px;
    font-size: 12px;
}

.related-card p {
    margin: 0;
    font-size: 11px;
    color: #55504a;
}


/* TABLET */

@media (max-width: 1050px) {

    .product-detail__grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .product-status {
        grid-template-columns: 1fr;
    }

    .product-related__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .product-detail__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery,
    .product-buy {
        min-width: 0;
        width: 100%;
    }

    .product-buy {
        margin-top: 0;
    }
}

/* MOBIL */

@media (max-width: 760px) {

    .product-detail {
        padding-top: 18px;
    }

    .product-detail__grid {
        display: block;
    }

    .product-gallery__thumbs {
        overflow-x: auto;
    }

    .product-gallery__thumb {
        flex: 0 0 78px;
        width: 78px;
        height: 78px;
    }

    .product-buy {
        margin-top: 28px;
    }

    .product-buy__title {
        font-size: 34px;
    }

    .product-size__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-info {
        display: block;
    }

    .product-info__description {
        margin-top: 26px;
        padding-left: 0;
        padding-top: 26px;
        border-left: 0;
        border-top: 1px solid #e3ded8;
    }

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

.product-meta-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 14px;
    margin-top: 16px;
}

.product-status,
.size-conversion {
    margin-top: 0;
    height: 100%;
}

@media (max-width: 520px) {
    .product-actions {
        grid-template-columns: 90px 1fr;
    }

    .product-purchase__price {
        grid-column: 1 / -1;
    }

    .product-add {
        grid-column: 2;
    }

    .product-meta-grid {
        grid-template-columns: 1fr;
    }

}

/*-----------------------detail plist------------------*/


.product-variants__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.variant-card {
    display: block;
    overflow: hidden;
    min-width: 0;
    border: 1px solid #e8e4de;
    border-radius: 10px;
    background: #fff;
    color: #171717;
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.variant-card__image {
    display: grid;
    place-items: center;
    aspect-ratio: 1.45 / 1;
    padding: 16px 12px 4px;
    background: linear-gradient( 180deg, rgba(250,249,247,.75), rgba(255,255,255,0) );
}

    .variant-card__image img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform .3s ease !important;
    }

.variant-card__body {
    padding: 7px 12px 12px;
}

.variant-card__name {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.variant-card:hover {
    border-color: #dcd6cf;
    box-shadow: 0 10px 24px rgba(45,34,23,.06);
}

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

.product-variants__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

/* užší desktop / tablet */
@media (max-width: 1180px) {
    .product-variants__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* tablet */
@media (max-width: 900px) {
    .product-variants__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* mobil */
@media (max-width: 620px) {
    .product-variants__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}

@media (max-width: 620px) {
    .variant-card__image {
        padding: 12px 8px 4px;
    }

    .variant-card__body {
        padding: 7px 10px 11px;
    }

    .variant-card__name {
        font-size: 12px;
    }
}

/*--------------------cart-----------------*/
/* =========================================================
   KOŠÍK / OBJEDNÁVKA
   ========================================================= */

.order-page {
    padding: 44px 0 76px;
    background: #fff;
    color: var(--ink);
}

    .order-page .content-wrapper {
        width: min(calc(100% - 48px), 1180px);
        margin-inline: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 26px 22px;
    }


        /* =========================================================
   HLAVNÍ NADPISY
   ========================================================= */

        .order-page .content-wrapper > h3 {
            grid-column: 1 / -1;
            margin: 10px 0 -3px;
            font-size: 28px;
            line-height: 1.08;
            font-weight: 700;
            letter-spacing: -.035em;
        }

            .order-page .content-wrapper > h3:first-child {
                margin-top: 0;
                margin-bottom: 4px;
                font-size: clamp(30px, 2.6vw, 38px);
            }


/* =========================================================
   OBSAH KOŠÍKU
   ========================================================= */

#orderCartContent {
    grid-column: 1 / -1;
    border: 1px solid #e4dfd8;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}


/* ---------------------------------------------------------
   JEDNA POLOŽKA
   --------------------------------------------------------- */

.order-cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 110px minmax(180px, 1fr) 125px 150px 110px 38px;
    align-items: center;
    gap: 18px;
    min-width: 0;
    padding: 14px 18px;
}

    .order-cart-item + .order-cart-item {
        border-top: 1px solid #ece8e2;
    }


/* obrázek */

.cart-item-image-wrapper {
    display: grid;
    place-items: center;
    width: 110px;
    height: 92px;
    padding: 8px;
    border-radius: 7px;
    background: transparent;
}

    .cart-item-image-wrapper img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform .25s ease !important;
    }

    .cart-item-image-wrapper:hover img {
        transform: scale(1.04);
    }


/* název */

.order-item-names {
    min-width: 0;
}

.order-item-wname {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}

.order-item-vname {
    font-size: 13px;
    line-height: 1.4;
    color: #716b65;
}


/* jednotková cena */

.order-item-price {
    font-size: 13px;
    line-height: 1.4;
    color: #69635d;
    white-space: nowrap;
}


/* =========================================================
   MNOŽSTVÍ
   ========================================================= */

.order-item-pieces {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: max-content;
    min-height: 42px;
    padding: 0 8px;
    border: 1px solid #ddd8d1;
    border-radius: 7px;
    white-space: nowrap;
}

    .order-item-pieces input {
        width: 28px;
        height: 40px;
        padding: 0;
        border: 0;
        outline: 0;
        background: transparent;
        text-align: center;
        font: inherit;
        font-size: 13px;
        font-weight: 700;
    }

.order-piece-unit {
    font-size: 12px;
    color: #655f59;
}

.order-item-pieces a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: background-color .18s ease;
}

    .order-item-pieces a:hover {
        background: #f2eee8;
    }

    .order-item-pieces a img {
        display: block;
        width: 11px;
        height: 11px;
        object-fit: contain;
    }


/* výsledná cena */

.order-item-price-sum {
    justify-self: end;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
}


/* odstranit */

.order-item-delete {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    opacity: .72;
    color: #8d867e;
    transition: opacity .18s ease, background-color .18s ease;
}

    .order-item-delete:hover {
        opacity: 1;
        color: #171717;
        background: #f2eee8;
    }

    .order-item-delete img {
        display: block;
        width: 12px;
        height: 12px;
    }


/* staré prvky už nejsou potřeba */

.order-item-ruler,
#orderCartContent > .cleaner {
    display: none;
}


/* =========================================================
   OBECNÉ BOXY CHECKOUTU
   ========================================================= */

.order-shippay-box {
    min-width: 0;
    padding: 25px;
    border: 1px solid #e3ded7;
    border-radius: 10px;
    background: #fff;
}

    .order-shippay-box.left {
        grid-column: 1 / -1;
    }


    /* nadpis uvnitř boxů */

    .order-shippay-box > h3,
    #orderData > h3,
    #invoiceData > h3 {
        margin: 0 0 21px;
        font-size: 16px;
        line-height: 1.2;
        font-weight: 800;
    }


/* =========================================================
   DODACÍ / FAKTURAČNÍ ÚDAJE
   ========================================================= */

#orderData,
#invoiceData {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 18px;
}

    #orderData > h3,
    #invoiceData > h3,
    #orderData > .adr-check {
        grid-column: 1 / -1;
    }

#invoiceData {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid #e8e3dc;
}


/* =========================================================
   FORMULÁŘOVÁ POLE
   ========================================================= */

.form-box {
    position: relative;
    min-width: 0;
}

    .form-box > span {
        display: block;
        margin-bottom: 7px;
        font-size: 12px;
        line-height: 1.3;
        font-weight: 600;
        color: #514c47;
    }

    .form-box.required > span::after {
        content: " *";
        color: #b85a4d;
    }

    .form-box input,
    .form-box select,
    .order-note textarea {
        display: block;
        width: 100%;
        border: 1px solid #dcd7d0;
        border-radius: 7px;
        outline: none;
        background: #fff;
        color: #202020;
        font: inherit;
        transition: border-color .18s ease, box-shadow .18s ease;
    }

    .form-box input,
    .form-box select {
        height: 45px;
        padding: 0 12px;
        font-size: 14px;
    }

    .form-box select {
        cursor: pointer;
    }

        .form-box input:hover,
        .form-box select:hover,
        .order-note textarea:hover {
            border-color: #bdb6ae;
        }

        .form-box input:focus,
        .form-box select:focus,
        .order-note textarea:focus {
            border-color: #81786e;
            box-shadow: 0 0 0 3px rgba(100,88,75,.08);
        }


    /* autocomplete trochu uhladit */

    .form-box input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 1000px #fff inset;
    }


/* =========================================================
   VALIDACE
   ========================================================= */

.invalid-require,
.invalid-mail,
.invalid-tel,
.invalid-zip {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.35;
    color: #b65349;
    display: none;
}


/* =========================================================
   CHECKBOX FAKTURAČNÍ ADRESY
   ========================================================= */

.adr-check {
    margin-top: 5px;
}

.check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    color: #46413c;
}

.check-checkerbox {
    position: relative;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border: 1px solid #bbb4ab;
    border-radius: 5px;
    background: #fff;
}

    .check-checkerbox.checked {
        border-color: #668363;
        background: #668363;
    }

        .check-checkerbox.checked::after {
            content: "";
            position: absolute;
            left: 6px;
            top: 3px;
            width: 5px;
            height: 9px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }


/* =========================================================
   DOPRAVA / PLATBA
   ========================================================= */

.order-radios {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 58px;
    padding: 13px 14px;
    border: 1px solid #e3ded7;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

    .order-radios + .order-radios {
        margin-top: 9px;
    }

    .order-radios:hover {
        border-color: #bbb3aa;
        background: #fcfaf7;
    }


/* radio */

.radio-checker {
    display: grid;
    place-items: center;
    width: 19px;
    height: 19px;
    border: 1.5px solid #aaa29a;
    border-radius: 50%;
    background: #fff;
}

    .radio-checker > div {
        width: 9px;
        height: 9px;
        border-radius: 50%;
    }


/*
 Doplň sem skutečnou class, kterou tvůj JS
 nastavuje zvolené variantě, pokud je jiná.
*/

.order-radios.checked,
.order-radios.selected {
    border-color: #aaa096;
    background: #faf8f5;
}

    .order-radios.checked .radio-checker > div,
    .order-radios.selected .radio-checker > div {
        background: #191919;
    }


/* text dopravy */

.order-radio-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

    .order-radio-container > span {
        flex: 0 0 auto;
        font-size: 12px;
        font-weight: 700;
        color: #57514b;
    }


    /* případný detail */

    .order-radio-container .detail {
        font-size: 11px;
        font-weight: 400;
        color: #777069;
    }


/* není zvolená doprava */

.ship-pay-select-first {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 13px 14px;
    border: 1px dashed #ddd7cf;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: #89827b;
}


/* =========================================================
   DOKONČENÍ OBJEDNÁVKY
   ========================================================= */

.order-note {
    min-width: 0;
}

    .order-note textarea {
        min-height: 160px;
        padding: 14px 15px;
        resize: vertical;
        font-size: 14px;
        line-height: 1.5;
    }


/* sumarizační box */

.order-finbox {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 25px;
    border: 1px solid #ded8d0;
    border-radius: 10px;
    background: #faf8f5;
}


/* celková cena */

.order-sumprice {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 19px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dfd9d1;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
}

    .order-sumprice span {
        font-size: 27px;
        line-height: 1;
        font-weight: 800;
        letter-spacing: -.025em;
        white-space: nowrap;
    }


/* souhlasy */

.order-laws {
    display: block;
    margin-bottom: 19px;
    font-size: 11px;
    line-height: 1.55;
    color: #777069;
}

    .order-laws br {
        display: none;
    }

    .order-laws a {
        text-decoration: underline;
        text-underline-offset: 2px;
    }


/* dokončit */

.btn-order-finish {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 6px;
    background: #ecd5b5;
    color: #171717;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .1em;
    text-align: center;
    text-transform: uppercase;
    transition: background-color .2s ease, transform .2s ease;
}

    .btn-order-finish:hover {
        background: #e7cca6;
        transform: translateY(-1px);
    }


/* spinner */

.order-finbox .sk-circle {
    margin: 18px auto 0;
}


/* =========================================================
   STARÉ FLOAT / CLEANER PRVKY
   ========================================================= */

.order-page .content-wrapper > .cleaner {
    display: none;
}


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

@media (max-width: 1000px) {

    .order-page {
        padding-top: 34px;
    }

        .order-page .content-wrapper {
            grid-template-columns: 1fr;
        }

            .order-page .content-wrapper > h3,
            #orderCartContent,
            .order-shippay-box.left {
                grid-column: 1;
            }


    /* položka */

    .order-cart-item {
        grid-template-columns: 90px minmax(150px, 1fr) 140px 100px 34px;
        gap: 14px;
    }

    .cart-item-image-wrapper {
        width: 90px;
        height: 82px;
    }

    /* jednotková cena je na tabletu zbytečná */

    .order-item-price {
        display: none;
    }
}


/* =========================================================
   MALÝ TABLET
   ========================================================= */

@media (max-width: 760px) {

    .order-page .content-wrapper {
        width: min(calc(100% - 28px), 1180px);
    }

        .order-page .content-wrapper > h3 {
            font-size: 25px;
        }

    .order-shippay-box {
        padding: 22px;
    }


    /* položka už více "card-like" */

    .order-cart-item {
        grid-template-columns: 82px minmax(0, 1fr) auto;
        grid-template-areas:
            "image name delete"
            "image pieces sum";
        gap: 8px 14px;
        padding: 14px;
    }

    .cart-item-image-wrapper {
        grid-area: image;
        width: 82px;
        height: 82px;
    }

    .order-item-names {
        grid-area: name;
        align-self: end;
    }

    .order-item-price {
        display: none;
    }

    .order-item-pieces {
        grid-area: pieces;
        justify-self: start;
        align-self: start;
    }

    .order-item-price-sum {
        grid-area: sum;
        align-self: center;
        justify-self: end;
        font-size: 15px;
    }

    .order-item-delete {
        grid-area: delete;
        justify-self: end;
        align-self: start;
    }


    /* formuláře už do jednoho sloupce */

    #orderData,
    #invoiceData {
        grid-template-columns: 1fr;
        gap: 15px;
    }

        #orderData > h3,
        #invoiceData > h3,
        #orderData > .adr-check {
            grid-column: 1;
        }
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 520px) {

    .order-page {
        padding: 26px 0 52px;
    }

        .order-page .content-wrapper {
            gap: 20px;
        }

            .order-page .content-wrapper > h3 {
                margin-bottom: -4px;
                font-size: 23px;
            }

                .order-page .content-wrapper > h3:first-child {
                    font-size: 31px;
                }


    /* položka */

    .order-cart-item {
        grid-template-columns: 72px minmax(0, 1fr) 30px;
        gap: 7px 11px;
        padding: 12px;
    }

    .cart-item-image-wrapper {
        width: 72px;
        height: 76px;
        padding: 4px;
    }

    .order-item-wname {
        margin-bottom: 3px;
        font-size: 14px;
    }

    .order-item-vname {
        font-size: 12px;
    }

    .order-item-pieces {
        grid-template-columns: 28px 34px 28px;
        min-height: 38px;
    }

        .order-item-pieces input {
            width: 34px;
            height: 36px;
        }

        .order-item-pieces a {
            width: 28px;
            height: 36px;
        }

    .order-item-price-sum {
        font-size: 14px;
    }


    /* checkout boxy */

    .order-shippay-box {
        padding: 19px 15px;
        border-radius: 8px;
    }

    .form-box input,
    .form-box select {
        height: 47px;
        /*
         Na iOS zabrání automatickému zoomu při focusu.
        */
        font-size: 16px;
    }

    .check {
        align-items: flex-start;
        font-size: 12px;
    }

    .order-radios {
        padding: 12px;
        min-height: 56px;
    }

    .order-radio-container {
        font-size: 12px;
    }

        .order-radio-container > span {
            font-size: 11px;
        }


    /* dokončení */

    .order-note textarea {
        min-height: 120px;
        font-size: 16px;
    }

    .order-finbox {
        padding: 20px 16px;
    }

    .order-sumprice {
        margin-bottom: 17px;
        padding-bottom: 17px;
        font-size: 13px;
    }

        .order-sumprice span {
            font-size: 24px;
        }

    .btn-order-finish {
        min-height: 54px;
    }
}

.order-item-pieces a svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.order-item-delete {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: color .18s ease, background-color .18s ease;
}

    .order-item-delete svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.6;
        stroke-linecap: round;
    }

    .order-item-delete:hover {
        color: #171717;
        background: #f2eee8;
    }

.order-radios:has(.radio-checker.checked) {
    border-color: #c8aa7b;
    background: #f7efe3;
}

.radio-checker.checked {
    border-color: #6f9b72;
}

    .radio-checker.checked > div {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #6f9b72;
    }

.order-shippay-box.left + .order-shippay-box {
    margin-top: 4px;
}

.order-page .content-wrapper > h3:last-of-type {
    margin-top: 14px;
}

/*-----------------infopages---------------*/

/* =========================================================
   INFORMAČNÍ STRÁNKY
   ========================================================= */

.info-page {
    padding: 48px 0 78px;
    background: #fff;
    color: var(--ink);
}

    .info-page .content-wrapper {
        width: min(calc(100% - 48px), 1180px);
        margin-inline: auto;
    }


    /* =========================================================
   TYPOGRAFIE
   ========================================================= */

    .info-page h1 {
        margin: 0 0 34px;
        font-size: clamp(34px, 3.2vw, 46px);
        line-height: 1.04;
        font-weight: 700;
        letter-spacing: -.04em;
    }

    .info-page h2 {
        margin: 38px 0 20px;
        font-size: 24px;
        line-height: 1.15;
        font-weight: 700;
        letter-spacing: -.025em;
    }

    .info-page h3 {
        margin: 30px 0 14px;
        font-size: 17px;
        line-height: 1.25;
        font-weight: 700;
    }

    .info-page p {
        max-width: 780px;
        margin: 0 0 18px;
        font-size: 15px;
        line-height: 1.7;
        color: #514c47;
    }

    .info-page a {
        color: #332f2b;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-color: #c9b596;
        transition: color .18s ease, text-decoration-color .18s ease;
    }

        .info-page a:hover {
            color: #171717;
            text-decoration-color: #171717;
        }

    .info-page strong,
    .info-page b {
        color: #26221f;
    }


    /* =========================================================
   OBECNÉ SEZNAMY
   ========================================================= */

    .info-page ul,
    .info-page ol {
        margin-top: 14px;
        margin-bottom: 24px;
        padding-left: 24px;
        color: #514c47;
    }

    .info-page li {
        margin-bottom: 8px;
        line-height: 1.6;
    }


    /* =========================================================
   KONTAKT
   ========================================================= */

    /*
 Desktop: vlevo údaje, vpravo formulář.
*/

    .info-page .cont-info,
    .info-page .cont-form {
        vertical-align: top;
    }

    .info-page .content-wrapper:has(.cont-info) {
        display: grid;
        grid-template-columns: minmax(260px, .8fr) minmax(380px, 1.2fr);
        gap: clamp(46px, 6vw, 90px);
        align-items: start;
    }

        .info-page .content-wrapper:has(.cont-info) > h1 {
            grid-column: 1 / -1;
        }


/* kontakt – údaje */

.cont-info {
    padding: 26px 28px;
    border: 1px solid #e4dfd8;
    border-radius: 10px;
    background: #faf8f5;
    font-size: 14px;
    line-height: 1.75;
    color: #514c47;
}

    .cont-info > span {
        font-weight: 700;
        color: #26221f;
    }

    .cont-info ul {
        margin: 8px 0 0;
        padding-left: 20px;
    }

    .cont-info li {
        margin-bottom: 10px;
    }


/* =========================================================
   KONTAKTNÍ FORMULÁŘ
   ========================================================= */

.cont-form {
    padding: 28px 30px;
    border: 1px solid #e4dfd8;
    border-radius: 10px;
    background: #fff;
}

    .cont-form h2 {
        margin: 0 0 24px;
        font-size: 24px;
    }

    .cont-form > span {
        display: block;
        margin: 0 0 7px;
        font-size: 12px;
        font-weight: 600;
        color: #514c47;
    }

    .cont-form .fields {
        display: block;
        width: 100%;
        margin-bottom: 18px;
        border: 1px solid #dcd7d0;
        border-radius: 7px;
        outline: none;
        background: #fff;
        color: #202020;
        font: inherit;
        font-size: 14px;
        transition: border-color .18s ease, box-shadow .18s ease;
    }

    .cont-form input.fields {
        height: 46px;
        padding: 0 12px;
    }

    .cont-form textarea.fields {
        min-height: 150px !important;
        padding: 12px;
        resize: vertical;
        line-height: 1.5;
    }

    .cont-form .fields:hover {
        border-color: #bdb6ae;
    }

    .cont-form .fields:focus {
        border-color: #81786e;
        box-shadow: 0 0 0 3px rgba(100,88,75,.08);
    }


    /* recaptcha */

    .cont-form .g-recaptcha {
        margin: 4px 0 18px;
        max-width: 100%;
    }


    /* submit */

    .cont-form .send-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 150px;
        min-height: 46px;
        padding: 12px 22px;
        border: 1px solid rgba(0,0,0,.07);
        border-radius: 5px;
        background: #ecd5b5;
        color: #171717;
        font: inherit;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .1em;
        text-transform: uppercase;
        cursor: pointer;
        transition: background-color .2s ease, transform .2s ease;
    }

        .cont-form .send-button:hover {
            background: #e7cca6;
            transform: translateY(-1px);
        }


    /* disclaimer */

    .cont-form .discalimer {
        margin-top: 24px;
        padding-top: 18px;
        border-top: 1px solid #e8e3dc;
        font-size: 12px;
        line-height: 1.55;
        color: #777069;
    }


/* staré cleanery */

.info-page .cleaner {
    display: none;
}


/* =========================================================
   FAQ
   ========================================================= */

.infopage-faq {
    max-width: 960px;
}

    .infopage-faq > p:first-of-type {
        margin-bottom: 28px;
        font-size: 16px;
    }


    /* obsah FAQ nahoře */

    .infopage-faq .contents {
        counter-reset: faq;
        list-style: none;
        max-width: 800px;
        margin: 0 0 48px;
        padding: 0;
        border-top: 1px solid #e4dfd8;
    }

        .infopage-faq .contents li {
            position: relative;
            margin: 0;
            padding: 14px 16px 14px 38px;
            border-bottom: 1px solid #e4dfd8;
            counter-increment: faq;
        }

            .infopage-faq .contents li::before {
                content: counter(faq);
                position: absolute;
                left: 8px;
                top: 15px;
                width: 20px;
                font-size: 11px;
                font-weight: 700;
                color: #9a9289;
            }

        .infopage-faq .contents a {
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
        }

            .infopage-faq .contents a:hover {
                text-decoration: underline;
                text-underline-offset: 3px;
            }


    /* jednotlivé odpovědi */

    .infopage-faq .texts {
        list-style: none;
        margin: 0;
        padding: 0;
        counter-reset: none;
    }

        .infopage-faq .texts > li {
            margin: 0;
            padding: 30px 0;
            border-top: 1px solid #e5e0d9;
        }

            .infopage-faq .texts > li:first-child {
                border-top: 0;
            }

            .infopage-faq .texts > li > a[name] {
                display: block;
                margin-bottom: 12px;
                color: #1f1d1b;
                font-size: 19px;
                line-height: 1.3;
                font-weight: 700;
                text-decoration: none;
            }

            .infopage-faq .texts > li > p {
                max-width: 820px;
            }


    /* =========================================================
   POSTUP MĚŘENÍ
   ========================================================= */

    .infopage-faq .measList {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        margin: 24px 0 12px;
        padding: 0;
        list-style: none;
        counter-reset: measure-step;
    }

    .infopage-faq .measListItem {
        position: relative;
        overflow: hidden;
        margin: 0;
        padding: 20px;
        border: 1px solid #e4dfd8;
        border-radius: 9px;
        background: #fff;
        counter-increment: measure-step;
    }

        .infopage-faq .measListItem::before {
            content: counter(measure-step);
            display: grid;
            place-items: center;
            width: 28px;
            height: 28px;
            margin-bottom: 12px;
            border-radius: 50%;
            background: #eee6db;
            color: #26221f;
            font-size: 12px;
            font-weight: 800;
        }

        .infopage-faq .measListItem img {
            display: block;
            width: 100%;
            max-width: 100%;
            height: auto;
            margin-top: 16px;
            border: 1px solid #e7e2dc;
            border-radius: 7px;
        }


        /* poslední lichý krok může být široký */

        .infopage-faq .measListItem:last-child:nth-child(odd) {
            grid-column: 1 / -1;
        }


/* =========================================================
   TABULKY
   ========================================================= */

.info-page table {
    width: 100%;
    max-width: 820px;
    margin: 20px 0 30px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e2ddd6;
    border-radius: 8px;
    overflow: hidden;
    font-size: 13px;
}

.info-page th,
.info-page td {
    padding: 11px 13px;
    border-bottom: 1px solid #ebe7e1;
    text-align: left;
    vertical-align: top;
}

.info-page th {
    background: #faf8f5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.info-page tr:last-child td {
    border-bottom: 0;
}

.info-page tbody tr:hover td {
    background: #fdfbf8;
}


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

@media (max-width: 900px) {

    .info-page {
        padding-top: 38px;
    }

        .info-page .content-wrapper:has(.cont-info) {
            grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
            gap: 28px;
        }

    .cont-info,
    .cont-form {
        padding: 22px;
    }
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 700px) {

    .info-page {
        padding: 30px 0 56px;
    }

        .info-page .content-wrapper {
            width: calc(100% - 28px);
        }

        .info-page h1 {
            margin-bottom: 26px;
            font-size: 32px;
        }

        .info-page h2 {
            font-size: 22px;
        }

        .info-page p {
            font-size: 14px;
            line-height: 1.65;
        }


        /* kontakt pod sebe */

        .info-page .content-wrapper:has(.cont-info) {
            display: block;
        }

    .cont-info {
        margin-bottom: 18px;
    }

    .cont-info,
    .cont-form {
        padding: 20px 17px;
        border-radius: 8px;
    }


        /* formulář */

        .cont-form input.fields,
        .cont-form textarea.fields {
            /*
         16px kvůli iOS zoomu při focusu.
        */
            font-size: 16px;
        }

        .cont-form input.fields {
            height: 47px;
        }

        .cont-form .send-button {
            width: 100%;
            min-height: 50px;
        }


        /* reCAPTCHA – pokud je viewport velmi úzký */

        .cont-form .g-recaptcha {
            overflow-x: auto;
            overflow-y: hidden;
        }


    /* FAQ */

    .infopage-faq .contents li {
        padding-top: 13px;
        padding-bottom: 13px;
    }

    .infopage-faq .texts > li {
        padding: 24px 0;
    }

        .infopage-faq .texts > li > a[name] {
            font-size: 17px;
        }


    /* měření do jednoho sloupce */

    .infopage-faq .measList {
        grid-template-columns: 1fr;
    }

    .infopage-faq .measListItem:last-child:nth-child(odd) {
        grid-column: auto;
    }


    /* tabulky horizontálně rolovatelné */
    /*
       Samotné HTML nemá wrapper kolem table, takže tabulku
       necháme blokovou a dovolíme stránce bezpečně scrollovat.
    */

    .info-page table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .info-page th,
    .info-page td {
        min-width: 110px;
    }
}


/* =========================================================
   EXTRA MALÝ MOBIL
   ========================================================= */

@media (max-width: 380px) {

    .info-page .content-wrapper {
        width: calc(100% - 20px);
    }

    .cont-info,
    .cont-form {
        padding: 17px 14px;
    }
}

.info-page .measList img {
    display: block;
    width: auto;
    max-width: min(100%, 420px);
    height: auto;
    margin: 12px auto 0;
    border: none;
}

.info-page .content-wrapper {
    width: min(calc(100% - 48px), 1180px);
    margin-inline: auto;
}

    /* běžná textová informační stránka */
    .info-page .content-wrapper:not(:has(.cont-info)):not(:has(.infopage-faq)) {
        max-width: 920px;
    }

.info-page .size-legend
{
    font-size: 0.7em;
    font-weight: normal;
}

.info-page .available-size {
    background-color: #fbe9ce;
}

/*--------------------warn kontejner --------------*/
.warn-container {
    text-align: center;
    padding: 20px;
    font-size: 1.3em;
    background: #e63c3c;
    color: #fff;
    display: none;
    z-index: 2001;
    position: fixed;
    top: 0;
    width: 100%;
}

    .warn-container a {
        color: #fff;
    }

        .warn-container a:hover {
            color: #1d1d1e;
        }

    .warn-container .close {
        margin-left: 1em;
    }

    .warn-container.positive {
        background: #61b252;
    }


    /*-------------thx---------*/
/* =========================================================
   DĚKOVNÁ STRÁNKA
   ========================================================= */

.thankyou-page {
    padding: 54px 0 82px;
    background: #fff;
    color: var(--ink);
}

    .thankyou-page .content-wrapper {
        width: min(calc(100% - 48px), 900px);
        margin-inline: auto;
    }

    .thankyou-page h1 {
        margin: 0 0 28px;
        text-align: center;
        font-size: clamp(36px, 4vw, 52px);
        line-height: 1.02;
        font-weight: 700;
        letter-spacing: -.04em;
    }


/* hlavní obsah */

.thankyou {
    padding: 34px 38px;
    border: 1px solid #e3ded7;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(45,34,23,.045);
}

    .thankyou > br {
        display: none;
    }

    .thankyou p {
        max-width: 720px;
        margin: 0 auto 18px;
        font-size: 15px;
        line-height: 1.7;
        color: #514c47;
    }

    .thankyou strong {
        color: #24211e;
        font-weight: 700;
    }

    .thankyou a {
        color: #2f2a26;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-color: #c8b28f;
    }

        .thankyou a:hover {
            text-decoration-color: #171717;
        }


    /* úspěšná online platba */

    .thankyou .online-okay {
        position: relative;
        margin-bottom: 26px;
        padding: 15px 18px 15px 46px;
        border: 1px solid #cfe0cf;
        border-radius: 8px;
        background: #f4f8f3;
        color: #476a4a;
        font-weight: 600;
    }

        .thankyou .online-okay::before {
            content: "✓";
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            display: grid;
            place-items: center;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #6f9b72;
            color: #fff;
            font-size: 12px;
            font-weight: 800;
        }


    /* závěrečné poděkování */

    .thankyou p[style*="text-align: center"] {
        margin-top: 30px;
        margin-bottom: 8px;
        text-align: center !important;
        font-size: 18px;
        font-weight: 700;
        color: #25221f;
    }

    .thankyou p[style*="text-align: right"] {
        margin-top: 0;
        margin-bottom: 0;
        text-align: center !important;
        font-size: 13px;
        font-weight: 600;
        color: #777069;
    }


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 700px) {

    .thankyou-page {
        padding: 34px 0 58px;
    }

        .thankyou-page .content-wrapper {
            width: calc(100% - 28px);
        }

        .thankyou-page h1 {
            margin-bottom: 22px;
            font-size: 34px;
        }

    .thankyou {
        padding: 24px 18px;
        border-radius: 9px;
        box-shadow: none;
    }

        .thankyou p {
            font-size: 14px;
            line-height: 1.65;
        }

        .thankyou .online-okay {
            padding: 14px 14px 14px 43px;
            font-size: 14px;
        }

        .thankyou p[style*="text-align: center"] {
            margin-top: 26px;
            font-size: 17px;
        }
}

/*-----------------spinner-------------------*/

.sk-circle {
    width: 40px;
    height: 40px;
    position: relative;
}

    .sk-circle .sk-child {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

        .sk-circle .sk-child:before {
            content: '';
            display: block;
            margin: 0 auto;
            width: 15%;
            height: 15%;
            background-color: #333;
            border-radius: 100%;
            animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
        }

    .sk-circle .sk-circle2 {
        transform: rotate(30deg);
    }

    .sk-circle .sk-circle3 {
        transform: rotate(60deg);
    }

    .sk-circle .sk-circle4 {
        transform: rotate(90deg);
    }

    .sk-circle .sk-circle5 {
        transform: rotate(120deg);
    }

    .sk-circle .sk-circle6 {
        transform: rotate(150deg);
    }

    .sk-circle .sk-circle7 {
        transform: rotate(180deg);
    }

    .sk-circle .sk-circle8 {
        transform: rotate(210deg);
    }

    .sk-circle .sk-circle9 {
        transform: rotate(240deg);
    }

    .sk-circle .sk-circle10 {
        transform: rotate(270deg);
    }

    .sk-circle .sk-circle11 {
        transform: rotate(300deg);
    }

    .sk-circle .sk-circle12 {
        transform: rotate(330deg);
    }

    .sk-circle .sk-circle2:before {
        animation-delay: -1.1s;
    }

    .sk-circle .sk-circle3:before {
        animation-delay: -1.0s;
    }

    .sk-circle .sk-circle4:before {
        animation-delay: -0.9s;
    }

    .sk-circle .sk-circle5:before {
        animation-delay: -0.8s;
    }

    .sk-circle .sk-circle6:before {
        animation-delay: -0.7s;
    }

    .sk-circle .sk-circle7:before {
        animation-delay: -0.6s;
    }

    .sk-circle .sk-circle8:before {
        animation-delay: -0.5s;
    }

    .sk-circle .sk-circle9:before {
        animation-delay: -0.4s;
    }

    .sk-circle .sk-circle10:before {
        animation-delay: -0.3s;
    }

    .sk-circle .sk-circle11:before {
        animation-delay: -0.2s;
    }

    .sk-circle .sk-circle12:before {
        animation-delay: -0.1s;
    }

@keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

#spinner {
    display: none;
    margin: 34px auto;
}