/* Hlavni blok */
.p-to-cart-block {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 20px;
    align-items: center;
}

/* Cena vlevo */
.p-to-cart-block .p-final-price-wrapper {
    flex: 1 1 auto;
    width: auto;
    margin-bottom: 0;
}

/* Mnozstvi vpravo */
.p-to-cart-block .add-to-cart {
    margin-left: auto;
    flex: 0 0 auto;
}

/* Wrapper pro 3 tlacitka */
.mz-extra-buttons {
    display: flex;
    gap: 16px;
    width: 100%;
    flex-wrap: nowrap;
    align-items: stretch;
}

/* Vsechna tlacitka ve stejne vysce */
.mz-extra-buttons .mz-custom-btn,
.mz-extra-buttons .add-to-cart-button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 58px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0 20px;
    text-decoration: none;
    box-sizing: border-box;
    border: 0;
    transition: 0.2s ease;
    white-space: nowrap;
}

/* Na splatky */
.mz-btn-splatky {
    background: #25a63a;
    color: #fff;
}

.mz-btn-splatky:hover {
    background: #1f8f31;
    color: #fff;
    text-decoration: none;
}

/* Kde vyzkousim */
.mz-btn-vyzkousim {
    background: #e8b628;
    color: #fff;
}

.mz-btn-vyzkousim:hover {
    background: #d2a114;
    color: #fff;
    text-decoration: none;
}

/* Do kosiku */
.mz-extra-buttons .add-to-cart-button {
    min-height: 58px;
    border-radius: 999px;
}

/* Obsah tlacitek */
.mz-btn-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
}

.mz-btn-text {
    white-space: nowrap;
}

/* Ikona */
.mz-btn-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex: 0 0 20px;
}

.mz-btn-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Tablet */
@media (max-width: 1024px) {
    .mz-extra-buttons .mz-custom-btn,
    .mz-extra-buttons .add-to-cart-button {
        font-size: 14px;
        padding: 0 16px;
    }
}

/* Mobil */
@media (max-width: 767px) {
    .p-to-cart-block {
        row-gap: 16px;
    }

    .p-to-cart-block .p-final-price-wrapper,
    .p-to-cart-block .add-to-cart {
        width: 100%;
        margin-left: 0;
    }

    .mz-extra-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .mz-extra-buttons .mz-custom-btn,
    .mz-extra-buttons .add-to-cart-button {
        width: 100%;
        min-height: 52px;
        font-size: 15px;
    }
}