﻿body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.4;
}

.profile-card {
    max-width: 436px;
    margin: 0px auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.map-container {
    position: relative;
    height: 289px;
    background: #e8e8e8;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.profile-header {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .profile-header img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #000;
    }

    .profile-header h5 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #000;
        margin-bottom: 2px;
    }

    .profile-header small {
        color: #666;
        font-size: 13px;
        margin: 0;
    }

.section {
    padding: 20px;
    border-top: none;
}

    .section h6 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 16px;
        text-transform: uppercase;
        color: #000;
        letter-spacing: 0.5px;
    }

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f8f8;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

    .contact-phone span {
        font-size: 16px;
        font-weight: 500;
        color: #000;
    }

    .contact-phone button {
        background: #000;
        color: #fff;
        font-size: 14px;
        border: none;
        border-radius: 6px;
        padding: 8px 16px;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.2s;
    }

        .contact-phone button:hover {
            background: #333;
        }

/* Today's Hours */
.hours-today {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 8px;
}

    .hours-today span:first-child {
        font-size: 15px;
        color: #000;
        font-weight: 500;
    }

    .hours-today span:last-child {
        font-size: 14px;
        color: #666;
        text-align: right;
        line-height: 1.3;
    }

.show-more {
    color: #007AFF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

    .show-more::after {
        content: '⌄';
        transition: transform 0.3s ease;
    }

    .show-more.expanded::after {
        transform: rotate(180deg);
    }

.full-hours {
    display: none;
    margin-top: 16px;
    animation: slideDown 0.3s ease;
}

    .full-hours.show {
        display: block;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .hours-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        font-size: 15px;
        border-bottom: 1px solid #f5f5f5;
    }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .hours-list li span:first-child {
            color: #000;
            font-weight: 500;
        }

        .hours-list li span:last-child {
            color: #666;
            font-size: 14px;
            text-align: right;
            line-height: 1.3;
        }

        .hours-list li .closed {
            color: #999;
        }

.notice {
    background: #fff9f4;
    color: #b85c00;
    padding: 12px;
    font-size: 12px;
    border-radius: 8px;
    margin-top: 16px;
}
