/* Product Specifications Table - Frontend Styles */

.product-specifications-wrapper {
    margin: 30px 0;
}

.specifications-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

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

.product-specifications-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
}

.product-specifications-table tbody tr:last-child {
    border-bottom: 1px solid #e8e8e8;
}

.product-specifications-table th {
    text-align: left;
    padding: 18px 0;
    font-weight: 400;
    font-size: 15px;
    color: #000;
    width: auto;
    vertical-align: middle;
}

.product-specifications-table th::after {
    content: ':';
}

.product-specifications-table td {
    padding: 18px 0;
    text-align: right;
    color: #666;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .product-specifications-table th,
    .product-specifications-table td {
        padding: 14px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-specifications-table th,
    .product-specifications-table td {
        display: block;
        width: 100%;
        text-align: left;
        padding: 8px 0;
    }
    
    .product-specifications-table th {
        padding-bottom: 4px;
        font-weight: 600;
    }
    
    .product-specifications-table td {
        padding-top: 0;
        padding-bottom: 12px;
        color: #666;
    }
}
