/**
 * Product Single Page Styles
 * 
 * Reveal animations and glass effects for product detail page
 * 
 * @package StatusInTrade
 * @since 1.0.0
 */

/* ==========================================================================
   Reveal Animation
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}