.wk-stores-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.wk-stores-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #2c2c2c;
}

.wk-stores-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.wk-stores-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    gap: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 6px 4px 12px;
}

.wk-stores-track::-webkit-scrollbar {
    display: none;
}

.wk-store-slide {
    flex: 0 0 auto;
    width: 270px;
    scroll-snap-align: start;
}

.wk-store-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    text-align: left;
    height: 100%;
    transition: box-shadow 0.2s ease;
}

.wk-store-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.wk-store-photo {
    width: 100%;
    height: 170px;
    overflow: hidden;
    background: #f5f5f5;
}

.wk-store-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wk-store-info {
    padding: 16px 16px 8px;
}

.wk-store-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #2c2c2c;
}

.wk-store-address {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
    margin: 0 0 12px;
}

.wk-store-map {
    position: relative;
    border-top: 1px solid #f0f0f0;
}

.wk-store-map iframe {
    display: block;
    pointer-events: auto;
}

.wk-store-map-link {
    display: block;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 0;
    background: #fafafa;
    color: #555;
    text-decoration: none;
    border-top: 1px solid #f0f0f0;
}

.wk-store-map-link:hover {
    background: #f0f0f0;
    color: #222;
}

.wk-store-nav {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    min-width: 40px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    z-index: 2;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.wk-store-nav:hover {
    background: #2c2c2c;
    border-color: #2c2c2c;
    color: #fff;
}

.wk-store-prev {
    margin-right: 16px;
}

.wk-store-next {
    margin-left: 16px;
}

@media (max-width: 768px) {
    .wk-store-slide {
        width: 230px;
    }
    .wk-stores-title {
        font-size: 20px;
    }
    .wk-store-nav {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }
}
