/**
 * CSS pour la page des magasins
 *
 * @author    Visiofactory <dev@visiofactory.com>
 * @copyright Visiofactory
 * @license   AFL-3.0
 */

/* Container principal */
.vfstores-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.vfstores-page-wrapper .page-header {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Introduction */
.vfstores-intro {
    line-height: 1.6;
}

.vfstores-intro p {
    margin-bottom: 10px;
}

/* Section Showroom */
.vfstores-showroom-section h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Visite virtuelle 360 */
.vfstores-virtual-tour {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.vfstores-iframe-360 {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 8px;
}

/* Carte et coordonnées du showroom */
.vfstores-iframe-map {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 8px 0 0 8px;
}

/* Détails du showroom */
.vfstores-showroom-details {
    background-color: #f8f9fa;
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Mobile/Tablette : carte au-dessus des coordonnées, collées */
@media (max-width: 991px) {
    .vfstores-iframe-map {
        border-radius: 8px 8px 0 0;
    }

    .vfstores-showroom-details {
        border-radius: 0 0 8px 8px;
    }
}

.vfstores-showroom-details h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.vfstores-showroom-details address {
    font-style: normal;
    line-height: 1.5;
}

.vfstores-showroom-phone {
    font-size: 16px;
}

.vfstores-showroom-phone i {
    margin-right: 8px;
    color: #666;
}

.vfstores-showroom-phone a {
    color: inherit;
    text-decoration: none;
}

.vfstores-showroom-phone a:hover {
    text-decoration: underline;
}

.vfstores-showroom-hours {
    line-height: 1.5;
}

/* Liste des magasins */
.vfstores-list-section {
    margin-top: 40px;
}

.vfstores-list-section h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

@media (max-width: 767px) {
    .vfstores-list-section {
        margin-top: 50px;
    }

    .vfstores-list-section h2 {
        padding-top: 30px;
    }
}

/* Grille des magasins */
.vfstores-grid {
    --stores-per-row: 1;
}

@media (min-width: 768px) {
    .vfstores-grid {
        --stores-per-row: 2;
    }
}

@media (min-width: 992px) {
    .vfstores-grid {
        --stores-per-row: 4;
    }
}

/* Colonnes des magasins */
.vfstores-grid > [class*="col-"] {
    border-right: 1px solid #dee2e6;
}

/* Retirer la bordure sur le dernier de chaque ligne - Mobile (1 par ligne) */
@media (max-width: 767px) {
    .vfstores-grid > [class*="col-"] {
        border-right: none;
    }
}

/* Tablette (2 par ligne) : retirer bordure sur le 2ème, 4ème, 6ème... */
@media (min-width: 768px) and (max-width: 991px) {
    .vfstores-grid > [class*="col-"]:nth-child(2n) {
        border-right: none;
    }
}

/* Desktop (4 par ligne) : retirer bordure sur le 4ème, 8ème, 12ème... */
@media (min-width: 992px) {
    .vfstores-grid > [class*="col-"]:nth-child(4n) {
        border-right: none;
    }
}

/* Cartes des magasins */
.vfstores-store-card {
    background-color: #fff;
    border: none;
    border-radius: 0;
    padding: 20px 25px !important;
    display: flex;
    flex-direction: column;
}

.vfstores-store-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.vfstores-store-card address {
    font-style: normal;
    line-height: 1.4;
    margin-bottom: 8px;
}

.vfstores-store-phone {
    font-size: 14px;
}

.vfstores-store-phone i {
    margin-right: 6px;
    color: #666;
}

.vfstores-store-phone a {
    color: inherit;
    text-decoration: none;
}

.vfstores-store-phone a:hover {
    text-decoration: underline;
}

.vfstores-store-badge {
    font-size: 13px;
    color: #666;
    margin-top: auto;
    padding-top: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .vfstores-showroom-details {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .vfstores-page-wrapper .page-header h1 {
        font-size: 24px;
    }

    .vfstores-iframe-360,
    .vfstores-iframe-map {
        height: 300px;
    }

    .vfstores-showroom-section h2,
    .vfstores-list-section h2 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .vfstores-page-wrapper {
        padding: 15px 10px;
    }

    .vfstores-iframe-360,
    .vfstores-iframe-map {
        height: 250px;
    }

    .vfstores-store-card {
        padding: 15px !important;
    }
}
