/* ================= RETAILERS ================= */

.retailers-wrapper {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.retailers-header {
    text-align: center;
    margin-bottom: 44px;
}

.retailers-header h1 {
    font-size: 38px;
    color: #E88CA7;
    margin-bottom: 8px;
    font-family: 'Sour Gummy', sans-serif;
}

.retailers-header p {
    color: #999;
    font-size: 15px;
}

.retailer-card {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    margin-bottom: 24px;
    border: 1px solid rgba(0,0,0,0.03);
}

.retailer-map {
    width: 220px;
    flex-shrink: 0;
    border: none;
}

.retailer-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.retailer-body h2 {
    font-size: 20px;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.retailer-address {
    font-size: 14px;
    color: #999;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.retailer-hours {
    font-size: 13px;
    color: #B9C8A2;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.retailer-description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.retailer-map-link {
    display: inline-block;
    background: #B9C8A2;
    color: #fff;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s ease, transform 0.2s ease;
}

.retailer-map-link:hover {
    background: #a3b88c;
    transform: translateY(-2px);
}

.no-retailers {
    text-align: center;
    color: #999;
    padding: 80px 20px;
    font-size: 15px;
}

@media (max-width: 600px) {
    .retailer-card {
        flex-direction: column;
    }

    .retailer-map {
        width: 100%;
        height: 180px;
    }
}