/* ═══════════════════════════════════════════════
   STOCKIST — Side-by-side store + map
═══════════════════════════════════════════════ */

.stockist-content {
    display: flex;
    flex-direction: column;
    gap: max(48px, calc(3.3vw * var(--scale)));
}

/* ── Each store row: info | map ── */
.stockist-row {
    display: flex;
    gap: max(32px, calc(2.2vw * var(--scale)));
    align-items: stretch;
    padding-bottom: max(48px, calc(3.3vw * var(--scale)));
    border-bottom: 1px solid var(--text-color);
}

.stockist-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ── Left: store info ── */
.stockist-info {
    flex: 1;
    min-width: 0;
}

.stockist-info h3 {
    font-family: var(--font1);
    font-size: max(16px, calc(1.11vw * var(--scale)));
    font-weight: 400;
    letter-spacing: 0.03em;
    margin: 0 0 max(16px, calc(1.11vw * var(--scale))) 0;
}

.stockist-info p {
    font-family: var(--font2);
    font-size: max(12px, calc(0.83vw * var(--scale)));
    font-weight: 300;
    line-height: 2;
    color: var(--text-color);
    margin: 0;
}

.stockist-info strong {
    display: inline-block;
    width: max(70px, calc(4.9vw * var(--scale)));
    font-weight: 400;
    letter-spacing: 0.05em;
}

.stockist-info a {
    color: var(--text-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(0,0,0,0.2);
    transition: text-decoration-color 0.3s ease;
}

.stockist-info a:hover {
    text-decoration-color: var(--text-color);
}

/* ── Right: map ── */
.stockist-map {
    flex: 1;
    min-width: 0;
    min-height: max(240px, calc(16.7vw * var(--scale)));
    background-color: #eee;
}

.stockist-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── Mobile: stack vertically ── */
@media (max-width: 767px) {
    .stockist-row {
        flex-direction: column;
    }

    .stockist-map {
        min-height: 240px;
    }
}
