.store-locator-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}
.store-locator-grid {
    display: grid;
    grid-template-columns: 3fr 3fr 4fr;
    gap: 30px;
    min-height: 600px;
}

.store-countries-row {
    margin-bottom: 40px;
}

.store-countries-row ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
}

.store-countries-row ul li a {
    text-decoration: none;
    color: #999;
    font-size: 11px;
    transition: color 0.3s;
}

.store-countries-row ul li.active a,
.store-countries-row ul li a:hover {
    color: #000;
}
.store-countries-row ul li.active a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.store-col {
    display: flex;
    flex-direction: column;
}

.store-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-col ul li {
    margin-bottom: 15px;
}

.store-col ul li a {
    text-decoration: none;
    color: #999;
    font-size: 11px;
    transition: color 0.3s;
}

.store-col ul li a:hover,
.store-col ul li.active > a {
    color: #000;
}
.store-col ul li.active > a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.single-store-info {
    font-size: 11px;
    line-height: 1.6;
    color: #000;
}

.store-details {
    margin-top: 100px;
    font-size: 11px;
    line-height: 1.6;
    color: #000;
}

.store-hours-row,
.store-address-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.store-contact-row {
    margin-top: 80px;
}

.store-contact-row p {
    margin: 5px 0 0 0;
}

.store-contact-row a {
    color: #000;
    text-decoration: none;
}

.store-map-link {
    display: inline-block;
    color: #000;
    margin-bottom: 5px;
}

.store-thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
}

.store-blocks {
    margin-top: 60px;
}

.store-blocks img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 60px;
}

.store-block-two-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.store-block-two-images img {
    margin-bottom: 0;
}

.store-featured-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.store-page-header {
    text-align: center;
    padding: 60px 20px 20px;
}
.store-page-header h1 {
    font-size: 12px;
    margin: 0;
}

@media (max-width: 991px) {
    .store-locator-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .store-blocks {
        margin-top: 30px;
    }
    .store-blocks img,
    .store-block-two-images {
        margin-bottom: 30px;
    }
    .store-block-two-images {
        gap: 20px;
    }
}
