.store-location {
    --location-color: var(--venture-primary-color, #f3cc2e);
    --location-contrast: var(--venture-primary-contrast, #202020);
    padding: 34px 20px;
    background: #222326;
    color: #fff;
}

.store-location *,
.store-location *::before,
.store-location *::after { box-sizing: border-box; }

.store-location__inner {
    display: grid;
    grid-template-columns: minmax(250px, .8fr) minmax(380px, 1.2fr);
    gap: 30px;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 24px;
    background: #292a2e;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.store-location__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 18px;
    text-align: right;
}

.store-location__eyebrow {
    display: inline-flex;
    margin-bottom: 9px;
    color: var(--location-color);
    font-size: 12px;
    font-weight: 700;
}

.store-location h2 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.6;
}

.store-location p {
    max-width: 420px;
    margin: 0 0 20px;
    color: #bbbcc1;
    font-size: 13px;
    line-height: 2;
}

.store-location__button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 9px 15px;
    border-radius: 14px;
    background: var(--location-color);
    color: var(--location-contrast);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 9px 22px rgba(0, 0, 0, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.store-location__button:hover {
    color: var(--location-contrast);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}

.store-location__button:focus-visible,
.store-location__preview:focus-visible { outline: 3px solid var(--location-color); outline-offset: 3px; }
.store-location__button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.store-location__button-arrow { margin-right: 7px; font-size: 17px; }

.store-location__preview {
    position: relative;
    display: block;
    min-height: 250px;
    overflow: hidden;
    border-radius: 18px;
    background-color: #e6e2d9;
    background-image:
        linear-gradient(28deg, transparent 47%, rgba(255, 255, 255, .75) 48%, rgba(255, 255, 255, .75) 52%, transparent 53%),
        linear-gradient(118deg, transparent 44%, rgba(255, 255, 255, .52) 45%, rgba(255, 255, 255, .52) 49%, transparent 50%),
        repeating-linear-gradient(0deg, transparent 0 39px, rgba(77, 92, 98, .07) 40px 41px),
        repeating-linear-gradient(90deg, transparent 0 54px, rgba(77, 92, 98, .07) 55px 56px);
    text-decoration: none;
    isolation: isolate;
}

.store-location__preview::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 66% 45%, color-mix(in srgb, var(--location-color) 23%, transparent), transparent 31%);
}

.store-location__road { position: absolute; display: block; border-radius: 999px; background: rgba(255, 255, 255, .88); box-shadow: 0 0 0 1px rgba(87, 91, 93, .06); }
.store-location__road--one { top: 37%; left: -8%; width: 116%; height: 18px; transform: rotate(-9deg); }
.store-location__road--two { top: -20%; left: 27%; width: 16px; height: 145%; transform: rotate(18deg); }
.store-location__road--three { right: -10%; bottom: 17%; width: 64%; height: 11px; transform: rotate(28deg); }

.store-location__pin {
    position: absolute;
    top: 45%;
    left: 58%;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 5px solid rgba(255, 255, 255, .92);
    border-radius: 50%;
    background: var(--location-color);
    color: var(--location-contrast);
    box-shadow: 0 12px 24px rgba(30, 34, 39, .26);
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.store-location__preview:hover .store-location__pin { transform: translate(-50%, -55%); }
.store-location__pin svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.store-location__preview-label {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: block;
    min-width: 190px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 13px;
    background: rgba(255, 255, 255, .9);
    color: #24262a;
    box-shadow: 0 8px 22px rgba(31, 36, 40, .13);
    backdrop-filter: blur(8px);
}

.store-location__preview-label strong,
.store-location__preview-label small { display: block; }
.store-location__preview-label strong { margin-bottom: 2px; font-size: 12px; }
.store-location__preview-label small { color: #73777d; font-size: 9px; }

@media (max-width: 768px) {
    .store-location { padding: 22px 12px; }
    .store-location__inner { grid-template-columns: 1fr; gap: 10px; padding: 12px; border-radius: 20px; }
    .store-location__content { padding: 10px 8px 14px; }
    .store-location h2 { font-size: 20px; }
    .store-location p { margin-bottom: 15px; }
    .store-location__button { width: 100%; justify-content: center; }
    .store-location__preview { min-height: 210px; grid-row: 1; }
    .store-location__pin { left: 55%; }
}

@media (prefers-reduced-motion: reduce) {
    .store-location__button,
    .store-location__pin { transition: none; }
}
