/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

/* Product Card */
.product-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Product Image */
.product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #222;
}

/* Icon */
.product-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #00aaff;
}

/* Text */
.product-card h2 {
    margin-bottom: 10px;
    color: #fff;
}

.product-card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.product-card ul {
    padding-left: 18px;
    color: #ddd;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Optional datasheet button */
.datasheet-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #00aaff;
    color: #00aaff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease;
}

.datasheet-btn:hover {
    background: #00aaff;
    color: #000;
}
