:root {
    --vm-blue: #1A73E8;
    --vm-bg: #0B0D17;
    --vm-card-bg: rgba(255, 255, 255, 0.05);
    --vm-text: #FFFFFF;
    --vm-text-muted: rgba(255, 255, 255, 0.7);
    --vm-radius: 12px;
    --vm-glow: 0 0 20px rgba(26, 115, 232, 0.2);
}

.vm-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--vm-text);
    background-color: var(--vm-bg);
    padding: 2rem;
    border-radius: var(--vm-radius);
    max-width: 600px;
    margin: 1rem auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--vm-glow);
}

.vm-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--vm-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 4px solid var(--vm-blue);
    padding-left: 1rem;
}

/* Opening Hours Styles */
.vm-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vm-hour-item:last-child {
    border-bottom: none;
}

.vm-hour-label {
    font-weight: 600;
}

.vm-hour-value {
    color: var(--vm-text-muted);
}

.vm-hour-highlight .vm-hour-value {
    color: #ff4d4d;
    font-weight: 700;
}

/* Price List Styles */
.vm-price-section {
    margin-bottom: 2rem;
}

.vm-section-title {
    font-size: 1.1rem;
    color: var(--vm-blue);
    margin-bottom: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.vm-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--vm-card-bg);
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.vm-price-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
}

.vm-price-name {
    font-weight: 500;
}

.vm-price-tag {
    font-weight: 700;
    color: var(--vm-blue);
}

.vm-price-unit {
    font-size: 0.8rem;
    color: var(--vm-text-muted);
    margin-left: 2px;
}

/* Responsive */
@media (max-width: 480px) {
    .vm-container {
        padding: 1rem;
    }
}
