/* ── Jikeko Points de Vente ── */

.jikeko-pdv-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Titre principal */
.jikeko-pdv-titre {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* Zone */
.jikeko-pdv-zone {
    margin-bottom: 40px;
}

.jikeko-pdv-zone-titre {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 3px solid #e94560;
}

/* Grille */
.jikeko-pdv-grille {
    display: grid;
    gap: 20px;
}

.jikeko-pdv-cols-1 { grid-template-columns: 1fr; }
.jikeko-pdv-cols-2 { grid-template-columns: repeat(2, 1fr); }
.jikeko-pdv-cols-3 { grid-template-columns: repeat(3, 1fr); }
.jikeko-pdv-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Carte */
.jikeko-pdv-carte {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jikeko-pdv-carte:hover {
    transform: translateY(-4px);
}

/* Nom */
.jikeko-pdv-nom {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #1a1a2e;
}

/* Adresse */
.jikeko-pdv-adresse {
    font-size: 14px;
    color: #555;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.jikeko-pdv-adresse a {
    color: inherit;
    text-decoration: none;
}

.jikeko-pdv-adresse a:hover {
    text-decoration: underline;
}

/* Telephone */
.jikeko-pdv-tel {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.jikeko-pdv-tel a {
    color: #e94560;
    text-decoration: none;
}

.jikeko-pdv-tel a:hover {
    text-decoration: underline;
}

/* Icones */
.jikeko-pdv-icone {
    font-style: normal;
    margin-right: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .jikeko-pdv-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .jikeko-pdv-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .jikeko-pdv-cols-4,
    .jikeko-pdv-cols-3,
    .jikeko-pdv-cols-2 {
        grid-template-columns: 1fr;
    }

    .jikeko-pdv-titre {
        font-size: 22px;
    }

    .jikeko-pdv-zone-titre {
        font-size: 17px;
    }
}
