.stores-section {
    background: 
    url('https://test.icrystal.asia/assets/images/stores/background_stores.png') no-repeat center top,
    linear-gradient(180deg, #17346c 50%, var(--color-dark) 100%);
    background-size: contain, auto;
    padding: 80px 5%;
    width: 100%;
    text-align: center;
}
.stores-section .container { font-family: var(--font-family); max-width: 1280px; margin: 0 auto; }
.stores-section .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 80px; }
.stores-section .hero-left h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.2; color: var(--color-white); }
.stores-section .hero-left .script { font-style: italic; color: var(--color-primary); }
.stores-section .hero-right p { color: var(--color-light-gray); margin-bottom: 24px; text-align: left; }
.stores-section .btn-gold { float: left; background: var(--color-primary); color: var(--color-dark); padding: 12px 28px; border-radius: 60px; font-weight: 600; cursor: pointer; transition: transform 0.2s; display: inline-block; text-decoration: none; }
.stores-section .btn-gold:hover { transform: translateY(-2px); color: var(--color-white); }
/* Swiper customisation */
.swiper { width: 100%; padding: 50px 0 70px; }
.swiper-slide { width: 280px; height: 380px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 30px rgba(0,0,0,0.3); background: var(--color-white); transition: transform 0.3s; }
.swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.swiper-slide .store-info { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, #000000, rgba(0,0,0,0.6), transparent); padding: 20px; color: white; text-align: left; }
.swiper-slide .store-info h3 { font-size: 1.2rem; margin-bottom: 4px; color: var(--color-primary); text-shadow: 0 1px 3px rgba(0,0,0,0.6); font-weight: 600; }
.swiper-slide .store-info p { font-size: 0.8rem; opacity: 0.9; }
.swiper-button-next, .swiper-button-prev { color: var(--color-primary); background: rgba(0,0,0,0.5); width: 48px; height: 48px; border-radius: 50%; transition: all 0.2s; }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 20px; font-weight: bold; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--color-primary); color: var(--color-dark); }
.swiper-pagination-bullet { background: var(--color-light-gray); opacity: 0.6; }
.swiper-pagination-bullet-active { background: var(--color-primary); opacity: 1; }
.stores-section .bottom-header { text-align: center; margin: 40px 0 30px; }
.stores-section .bottom-header h2 { font-size: 2rem; font-weight: 700; color: var(--color-light-gray); text-transform: uppercase; }
.stores-section .white-panel { background: var(--color-white); border-radius: 32px; padding: 24px; margin-bottom: 40px; }
.stores-section .map-container { border-radius: 20px; overflow: hidden; min-height: 450px; }
.stores-section .map-container iframe { width: 100%; height: 450px; border: 0; }
.stores-section .info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 20px; }
.stores-section .info-card { background: var(--color-white); border-radius: 24px; padding: 24px 20px; display: flex; align-items: center; gap: 18px; transition: transform 0.2s; }
.stores-section .info-card:hover { transform: translateY(-4px); }
.stores-section .icon-circle { width: 56px; height: 56px; background: var(--color-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.stores-section .icon-circle svg { width: 28px; height: 28px; stroke: var(--color-primary); stroke-width: 1.5; fill: none; }
.stores-section .card-info { flex: 1; text-align: left; }
.stores-section .card-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #6c7a89; margin-bottom: 4px; }
.stores-section .card-value { font-size: 0.95rem; font-weight: 600; color: var(--color-dark); word-break: break-word; }
@media (max-width: 900px) {
    .stores-section .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .stores-section .info-cards { grid-template-columns: 1fr; }
    .swiper-slide { width: 220px; height: 300px; }
    .stores-section .hero-right p { text-align: center; }
    .stores-section .btn-gold { float: none; }
}
@media (max-width: 600px) {
    .swiper-slide { width: 180px; height: 260px; }
}