/* ============================================
   BLC Store Map — Dramatic Split Layout
   ============================================ */

.blc-storemap {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.blc-storemap-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

/* Map side */
.blc-storemap-map {
    position: relative;
    min-height: 520px;
}

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

.blc-storemap-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.blc-storemap-placeholder .material-symbols-outlined {
    font-size: 72px;
    margin-bottom: 12px;
}

.blc-storemap-placeholder p {
    font-size: 13px;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Info side — dark panel */
.blc-storemap-info {
    background: #0a0a0a;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.blc-storemap-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #cd0516;
}

.blc-storemap-info-inner {
    padding: 60px 50px;
    width: 100%;
    animation: blcMapSlideIn 0.7s ease both;
}

/* Header */
.blc-storemap-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #cd0516;
    margin-bottom: 12px;
    font-family: "Roboto", Arial, sans-serif;
}

.blc-storemap-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0 0 40px;
    line-height: 1;
    position: relative;
    padding-bottom: 16px;
}

.blc-storemap-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #cd0516;
}

/* Contact items */
.blc-storemap-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.blc-storemap-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    opacity: 0;
    animation: blcMapItemIn 0.5s ease forwards;
}

.blc-storemap-item:nth-child(1) { animation-delay: 0.2s; }
.blc-storemap-item:nth-child(2) { animation-delay: 0.35s; }
.blc-storemap-item:nth-child(3) { animation-delay: 0.5s; }
.blc-storemap-item:nth-child(4) { animation-delay: 0.65s; }

.blc-storemap-icon {
    font-size: 26px;
    color: #cd0516;
    flex-shrink: 0;
    margin-top: 1px;
    transition: transform 0.3s ease;
}

.blc-storemap-item:hover .blc-storemap-icon {
    transform: scale(1.15);
}

.blc-storemap-item-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 6px;
}

.blc-storemap-item-value {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.blc-storemap-item-value a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(205, 5, 22, 0.4);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.blc-storemap-item-value a:hover {
    color: #cd0516;
    border-bottom-color: #cd0516;
}

/* Animations */
@keyframes blcMapSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blcMapItemIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .blc-storemap-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .blc-storemap-map {
        min-height: 350px;
        order: 2;
    }
    .blc-storemap-info {
        order: 1;
    }
    .blc-storemap-info-inner {
        padding: 50px 30px;
    }
    .blc-storemap-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .blc-storemap-map {
        min-height: 280px;
    }
    .blc-storemap-info-inner {
        padding: 40px 20px;
    }
    .blc-storemap-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .blc-storemap-items {
        gap: 22px;
    }
}
