/* STEM Product Grid Styles - Uses Product Card Styling */

.stem-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

/* Grid container adjustments for smaller product cards */
.stem-product-grid .stem-product-card {
    max-width: none;
    margin: 0;
}

/* Adjust image height for grid layout */
.stem-product-grid .stem-product-image {
    height: 220px;
}

/* Reduce padding for grid items */
.stem-product-grid .stem-product-content {
    padding: 20px 16px;
}

/* Smaller title for grid */
.stem-product-grid .stem-product-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* Smaller price for grid */
.stem-product-grid .stem-product-price {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

/* Grid Layout Responsive Styles */
@media (max-width: 1200px) {
    .stem-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .stem-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stem-product-grid .stem-product-image {
        height: 200px;
    }
    
    .stem-product-grid .stem-product-content {
        padding: 16px 14px;
    }
}

@media (max-width: 768px) {
    .stem-product-grid {
        gap: 14px;
    }
    
    .stem-product-grid .stem-product-image {
        height: 180px;
    }
    
    .stem-product-grid .stem-product-title {
        font-size: 1rem;
    }
    
    .stem-product-grid .stem-product-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .stem-product-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
    
    .stem-product-grid .stem-product-image {
        height: 200px;
    }
    
    .stem-product-grid .stem-product-content {
        padding: 14px 12px;
    }
    
    .stem-product-grid .stem-product-title {
        font-size: 0.95rem;
    }
}

/* Grid animation using product card animations */
.stem-product-grid .stem-product-card:nth-child(1) { animation-delay: 0.1s; }
.stem-product-grid .stem-product-card:nth-child(2) { animation-delay: 0.2s; }
.stem-product-grid .stem-product-card:nth-child(3) { animation-delay: 0.3s; }
.stem-product-grid .stem-product-card:nth-child(4) { animation-delay: 0.4s; }
.stem-product-grid .stem-product-card:nth-child(5) { animation-delay: 0.5s; }
.stem-product-grid .stem-product-card:nth-child(6) { animation-delay: 0.6s; }
.stem-product-grid .stem-product-card:nth-child(7) { animation-delay: 0.7s; }
.stem-product-grid .stem-product-card:nth-child(8) { animation-delay: 0.8s; }