/* HRPSAC Fiyat Tabloları */

.hrpsac-table-wrapper {
    margin: 1.5em 0;
    overflow-x: auto;
}

.hrpsac-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hrpsac-price-table th,
.hrpsac-price-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.hrpsac-price-table th {
    background: #2c3e50;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.hrpsac-price-table tbody tr:hover {
    background: #f8f9fa;
}

.hrpsac-price-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.hrpsac-price-table tbody tr:nth-child(even):hover {
    background: #f0f0f0;
}

/* Fiyat hücresi */
.hrpsac-price {
    font-weight: 600;
    white-space: nowrap;
}

.hrpsac-price-value {
    color: #27ae60;
    font-size: 15px;
}

.hrpsac-price-currency {
    color: #7f8c8d;
    font-size: 12px;
    margin-left: 3px;
}

.hrpsac-price-na {
    color: #bdc3c7;
}

/* Footer */
.hrpsac-table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f5f5f5;
    font-size: 12px;
    color: #7f8c8d;
    border-top: 1px solid #e5e5e5;
    flex-wrap: wrap;
    gap: 10px;
}

.hrpsac-exchange-rate {
    font-weight: 500;
}

.hrpsac-exchange-rate small {
    font-weight: normal;
    margin-left: 5px;
}

/* Hata ve bilgi mesajları */
.hrpsac-error {
    padding: 15px;
    background: #fee;
    border-left: 4px solid #e74c3c;
    color: #c0392b;
    margin: 1em 0;
}

.hrpsac-no-products {
    padding: 15px;
    background: #fff3cd;
    border-left: 4px solid #f39c12;
    color: #856404;
    margin: 1em 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hrpsac-price-table {
        font-size: 13px;
    }

    .hrpsac-price-table th,
    .hrpsac-price-table td {
        padding: 10px 12px;
    }

    .hrpsac-table-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 600px) {
    .hrpsac-price-table,
    .hrpsac-price-table thead,
    .hrpsac-price-table tbody,
    .hrpsac-price-table th,
    .hrpsac-price-table td,
    .hrpsac-price-table tr {
        display: block;
    }

    .hrpsac-price-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .hrpsac-price-table tr {
        margin-bottom: 10px;
        border: 1px solid #e5e5e5;
    }

    .hrpsac-price-table td {
        position: relative;
        padding-left: 50%;
        border-bottom: 1px solid #eee;
    }

    .hrpsac-price-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        width: 45%;
        padding-right: 10px;
        font-weight: 600;
        color: #7f8c8d;
        font-size: 11px;
        text-transform: uppercase;
    }

    .hrpsac-price-table td:last-child {
        border-bottom: none;
    }
}

/* Şablon varyasyonları */
.hrpsac-sac-table .hrpsac-price-value {
    color: #2980b9;
}

.hrpsac-trapez-table .hrpsac-price-value {
    color: #8e44ad;
}

.hrpsac-profil-table .hrpsac-price-value {
    color: #d35400;
}
