/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-thumbnail-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
}

.product-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-thumbnail {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #1a3a5f;
}

.product-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Product Page Styles */
.product-page {
    display: none;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.product-image-section {
    flex: 1;
    min-width: 300px;
}

.product-detail-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    max-height: 400px;
    object-fit: contain;
}

.product-info-section {
    flex: 1;
    min-width: 300px;
}

/* Technical Table */
.technical-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.technical-table th {
    background-color: #1a3a5f;
    color: white;
    text-align: left;
    padding: 15px;
    font-weight: 500;
}

.technical-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.technical-table tr:nth-child(even) {
    background-color: #f5f9ff;
}

.technical-table tr:hover {
    background-color: #e9f7fe;
}