/**
 * Recently Viewed Products - Minimal CSS
 * Plugin dùng 100% CSS của Flatsome theme
 * File này chỉ chứa fade animation
 */

/* Fade in animation khi hiển thị section */
.rwp-section {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.rwp-section[style*="display: block"],
.rwp-section[style*="display: flex"] {
    opacity: 1;
}

/* 
 * ============================================
 * KHÔNG CẦN CSS KHÁC
 * ============================================
 * 
 * Plugin sử dụng 100% CSS của Flatsome theme:
 * - .related.related-products-wrapper
 * - .product-section
 * - .product-small
 * - .box-image, .box-text
 * - .price-wrapper
 * - etc.
 * 
 * Plugin chỉ lưu: ảnh, title, giá, link
 * Render HTML với classes cơ bản của Flatsome
 * KHÔNG có addon classes → KHÔNG có conflicts!
 * 
 * Nếu muốn custom, thêm vào theme CSS:
 * Appearance → Customize → Additional CSS
 */