/* Wrapper jen pro krátký popis produktu */
.zp-short-desc .zp-two-boxes {
    --border: #e7eaf0;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    align-items: stretch;
}

@media (min-width:640px) {
    .zp-short-desc .zp-two-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

.zp-short-desc .zp-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    transition: transform .2s ease, box-shadow .2s ease;
}

@media (hover:hover) {
    .zp-short-desc .zp-card:hover {
        transform: translateY(2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
    }
}

.zp-short-desc .zp-card__img-wrap {
    display: grid;
    place-items: center;
    margin-bottom: 6px;
}

.zp-short-desc .zp-card__img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.zp-short-desc .zp-card__title {
    margin: 0;
    font-weight: 700;
    font-size: 1.55rem;
    color: var(--navy);
}

/* CTA tlačítko – jen uvnitř krátkého popisu */
.zp-short-desc .zp-cta {
    display: block;
    margin: 24px auto 0;
    padding: 16px;
    background-color: var(--navy);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    width: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.zp-short-desc .zp-cta:hover {
    border: 2px solid var(--lime);
    color: #fff;
}