/* ==============================
   PRICE LIST — MAS v3.0.0
============================== */
.price-list {
    max-width: 800px;
    margin: 20px auto;
    padding: 0;
    list-style: none;
    font-family: Arial, sans-serif;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--mas-blue-soft);
    border: 1px solid var(--mas-blue-bg);
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,74,173,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,74,173,0.08);
}

.price-list .item-name {
    font-weight: bold;
    color: var(--mas-blue);
    font-size: 1rem;
}

.price-list .item-price {
    font-weight: bold;
    font-size: 1rem;
    color: var(--mas-orange-dark);
    background: var(--mas-orange-soft);
    padding: 4px 10px;
    border-radius: 8px;
}
