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

/* ============================================================================
   TURNSTILE SECURITY WIDGET
   ============================================================================ */
.retail-turnstile-wrap {
    margin: 15px 0 20px 0;
    min-height: 65px;
}

/* ============================================================================
   TUTORIAL TABLE OF CONTENTS BLOCK
   ============================================================================ */
.retail-toc-block {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #4c1d95;
    margin-bottom: 25px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
.retail-toc-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.retail-toc-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
.retail-toc-item { 
    margin-bottom: 8px; 
}
.retail-toc-h2 { 
    font-weight: 600; 
}
.retail-toc-h2 a { 
    color: #4c1d95; 
    text-decoration: none; 
}
.retail-toc-h3 { 
    font-size: 14px; 
    font-weight: 400; 
    margin-bottom: 6px; 
}
.retail-toc-h3 a { 
    color: #555; 
    text-decoration: none; 
}
.retail-toc-sub-list { 
    list-style: none; 
    padding-left: 20px; 
    margin: 5px 0 0 0; 
}

/* ============================================================================
   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;
}
.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; /* Switch to nearly opaque solid */
    }
}