.price-list-page {
    padding: 60px 0 120px;
    background-color: #fff;
}

.price-list-header {
    margin-bottom: 48px;
    text-align: center;
}

.price-list-header h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 0;
    line-height: 1.3;
}

.price-list-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.price-list-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.price-list-table thead {
    background-color: #f8f8f8;
}

.price-list-table thead th {
    padding: 20px 24px;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 700;
    color: #141414;
    border-bottom: 2px solid #e0e0e0;
}

.price-list-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.price-list-table tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

.price-list-table tbody tr:hover {
    background-color: #e8e8e8;
}

.price-list-table tbody tr:last-child {
    border-bottom: none;
}

.price-list-table tbody td {
    padding: 18px 24px;
    font-size: 1.5rem;
    color: #141414;
}

.price-list-table tbody td:first-child {
    font-weight: 600;
}

.price-list-note {
    margin-top: 24px;
}

.price-list-note p {
    font-size: 1.4rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

.price-list-note strong {
    color: #141414;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .price-list-page {
        padding: 40px 0 80px;
    }

    .price-list-header h1 {
        font-size: 2.4rem;
    }

    .price-list-table-wrapper {
        padding: 0;
    }

    /* Hide table headers on mobile */
    .price-list-table thead {
        display: none;
    }

    /* Convert table to card layout */
    .price-list-table,
    .price-list-table tbody,
    .price-list-table tr {
        display: block;
    }

    .price-list-table {
        box-shadow: none;
        border-radius: 0;
    }

    /* Each row becomes a card */
    .price-list-table tbody tr {
        background-color: #fff;
        padding: 20px;
        transition: all 0.2s ease;
        border-bottom: none;
    }

    /* Keep even rows with gray background on mobile */
    .price-list-table tbody tr:nth-child(even) {
        background-color: #f8f8f8;
    }

    .price-list-table tbody tr:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .price-list-table tbody tr:last-child {
        margin-bottom: 0;
    }

    /* Stack cells vertically */
    .price-list-table tbody td {
        display: block;
        padding: 0;
        border: none;
        text-align: left;
    }

    /* Model name (first cell) - acts as card header */
    .price-list-table tbody td:first-child {
        font-size: 1.8rem;
        font-weight: 700;
        color: #141414;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    /* Price cells */
    .price-list-table tbody td:not(:first-child) {
        font-size: 1.4rem;
        margin-bottom: 12px;
        padding-left: 0;
    }

    .price-list-table tbody td:last-child {
        margin-bottom: 0;
    }

    /* Add labels using data attributes */
    .price-list-table tbody td:not(:first-child)::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: #666;
        font-size: 1.2rem;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Price values */
    .price-list-table tbody td:not(:first-child) {
        font-weight: 600;
        color: #141414;
    }

    .price-list-note p {
        font-size: 1.2rem;
        padding: 0 16px;
    }
}