/* IMTA Store Locator - v2.0 Annam Gourmet Style */
.imta-store-locator {
    display: flex;
    height: 100vh;
    margin: 0;
    gap: 10px;
}

/* Sidebar */
.imta-store-left {
    width: 400px;
    min-width: 400px;
    overflow-y: auto;
    padding: 15px;
    box-sizing: border-box;
}

/* Store List */
.imta-store-list {
    margin-top: 0;
}

/* Store Card */
.imta-store-card {
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 20px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}

.imta-store-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.imta-store-card.active {
    border: 2px solid var(--primary-color);
}

.imta-store-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.imta-store-info {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.imta-store-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.imta-store-info a:hover {
    text-decoration: underline;
}

/* Accordion Header - Giờ mở cửa */
.imta-hours-header {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    cursor: pointer;
    user-select: none;
}

.imta-hours-header::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.imta-hours-header.open::after {
    content: '▲';
}

/* Hours Table */
.imta-hours-table {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border-collapse: collapse;
    display: none;
}

.imta-hours-table.show {
    display: table;
}

.imta-hours-table td {
    padding: 8px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    color: #fff;
}

.imta-hours-table td:first-child {
    font-weight: 500;
}

/* Map Area */
.imta-store-right {
    flex: 1;
    min-width: 0;
}

.imta-store-map {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

/* No results */
.imta-store-no-results {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

/* ========== RESPONSIVE ========== */

/* Tablet (max-width: 900px) */
@media (max-width: 900px) {
    .imta-store-locator {
        flex-direction: column;
        height: 100vh;
        gap: 15px;
    }

    .imta-store-left {
        width: 100%;
        min-width: 100%;
        flex: 1;
        padding: 10px;
        overflow-y: auto;
    }

    .imta-store-right {
        flex: 1;
        order: -1;
    }

    .imta-store-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .imta-store-name {
        font-size: 1rem;
    }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
    .imta-store-locator {
        gap: 10px;
    }

    .imta-store-left {
        padding: 8px;
    }

    .imta-store-card {
        padding: 12px;
        margin-bottom: 12px;
    }

    .imta-store-name {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .imta-store-info {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .imta-hours-header {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .imta-hours-table td {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}