.stores-area {
    position: relative;
    background: #fff;
}

.stores-slides {
    position: relative;
}

.store-slide {
    padding: 0 15px 10px;
}

.store-card {
    display: grid;
    grid-template-columns: minmax(260px, 1.05fr) minmax(260px, .95fr);
    grid-template-rows: auto auto;
    gap: 24px;
    align-items: stretch;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.store-card:hover,
.store-card:focus {
    box-shadow: 0 16px 42px rgba(0, 0, 0, .12);
    transform: translateY(-2px);
}

.store-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 24px 0 0 24px;
}

.store-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.store-content {
    padding: 24px 24px 0 0;
}

.store-content span {
    display: block;
    color: #f10909;
    font-family: Cookie, cursive;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 6px;
}

.store-content h3 {
    color: #111;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 12px;
}

.store-content p {
    margin: 0 0 12px;
    color: #555;
}

.store-content a {
    color: #111;
    font-size: 22px;
    font-weight: 700;
}

.store-content a:hover {
    color: #f10909;
}

.store-content .store-hours {
    margin-top: 10px;
    color: #777;
    font-size: 15px;
    line-height: 1.4;
}

.store-card iframe {
    grid-column: 1 / -1;
    width: 100%;
    height: 310px;
    border: 0;
    display: block;
    pointer-events: none;
}

.stores-slides.owl-theme .owl-dots {
    margin-top: 25px;
}

.stores-slides.owl-theme .owl-nav [class*=owl-] {
    background: #111;
    color: #fff;
    width: 44px;
    height: 44px;
    line-height: 50px;
    font-size: 32px;
    padding: 0;
    margin: 0 6px;
    border-radius: 50%;
}

.stores-slides.owl-theme .owl-nav [class*=owl-]:hover {
    background: #f10909;
}

.store-popup {
    position: relative;
    width: min(1360px, calc(100% - 30px));
    margin: 40px auto;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.store-popup-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px;
}

.store-popup-info {
    grid-column: 1 / -1;
}

.store-popup-info span {
    display: block;
    color: #f10909;
    font-family: Cookie, cursive;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 6px;
}

.store-popup-info h3 {
    color: #111;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px;
}

.store-popup-info p {
    margin: 0 0 10px;
}

.store-popup-info a {
    color: #111;
    font-size: 24px;
    font-weight: 700;
}

.store-popup-info a:hover {
    color: #f10909;
}

.store-popup-info .store-popup-hours {
    margin-top: 12px;
    margin-bottom: 0;
    color: #555;
    font-size: 17px;
}

.store-popup-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.store-popup-gallery img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.store-popup iframe {
    width: min(680px, 100%);
    height: 210px;
    border: 0;
    justify-self: center;
    pointer-events: auto;
}

@media (max-width: 991px) {
    .store-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .store-gallery {
        padding: 18px 18px 0;
    }

    .store-gallery img {
        height: 220px;
    }

    .store-content {
        padding: 22px 18px;
    }

    .store-popup-content {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .store-popup-gallery img {
        height: 260px;
    }
}

@media (max-width: 575px) {
    .store-slide {
        padding-left: 0;
        padding-right: 0;
    }

    .store-gallery {
        grid-template-columns: 1fr;
    }

    .store-gallery img {
        height: 210px;
    }

    .store-content h3 {
        font-size: 24px;
    }

    .store-card iframe {
        height: 260px;
    }

    .store-popup {
        width: calc(100% - 18px);
        margin: 25px auto;
    }

    .store-popup-content {
        padding: 16px;
    }

    .store-popup-info h3 {
        font-size: 26px;
    }

    .store-popup-gallery {
        grid-template-columns: 1fr;
    }

    .store-popup-gallery img {
        height: 240px;
    }

    .store-popup iframe {
        width: 100%;
        height: 190px;
    }
}
.store-content a[href^="tel:"],
.store-popup-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.store-content a[href^="tel:"]::before,
.store-popup-phone::before {
    content: "\260E";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: #fff;
    background: #25d366;
    border-radius: 50%;
    font: 700 13px/1 Arial, sans-serif;
}

.store-popup-phone::before {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 14px;
}
