/* css/pages/price-list.css */

/* HERO */
.price-hero {
    padding: 110px 0 80px;
    background: var(--accent-beige);
    color: #2c2c2c;
    text-align: center;
}

.price-hero h1 {
    font-size: clamp(2.4rem, 6vw, 3.5rem);
    margin-bottom: 12px;
}

.price-hero p {
    font-size: 1.15rem;
    color: #555;
}

/* PRICE LIST */
.price-list {
    padding: 70px 0;
    background: white;
}

.price-category {
    margin-bottom: 60px;
}

.price-category h2 {
    color: #2c2c2c;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-green);
    font-size: 1.85rem;
}

.price-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 12px;
}

/* PRICE ROWS - Slightly bigger than heading */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px 26px;           /* Slightly bigger padding */
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    font-size: 1.1rem;
    color: #2c2c2c;
    min-height: 68px;             /* Nice balanced height */
    transition: all 0.3s ease;
}

.price-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.price-row span:first-child {
    color: #2c2c2c;
    font-weight: 500;
}

.price-row .price {
    font-weight: 600;
    color: var(--primary-green);
}

/* Mobile */
@media (max-width: 768px) {
    .price-hero { padding: 90px 0 60px; }
    
    .price-items {
        grid-template-columns: 1fr;
    }
    
    .price-row {
        padding: 17px 22px;
        min-height: 64px;
    }
}