/* Aprangos Product Siblings — single product page swatch picker
 * Visual reference: Figma node "SPALVA: GELSVAI RUDA" + two thumbs. */

.aps-siblings {
    margin: 0 0 24px;
    padding: 16px 0 0;
    border-top: 1px solid #e5e5e5;
}

.aps-siblings__label {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.aps-siblings__title {
    font-size: 14px;
    letter-spacing: 0.15em;
    color: #999;
    font-weight: 400;
    text-transform: uppercase;
}

.aps-siblings__current {
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
}

.aps-siblings__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.aps-siblings__thumb {
    display: block;
    width: 72px;
    height: 94px;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f4f4;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.aps-siblings__thumb:hover,
.aps-siblings__thumb:focus-visible {
    opacity: 0.9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.aps-siblings__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aps-siblings__thumb.is-active {
    outline: 2px solid #1a1a1a;
    outline-offset: -2px;
    cursor: default;
}

.aps-siblings__thumb.is-active:hover {
    opacity: 1;
}

/* Out-of-stock sibling — Figma "Disabled" state, opacity 0.5.
 * Still clickable: user can navigate to view the product / waitlist. */
.aps-siblings__thumb.is-disabled {
    opacity: 0.5;
}

.aps-siblings__thumb.is-disabled:hover,
.aps-siblings__thumb.is-disabled:focus-visible {
    opacity: 0.5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

