/* =========================================================
   SWEETENERGY – KOMPAKTNÍ ODKAZ NA GALERII U PRODUKTU V2
   ========================================================= */

.se-product-gallery-link {
    display:flex;
    align-items:center;
    gap:16px;
    width:100%;
    margin:14px 0;
    padding:14px 16px;
    box-sizing:border-box;

    background:#F7F1E7;
    border-radius:16px;
    box-shadow:0 3px 14px rgba(80,16,50,.06);
    border-left:4px solid #FFD2D6;

    font-family:Montserrat,Arial,sans-serif;
}

.se-product-gallery-link__content {
    flex:1 1 auto;
    min-width:0;
}

.se-product-gallery-link__eyebrow {
    display:inline-block;
    margin:0 0 5px;
    padding:4px 8px;

    background:#FFD2D6;
    border-radius:999px;

    color:#501032;
    font-size:9.5px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:.045em;
    text-transform:uppercase;
}

.se-product-gallery-link__title {
    margin:0 0 4px;
    color:#501032;

    font-family:"Wix Madefor Display",Montserrat,Arial,sans-serif;
    font-size:19px;
    font-weight:800;
    line-height:1.12;
}

.se-product-gallery-link__text {
    margin:0 0 9px;
    color:#786B72;
    font-size:12.5px;
    font-weight:500;
    line-height:1.35;
}

.se-product-gallery-link__cta {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;

    min-height:34px;
    padding:8px 14px;

    background:#501032;
    border-radius:999px;

    color:#fff !important;
    font-size:11.5px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:.02em;
    text-decoration:none !important;

    transition:opacity .16s ease, transform .16s ease;
}

.se-product-gallery-link__cta:hover {
    color:#fff !important;
    text-decoration:none !important;
    opacity:.92;
    transform:translateY(-1px);
}

.se-product-gallery-link__photos {
    display:flex;
    align-items:center;
    gap:7px;
    flex:0 0 auto;
}

.se-product-gallery-link__photo {
    position:relative;
    display:block;
    width:76px;
    height:76px;
    overflow:hidden;

    border-radius:12px;
    background:#fff;
    text-decoration:none !important;

    box-shadow:0 2px 8px rgba(80,16,50,.08);
}

.se-product-gallery-link__photo img {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .18s ease;
}

.se-product-gallery-link__photo:hover img {
    transform:scale(1.035);
}

.se-product-gallery-link__size {
    position:absolute;
    left:5px;
    bottom:5px;

    max-width:calc(100% - 10px);
    padding:3px 6px;

    border-radius:999px;
    background:rgba(247,241,231,.96);
    color:#501032;

    font-size:8.5px;
    font-weight:800;
    line-height:1.1;
    white-space:nowrap;
}

@media (max-width:620px) {
    .se-product-gallery-link {
        gap:11px;
        padding:12px 12px;
        border-radius:14px;
    }

    .se-product-gallery-link__title {
        font-size:17px;
    }

    .se-product-gallery-link__text {
        font-size:11.5px;
        margin-bottom:8px;
    }

    .se-product-gallery-link__cta {
        min-height:32px;
        padding:7px 11px;
        font-size:10.5px;
    }

    .se-product-gallery-link__photos {
        gap:5px;
    }

    .se-product-gallery-link__photo {
        width:62px;
        height:62px;
        border-radius:10px;
    }
}

@media (max-width:430px) {
    .se-product-gallery-link {
        align-items:flex-start;
    }

    .se-product-gallery-link__text {
        display:none;
    }

    .se-product-gallery-link__photo {
        width:56px;
        height:56px;
    }

    .se-product-gallery-link__eyebrow {
        font-size:8.5px;
    }

    .se-product-gallery-link__title {
        font-size:16px;
    }
}
