/* ==========================================================================
   SECTION SE RENDRE EN BOUTIQUE — EPO GOLD Pompe
   Mobile-First Responsive — Design System Bleu Nuit (pompe-*)
   ========================================================================== */

/* Section Container */
.epo-store-section {
    padding: 50px 15px;
    background: linear-gradient(180deg, var(--pompe-fond-dark) 0%, #081220 50%, var(--pompe-fond-dark) 100%);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.epo-store-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Grid — Mobile: Stacked */
.epo-store-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* ==========================================================================
   LEFT COLUMN: MAP
   ========================================================================== */

.epo-store-map-col {
    width: 100%;
}

.epo-map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(74, 155, 168, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    background: var(--pompe-fond-card);
}

.epo-map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Map Link Button */
.epo-map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 20px;
    font-family: var(--pompe-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--pompe-fond-dark);
    background: var(--pompe-gold-gradient);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
}

.epo-map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 149, 63, 0.4);
    color: var(--pompe-fond-dark);
    text-decoration: none;
}

.epo-map-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.epo-map-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   RIGHT COLUMN: CONTENT
   ========================================================================== */

.epo-store-content-col {
    width: 100%;
}

/* Logo EPO GOLD */
.epo-store-logo {
    margin-bottom: 16px;
}

.epo-store-logo .epo-logo-text {
    font-family: var(--pompe-font-display);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--pompe-text-primary);
    display: inline-block;
    line-height: 1;
}

.epo-store-logo .epo-logo-text .gold {
    background: var(--pompe-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Label */
.epo-store-label {
    display: block;
    font-family: var(--pompe-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--pompe-cyan-accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.epo-store-label::after {
    content: '—';
    margin-left: 10px;
    color: var(--pompe-cyan-accent);
}

/* Title */
.epo-store-title {
    font-family: var(--pompe-font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--pompe-text-primary);
    line-height: 1.3;
    margin: 0 0 28px 0;
}

/* ==========================================================================
   ADDRESS BLOCK
   ========================================================================== */

.epo-store-address-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 155, 168, 0.25);
    border-radius: 16px;
    margin-bottom: 28px;
}

.epo-address-main {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.epo-address-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pompe-gold-gradient);
    border-radius: 50%;
    color: var(--pompe-fond-dark);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.35);
}

.epo-address-icon svg {
    width: 22px;
    height: 22px;
}

.epo-store-street,
.epo-store-city {
    display: block;
    font-family: var(--pompe-font-display);
    font-size: 20px;
    color: var(--pompe-text-primary);
    line-height: 1.4;
}

.epo-store-street {
    font-weight: 600;
}

.epo-store-city {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
}

/* Rating */
.epo-store-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(74, 155, 168, 0.2);
}

.epo-rating-stars {
    font-size: 22px;
    color: var(--pompe-gold-light);
    letter-spacing: 3px;
}

.epo-rating-text {
    font-family: var(--pompe-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--pompe-text-primary);
}

/* ==========================================================================
   INFO BLOCKS GRID
   ========================================================================== */

.epo-store-info-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.epo-store-info-block {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(74, 155, 168, 0.25);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.epo-store-info-block:hover {
    border-color: rgba(74, 155, 168, 0.45);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Info Block Title */
.epo-info-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--pompe-font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--pompe-text-primary);
    margin: 0 0 16px 0;
}

.epo-info-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pompe-gold-gradient);
    border-radius: 50%;
    color: var(--pompe-fond-dark);
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(191, 149, 63, 0.3);
}

.epo-info-icon svg {
    width: 18px;
    height: 18px;
}

.epo-info-content {
    font-family: var(--pompe-font-body);
}

/* Opening Hours */
.epo-hours-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 10px 0;
}

.epo-hours-line:last-child {
    margin-bottom: 0;
}

.epo-hours-line span {
    font-weight: 400;
}

.epo-hours-line strong {
    font-weight: 600;
    color: var(--pompe-text-primary);
}

.epo-hours-line strong.closed {
    color: #FF6B6B;
    font-weight: 700;
}

/* Metro Access */
.epo-metro-line-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.epo-metro-line-item:last-child {
    margin-bottom: 0;
}

/* Metro Badges — Official RATP Colors */
.epo-metro-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    font-family: var(--pompe-font-body);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.epo-metro-6 {
    background: #76C882;
    color: #000;
}

.epo-metro-9 {
    background: #B6BD00;
    color: #000;
}

/* Bus Line */
.epo-bus-line-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.epo-bus-icon {
    display: inline-flex;
    color: var(--pompe-gold-light);
}

/* ==========================================================================
   CTA BUTTONS
   ========================================================================== */

.epo-store-cta-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.epo-store-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    font-family: var(--pompe-font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 54px;
}

/* Phone CTA — Gold */
.epo-cta-phone {
    background: var(--pompe-gold-gradient);
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 18px rgba(191, 149, 63, 0.3);
}

.epo-cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(191, 149, 63, 0.45);
    color: #FFFFFF;
    text-decoration: none;
}

/* WhatsApp CTA — Green */
.epo-cta-whatsapp {
    background: linear-gradient(135deg, #2EE574 0%, #25D366 50%, #1FA855 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.25);
}

.epo-cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    color: #fff;
    text-decoration: none;
}

