/* Prázdný košík - box místo "Zkuste vyhledávání" */
.empty-cart-custom-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    min-height: 220px;
    padding: 32px 28px;
    border: 2px solid #1c1d4f;
    border-radius: 18px;
    background: #ffffff;
    box-sizing: border-box;
    max-width: 420px;
    width: 100%;
}

.empty-cart-custom-icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.empty-cart-custom-icon svg {
    width: 82px;
    height: 82px;
    display: block;
    fill: #1c1d4f;
}

.empty-cart-custom-text {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    color: #1c1d4f;
    max-width: 100%;
    text-align: left;
}

/* Text nad kontaktem */
.empty-cart-help-text {
    display: block;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    color: #1c1d4f;
    margin: 0 0 22px 0;
    max-width: 320px;
}

@media (max-width: 991px) {
    .empty-cart-custom-box {
        min-height: auto;
        gap: 14px;
        padding: 24px 22px;
        max-width: 100%;
    }

    .empty-cart-custom-icon svg {
        width: 64px;
        height: 64px;
    }

    .empty-cart-custom-text {
        font-size: 22px;
    }

    .empty-cart-help-text {
        font-size: 21px;
        margin-bottom: 18px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .empty-cart-custom-box {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .empty-cart-custom-text {
        font-size: 20px;
        line-height: 1.35;
    }

    .empty-cart-help-text {
        font-size: 19px;
        line-height: 1.4;
        margin-bottom: 16px;
    }
}