/* =========================================================
   JOY DECOR – ODKAZ NA KOLEKCIU V POPISE PRODUKTU
   ========================================================= */

.jd-collection-box {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 32px;
    padding: 20px 22px;

    background: #f8f4f6;
    border: 1px solid #eadde4;
    border-radius: 14px;
}

.jd-collection-box__icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #bf458a;
    color: #fff;

    font-size: 26px;
    line-height: 1;
}

.jd-collection-box__content {
    flex: 1;
}

.jd-collection-box__title {
    margin-bottom: 3px;

    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.jd-collection-box__text {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

.jd-collection-box__link {
    color: #bf458a;
    font-weight: 700;
    text-decoration: none;
}

.jd-collection-box__link:hover {
    color: #a63675;
    text-decoration: underline;
}

.jd-collection-box__button {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 17px;

    background: #bf458a;
    color: #fff !important;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;

    transition: 0.2s ease;
}

.jd-collection-box__button:hover {
    background: #a83a79;
    color: #fff !important;
}


/* MOBIL */
@media (max-width: 767px) {

    .jd-collection-box {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 12px;

        margin-top: 25px;
        padding: 17px;
    }

    .jd-collection-box__icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 23px;
    }

    .jd-collection-box__content {
        flex: 1;
        min-width: calc(100% - 55px);
    }

    .jd-collection-box__button {
        width: 100%;
        margin-top: 3px;
    }
}