/* ==================== 分店資訊 Google Map 版型 ==================== */
.locations-section { 
    background-color: #2a9fd4;
    padding: 120px 0;
}

/* Google Map + 店面資訊容器 */
.location-map-wrapper {
    display: flex;
    gap: 0;
    max-width: 1200px;
    margin: 60px auto 0;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* 左側 Google Map */
.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* 右側店面資訊 */
.location-info-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-card {
    background: transparent;
    border: none;
    padding: 0;
}

/* 移除可能的偽元素 */
.location-card::before,
.location-card::after {
    display: none;
}

/* 圖示圓圈 */
.location-icon {
    width: 60px;
    height: 60px;
    background: #3fb1e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.location-icon i {
    font-size: 1.5rem;
    color: #fff;
}

/* 店名 */
.location-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

/* 資訊列 */
.location-card p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-card p i {
    color: #3fb1e7;
    font-size: 1.1rem;
    width: 20px;
}

/* 開始導航按鈕 */
.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3fb1e7;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    width: fit-content;
}

.location-btn:hover {
    background: #2a9fd4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(63, 177, 231, 0.3);
}

.location-btn i {
    font-size: 1.1rem;
}

/* ==================== 響應式設計 ==================== */

/* 平板 */
@media (max-width: 1024px) {
    .location-map-wrapper {
        grid-template-columns: 1fr;
        height: auto;
    }

    .map-container {
        height: 400px;
        order: 1;
    }

    .location-info-container {
        order: 2;
        padding: 40px 30px;
    }
}

/* 手機 */
@media (max-width: 768px) {
    .locations-section {
        padding: 80px 0;
    }

    .location-map-wrapper {
        margin: 40px 20px 0;
        border-radius: 15px;
    }

    .map-container {
        height: 350px;
    }

    .location-info-container {
        padding: 30px 25px;
    }

    .location-card h3 {
        font-size: 1.5rem;
    }
}

/* 小手機 */
@media (max-width: 480px) {
    .map-container {
        height: 300px;
    }

    .location-info-container {
        padding: 25px 20px;
    }

    .location-card h3 {
        font-size: 1.3rem;
    }

    .location-card p {
        font-size: 0.9rem;
    }
}