/* --- Price List Styles --- */
.prices-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(197, 160, 101, 0.3);
}

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

.price-name {
    font-weight: 500;
    color: var(--text-main);
    font-size: 1.1rem;
}

.price-value {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

/* Category Header Styles */
.price-category-header {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    /* Dark color for contrast */
    background: #f4f4f4;
    padding: 8px 15px;
    border-radius: 5px;
    border-right: 4px solid var(--accent);
    /* Arabic direction accent */
    margin-top: 10px;
    margin-bottom: 5px;
}

html[dir="lbs"] .price-category-header {
    border-right: none;
    border-left: 4px solid var(--accent);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}