.epo-cta-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.epo-cta-icon svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   IMPORTANT NOTE
   ========================================================================== */

.epo-store-note {
    padding: 18px 22px;
    background: rgba(74, 155, 168, 0.1);
    border-left: 4px solid var(--pompe-cyan-accent);
    border-radius: 8px;
}

.epo-store-note p {
    font-family: var(--pompe-font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.epo-store-note p strong {
    color: var(--pompe-cyan-accent);
    font-weight: 600;
    margin-right: 6px;
}

/* ==========================================================================
   TABLET (768px+)
   ========================================================================== */
@media (min-width: 768px) {
    .epo-store-section {
        padding: 60px 30px;
    }

    .epo-store-container {
        max-width: 720px;
        padding: 0;
    }

    .epo-store-grid {
        gap: 40px;
    }

    .epo-store-logo .epo-logo-text {
        font-size: 2.8rem;
    }

    .epo-store-title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .epo-store-label {
        font-size: 14px;
    }

    /* Address block: side by side */
    .epo-store-address-block {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 28px;
    }

    .epo-store-rating {
        padding-top: 0;
        border-top: none;
        border-left: 2px solid rgba(74, 155, 168, 0.2);
        padding-left: 24px;
    }

    /* Info blocks: side by side */
    .epo-store-info-grid {
        flex-direction: row;
        gap: 20px;
    }

    .epo-store-info-block {
        flex: 1;
        padding: 28px;
    }

    .epo-info-title {
        font-size: 20px;
    }

    .epo-hours-line,
    .epo-metro-line-item {
        font-size: 16px;
    }

    /* CTA buttons: side by side */
    .epo-store-cta-row {
        flex-direction: row;
        gap: 18px;
    }

    .epo-store-cta {
        flex: 1;
        font-size: 17px;
        padding: 18px 30px;
    }

    /* Map wider aspect ratio */
    .epo-map-wrapper {
        padding-bottom: 60%;
    }

    .epo-map-link {
        font-size: 15px;
        padding: 14px 24px;
        margin-top: 18px;
    }

    .epo-store-note p {
        font-size: 16px;
    }

    .epo-store-street,
    .epo-store-city {
        font-size: 22px;
    }
}

/* ==========================================================================
   DESKTOP (1024px+) — 2 Column Layout
   ========================================================================== */
@media (min-width: 1024px) {
    .epo-store-section {
        padding: 80px 40px;
    }

    .epo-store-container {
        max-width: 1100px;
        padding: 0 20px;
    }

    /* 2-column grid: Map | Content */
    .epo-store-grid {
        flex-direction: row;
        align-items: stretch;
        gap: 60px;
    }

    .epo-store-map-col {
        width: 48%;
        display: flex;
        flex-direction: column;
    }

    .epo-map-wrapper {
        flex: 1;
        padding-bottom: 0;
        min-height: 500px;
    }

    .epo-store-content-col {
        flex: 1;
    }

    .epo-store-logo .epo-logo-text {
        font-size: 3rem;
    }

    .epo-store-title {
        font-size: 40px;
    }

    .epo-store-label {
        font-size: 14px;
        letter-spacing: 5px;
    }

    .epo-info-title {
        font-size: 22px;
    }

    .epo-hours-line,
    .epo-metro-line-item {
        font-size: 17px;
    }

    .epo-metro-badge {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .epo-store-street,
    .epo-store-city {
        font-size: 22px;
    }
}

/* ==========================================================================
   LARGE DESKTOP (1280px+)
   ========================================================================== */
@media (min-width: 1280px) {
    .epo-store-section {
        padding: 100px 60px;
    }

    .epo-store-container {
        max-width: 1300px;
    }

    .epo-store-grid {
        gap: 80px;
    }

    .epo-store-logo .epo-logo-text {
        font-size: 3.2rem;
    }

    .epo-store-title {
        font-size: 44px;
    }

    .epo-store-label {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .epo-store-info-block {
        padding: 32px;
    }

    .epo-store-address-block {
        padding: 32px 36px;
    }

    .epo-store-street,
    .epo-store-city {
        font-size: 24px;
    }

    .epo-rating-stars {
        font-size: 24px;
    }

    .epo-rating-text {
        font-size: 16px;
    }

    .epo-info-title {
        font-size: 24px;
    }

    .epo-hours-line,
    .epo-metro-line-item {
        font-size: 18px;
    }

    .epo-metro-badge {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .epo-store-cta {
        padding: 20px 36px;
        font-size: 18px;
        min-height: 60px;
    }

    .epo-cta-icon {
        width: 24px;
        height: 24px;
    }

    .epo-map-wrapper {
        min-height: 550px;
    }

    .epo-store-note {
        padding: 22px 28px;
    }

    .epo-store-note p {
        font-size: 17px;
    }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .epo-map-link,
    .epo-store-cta,
    .epo-store-info-block {
        transition: none;
    }

    .epo-map-link:hover,
    .epo-cta-phone:hover,
    .epo-cta-whatsapp:hover {
        transform: none;
    }
}
