/**
 * Premium Specs Table - Frontend Styles
 */

.pst-table {
    width: 100%;
    background: linear-gradient(145deg, #141414 0%, #0d0d0d 100%);
    border-radius: 16px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.pst-table * {
    box-sizing: border-box;
}

.pst-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pst-row:hover {
    background-color: rgba(212, 175, 55, 0.04);
}

.pst-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pst-label {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #888888;
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
}

.pst-icon {
    width: 20px;
    height: 20px;
    color: #888888;
    opacity: 0.6;
    flex-shrink: 0;
}

.pst-value {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.pst-value.pst-highlight {
    color: #d4af37;
}

.pst-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    color: #d4af37;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Price Row */
.pst-price-row {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.pst-row + .pst-price-row {
    margin-top: -1px;
}

.pst-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.pst-price-value {
    color: #d4af37;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 575px) {
    .pst-row {
        padding: 14px 16px;
    }
    
    .pst-label {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .pst-value {
        font-size: 0.85rem;
    }
    
    .pst-icon {
        width: 18px;
        height: 18px;
    }
}
