.product-table-container {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

.product-table-container:hover {
    box-shadow: var(--shadow-md);
}

.table-header {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: var(--space-xl);
    text-align: center;
}

.table-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.table-description {
    font-size: 14px;
    margin: var(--space-sm) 0 0 0;
    opacity: 0.9;
}

.product-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.product-table th {
    background: var(--bg-section);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    padding: var(--space-md);
    text-align: center;
    border: 1px solid var(--border-light);
}

.product-table td {
    padding: var(--space-md);
    text-align: left;
    border: 1px solid var(--border-light);
    font-size: 13px;
    vertical-align: middle;
}

.product-table tbody tr:nth-child(odd) {
    background: var(--bg-white);
}

.product-table tbody tr:nth-child(even) {
    background: var(--bg-section);
}

.product-table tbody tr:hover {
    background: var(--bg-hover);
}

.product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
}

.product-image:hover {
    transform: scale(1.1);
}

.model-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.config-text {
    text-align: left;
    line-height: 1.4;
}

.config-text br {
    margin-bottom: var(--space-xs);
}

.section-title p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0 auto;
}

.download-section {
    background: var(--bg-section);
    padding: var(--space-2xl);
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.download-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.download-btn {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: var(--transition-normal);
    font-size: 14px;
}

.download-btn:hover {
    background: var(--primary-hover);
    color: var(--text-white);
    transform: translateY(-1px);
}

.info-section {
    background: var(--bg-section);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
}

.info-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .product-table {
        font-size: 12px;
    }

    .product-table th,
    .product-table td {
        padding: var(--space-sm);
    }

    .product-image {
        width: 60px;
        height: 60px;
    }

    .table-title {
        font-size: 18px;
    }

    .config-text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .product-table-container {
        overflow-x: auto;
    }

    .product-table {
        min-width: 600px;
    }
}