/* Price List Front Styles - corporate look */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

.plm-price-list {
    max-width: 1100px;
    margin: 48px auto;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 0 14px;
    color: #24304a;
}

.plm-category {
    margin-bottom: 28px;
    border: 1px solid rgba(20,30,50,0.06);
    background: #ffffff;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(20,30,50,0.04);
    border-radius: 10px;
}

.plm-category-title {
    padding: 16px 20px;
    background: #ffffff;
    border-bottom: 1px solid rgba(20,30,50,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plm-category-title::before {
    content: '';
    width: 6px;
    height: 36px;
    background: linear-gradient(180deg,#0b5fff,#0957e6);
    border-radius: 4px;
}

.plm-category-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #0b3b78;
}

.plm-category-content {
    padding: 18px 18px 22px 18px;
}

.plm-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.plm-table thead {
    background: transparent;
}

.plm-table th {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(20,30,50,0.06);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    text-align: left;
    color: #39445e;
}

.plm-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(20,30,50,0.03);
    font-size: 15px;
    vertical-align: middle;
}

.plm-table tbody tr:nth-child(even) {
    background: #fbfcfe;
}

.plm-table tbody tr:last-child td {
    border-bottom: none;
}

.plm-table th:nth-last-child(-n+2),
.plm-table td:nth-last-child(-n+2) {
    text-align: right;
}

.plm-table td:nth-last-child(-n+2) {
    font-weight: 700;
    color: #0b3b78;
}

/* Make prices visually prominent */
.plm-table td.price-amount {
    font-size: 16px;
    font-weight: 700;
    color: #0b3b78;
}

/* Tema css'leri hizalamayı bozmasın diye 3. ve 4. sütunu özellikle sağa hizala */
.plm-table th:nth-child(3),
.plm-table th:nth-child(4),
.plm-table td:nth-child(3),
.plm-table td:nth-child(4) {
    text-align: right !important;
}

/* Hücre içindeki span/strong vb. elemanlar da sağa hizalansın */
.plm-table td:nth-child(3) *,
.plm-table td:nth-child(4) * {
    text-align: right !important;
}
