/* Related Products Custom Styling */
.supremefoam-related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.supremefoam-related-product-item {
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.supremefoam-related-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.supremefoam-related-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.supremefoam-related-product-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Product Image */
.supremefoam-related-product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f8f8;
}

.supremefoam-related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.supremefoam-related-product-item:hover .supremefoam-related-product-image img {
    transform: scale(1.05);
}

.supremefoam-no-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    color: #999;
    font-size: 14px;
}

/* Category */
.supremefoam-related-product-category {
    padding: 8px 15px 0;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Product Title */
.supremefoam-related-product-title {
    padding: 5px 15px 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Related Products Section Header */
.related.products h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .supremefoam-related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .supremefoam-related-product-image {
        height: 150px;
    }
    
    .supremefoam-related-product-title {
        font-size: 14px;
        min-height: 35px;
    }
    
    .supremefoam-related-product-category {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .supremefoam-related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .supremefoam-related-product-image {
        height: 120px;
    }
    
    .supremefoam-related-product-title {
        font-size: 13px;
        padding: 5px 10px 8px;
        min-height: 30px;
    }
    
    .supremefoam-related-product-category {
        padding: 6px 10px 0;
        font-size: 10px;
    }
} 