.store-locator-page {
    background: var(--color-page-bg);
    color: var(--color-dark);
    font-family: var(--font-primary);
}

.store-locator-page section {
    min-height: 100vh;
    background: var(--color-page-bg);
}

.store-locator-page .inner {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.store-locator-page .page {
    width: 100%;
    max-width: none;
    padding: 0;
}

.store-locator-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0 auto 20px;
    padding-top: 2px;
    color: var(--color-muted);
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    line-height: 1.25;
}

.store-locator-breadcrumb a,
.store-locator-breadcrumb strong {
    color: inherit;
    font: inherit;
    text-decoration: none;
}

.store-locator-breadcrumb strong {
    color: var(--color-dark);
    font-weight: var(--font-weight-bold);
}

.store-locator-breadcrumb span {
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.page-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.store-locator-content .page-header {
    margin: 0;
    color: var(--color-primary-blue);
    font-size: 34px;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    text-transform: none;
}

.btn-google-maps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #1ea6f8 0%, #0d82d6 100%);
    color: var(--color-white) !important;
    padding: 10px 24px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: var(--font-weight-bold);
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(28, 166, 248, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-google-maps:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 166, 248, 0.45);
    background: linear-gradient(180deg, #2cb0ff 0%, #108ee6 100%);
}

.btn-google-maps:active {
    transform: translateY(0);
}

.btn-google-maps .maps-icon {
    width: 18px;
    height: 18px;
}

.store-map {
    position: relative;
    width: 100%;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #a7dbe3;
}

.store-map img {
    display: block;
    width: 100%;
    aspect-ratio: 1360 / 504;
    object-fit: cover;
    border-radius: 18px;
}

.store-pin {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 5px 12px rgba(51, 113, 139, 0.22);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.store-pin:hover, .store-pin.active {
    background: var(--color-white);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(51, 113, 139, 0.35);
    z-index: 10;
}

/* Tooltip styling */
.store-pin-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(28, 165, 247, 0.15);
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(61, 148, 199, 0.2);
    z-index: 100;
    width: max-content;
    max-width: 200px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-align: center;
}

.store-pin:hover .store-pin-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.store-pin-tooltip h4 {
    margin: 0;
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    line-height: 1.3;
}

.store-pin-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
}

.store-pin::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid var(--color-primary-blue);
    box-shadow: inset 0 0 0 0.5px var(--color-primary-blue);
    border-radius: 50% 50% 50% 25%;
    transform: rotate(-45deg);
}

.store-pin::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 16px;
    width: 8px;
    height: 8px;
    border: 1px solid var(--color-primary-blue);
    box-shadow: inset 0 0 0 0.5px var(--color-primary-blue);
    border-radius: 50%;
}

.pin-1 {
    top: 58%;
    left: 34%;
}

.pin-2 {
    top: 61%;
    left: 45%;
}

.pin-3 {
    top: 71%;
    left: 54%;
}

.pin-4 {
    top: 50%;
    left: 64%;
}

.pin-5 {
    top: 36%;
    left: 65%;
}

.pin-6 {
    top: 22%;
    left: 58%;
}   

.pin-7 {
    top: 18%;
    left: 70%;
}

.pin-8 {
    top: 28%;
    left: 66%;
}

.pin-9 {
    top: 42%;
    left: 78%;
}

.pin-10 {
    top: 49%;
    left: 73%;
}

.pin-11 {
    top: 46.5%;
    left: 82.7%;
}

.pin-12 {
    top: 35%;
    left: 61%;
}

.pin-13 {
    top: 58%;
    left: 51%;
}

.pin-14 {
    top: 68%;
    left: 44%;
}

.pin-15 {
    top: 32%;
    left: 65%;
}

.pin-16 {
    top: 15%;
    left: 88%;
}

.pin-17 {
    top: 40%;
    left: 12%;
}

.pin-18 {
    top: 80%;
    left: 85%;
}

.pin-19 {
    top: 22%;
    left: 52%;
}

.pin-20 {
    top: 82%;
    left: 76%;
}

.store-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
}

.store-card {
    display: block;
    min-height: 96px;
    padding: 20px 20px 18px;
    border: 1px solid rgba(28, 165, 247, 0.08);
    border-radius: 16px;
    background: var(--color-white);
    box-shadow: 0 8px 18px rgba(61, 148, 199, 0.11);
    color: var(--color-dark);
    text-decoration: none;
}

.store-card h3 {
    margin: 0 0 10px;
    color: var(--color-dark);
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    line-height: 1.25;
}

.store-card p {
    margin: 0;
    color: #b3b3b3;
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 1.35;
}

a.store-card:hover,
a.store-card:focus {
    color: var(--color-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(61, 148, 199, 0.16);
}

@media only screen and (max-width: 991px) {

    .store-list {
        gap: 18px;
    }

    .store-card h3 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 767px) {

    .store-locator-breadcrumb {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .store-locator-content .page-header {
        font-size: 28px;
    }

    .store-map {
        border-radius: 14px;
    }

    .store-pin {
        width: 24px;
        height: 24px;
    }

    .store-pin::before {
        inset: 6px;
        border-width: 1.5px;
    }

    .store-pin::after {
        top: 9px;
        left: 9px;
        width: 6px;
        height: 6px;
        border-width: 1.5px;
    }

    .store-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .store-card {
        min-height: 84px;
        padding: 16px;
        border-radius: 14px;
    }

    .store-card h3 {
        font-size: 20px;
    }

    .store-card p {
        font-size: 14px;
    }
}
