.stockists-wrapper {
    width: 100%;
}

.stockists-wrapper h2 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8em;
}

/* Individual stockist box */
.stockist-wrapper {
    border: 1px solid #eee;
    padding: 10px 15px;
    margin-bottom: 15px;
    /*background: #fafafa;*/
    border-radius: 6px;
}

/* Stockist name */
.stockist-name p {
    margin: 0;
    font-weight: bold;
    font-size: 1.1em;
}

/* Stockist info (address, phone, website) */
.stockist-info {
    margin: 2px 0;
}

/* Website link */
.stockist-info a {
    color: #0073aa;
    text-decoration: none;
}
.stockist-info a:hover {
    text-decoration: underline;
}










/* State container */
.state-container {
    margin-bottom: 60px;
    border-top: 1px solid #ccc;
}

#Nation.state-container {
    border-top: 0px solid #ccc;
}

/* State heading */
.state-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Flex container for stockists inside a state */
.state-stockists {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start; /* LEFT align items */
}

/* Individual stockist card */
.state-stockists .stockist-wrapper {
    flex: 1 1 calc(33.333% - 20px); /* 3 per row */
    max-width: calc(33.333% - 20px);
    border: 1px solid #eee;
    padding: 15px;
    box-sizing: border-box;
}

/* Stockist info spacing */
.stockist-name p {
    margin: 0 0 5px 0;
    font-weight: bold;
}

.stockist-info {
    margin: 0px 0;
    line-height: 28px;
}

/* Mobile: single column */
@media (max-width: 768px) {
    .state-stockists .stockist-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
    }
}