/* Klenoty z oceli: banner „Náušnice pro každého“ */
.jewelry-showcase,
.jewelry-showcase * {
    box-sizing: border-box;
}

.jewelry-showcase {
    --kzo-showcase-ink: #25211f;
    --kzo-showcase-muted: #5b5350;
    --kzo-showcase-accent: #9b6558;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0;
    padding: clamp(48px, 4vw, 68px) clamp(22px, 4vw, 58px) clamp(44px, 4vw, 64px);
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--kzo-showcase-ink);
    font-family: inherit;
    isolation: isolate;
}

.jewelry-showcase::before {
    content: none;
}

.jewelry-showcase h2 {
    position: relative;
    margin: 0 0 clamp(30px, 3vw, 44px);
    color: var(--kzo-showcase-ink);
    font-size: clamp(31px, 3vw, 48px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.08;
    text-align: center;
}

.jewelry-showcase h2::before {
    content: "Vyberte si svůj styl";
    display: block;
    margin-bottom: 10px;
    color: var(--kzo-showcase-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Původní tvar zůstává: pět stejných sloupců, obrázek a široké oblé tlačítko. */
.jewelry-showcase .earring-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(18px, 2.8vw, 46px);
    align-items: start;
}

.jewelry-showcase .earring-item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
}

.jewelry-showcase .earring-item img {
    display: block;
    width: 100%;
    max-width: 190px;
    height: auto;
    aspect-ratio: 1.4 / 1;
    margin: 0 auto 15px;
    border-radius: 20px;
    object-fit: contain;
    filter: drop-shadow(0 10px 13px rgba(64, 43, 37, 0.11));
    transition: transform 180ms ease;
}

.jewelry-showcase .obal {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: stretch;
}

.jewelry-showcase .obal p {
    margin: 0 0 13px;
    color: var(--kzo-showcase-ink);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
}

.jewelry-showcase .obal a,
.jewelry-showcase .obal a:hover,
.jewelry-showcase .obal a:focus {
    width: 100%;
    margin-top: auto;
    padding: 12px 20px !important;
    border: 1px solid var(--kzo-showcase-accent);
    border-radius: 999px !important;
    background: var(--kzo-showcase-accent) !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.035em;
    line-height: 1.45;
    text-decoration: none !important;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease !important;
}

.jewelry-showcase .earring-item:hover img {
    transform: translateY(-4px);
}

.jewelry-showcase .obal a:hover,
.jewelry-showcase .obal a:focus-visible {
    border-color: #774b42;
    background: #774b42 !important;
    transform: translateY(-1px);
}

.jewelry-showcase .obal a:focus-visible {
    outline: 3px solid rgba(155, 101, 88, 0.42);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .jewelry-showcase {
        margin-top: 12px;
        padding: 41px 18px 40px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.82);
    }

    .jewelry-showcase h2 {
        margin-bottom: 28px;
        font-size: clamp(28px, 8vw, 37px);
    }

    .jewelry-showcase h2::before {
        margin-bottom: 8px;
        font-size: 11px;
    }

    .jewelry-showcase .earring-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .jewelry-showcase .earring-item:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 9px);
        margin: 0 auto;
    }

    .jewelry-showcase .earring-item img {
        margin-bottom: 10px;
    }

    .jewelry-showcase .obal p {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .jewelry-showcase .obal a,
    .jewelry-showcase .obal a:hover,
    .jewelry-showcase .obal a:focus {
        padding: 10px 14px !important;
        font-size: 13px;
    }
}

@media (max-width: 370px) {
    .jewelry-showcase {
        padding-right: 14px;
        padding-left: 14px;
    }

    .jewelry-showcase .earring-grid {
        column-gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .jewelry-showcase .earring-item img,
    .jewelry-showcase .obal a {
        transition: none !important;
    }
}
