/* ── BA Extra Pairs Toggle ───────────────────────────────── */
.ba-more-wrap {}

.ba-more-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 0 24px !important;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: inherit !important;
    text-decoration: none !important;
    border-radius: 0 !important;
}

.ba-more-toggle:hover,
.ba-more-toggle:focus,
.ba-more-toggle:active {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: inherit !important;
}

/* Arrow icon — matches the ∧/∨ in your screenshot */
.ba-more-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg) translateY(-2px); /* ∨ down arrow */
    transition: transform 0.2s ease;
}

.ba-more-wrap.is-open .ba-more-icon {
    transform: rotate(135deg) translateY(-2px); /* ∧ up arrow */
}

/* Collapsed state — slides open with max-height transition */
.ba-more-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.ba-more-wrap.is-open .ba-more-body {
    max-height: 2000px; /* large enough to fit any number of pairs */
    transition: max-height 0.6s ease;
}

/* ── Grid ────────────────────────────────────────────────── */
.ba-extra-pairs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ba-pair-group {
    display: contents;
}

.ba-pair-item {
    position: relative;
    overflow: hidden;
}

.ba-pair-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.ba-pair-label {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
}

/* Tablet */
@media ( max-width: 1024px ) {
    .ba-extra-pairs {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media ( max-width: 600px ) {
    .ba-extra-pairs {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}