/**
 * Retail Core: Frontend Overrides & Block Styles
 */

/* ============================================================================
   GUTENBERG EDITOR PREVIEW STYLES
   ============================================================================ */
.retail-editor-preview {
    border: 1px solid #4c1d95;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #4c1d95;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: sans-serif;
}

.retail-editor-icon {
    font-size: 20px;
}

.retail-editor-title {
    display: block; 
    color: #4c1d95;
    font-weight: 700;
}

.retail-editor-subtitle {
    font-size: 13px; 
    color: #50575e;
}

/* ============================================================================
   GLOBAL MOBILE PERFORMANCE OVERRIDE
   ============================================================================ */
@media (max-width: 768px) {
    /* 
     * Target all frosted glass theme components across the network.
     * Removes the heavy backdrop-filter blur on small screens to 
     * prevent extreme battery drain and scroll lag on older mobile GPUs.
     */
    #page, 
    .layer-3-card, 
    .faa-universal-card, 
    .faa-single-product-purchase-card,
    .card-inner-frost {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(245, 245, 245, 0.95) !important;
    }
}