/* ============================================
   TRIAL TIMER BANNER - Mobile-First Design
   Optimized for iOS iPhone & Android
   ============================================ */

.trial-timer-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999998;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDownBanner 0.4s ease-out;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 3px solid #4d5ff8;
    /* Safe area for notched phones */
    padding-top: env(safe-area-inset-top, 0);
}

.trial-timer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px 14px;
    gap: 12px;
    max-width: 100%;
}

/* Centered Timer Display */
.trial-timer-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.trial-timer-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4d5ff8 0%, #6b7cff 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(77, 95, 248, 0.4);
    flex-shrink: 0;
    animation: pulseGlow 2s ease-in-out infinite;
}

.trial-timer-icon {
    font-size: 26px;
    color: #ffffff;
}

.trial-timer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.trial-timer-label {
    font-size: 10px;
    font-weight: 700;
    color: #4d5ff8;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(77, 95, 248, 0.15);
    padding: 2px 10px;
    border-radius: 10px;
}

.trial-timer-countdown {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(77, 95, 248, 0.3);
}

.trial-timer-sublabel {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subscribe Button */
.trial-timer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 280px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    text-transform: none;
    letter-spacing: 0.3px;
    /* Touch-friendly minimum size */
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.trial-timer-cta .material-icons {
    font-size: 20px;
}

.trial-timer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.trial-timer-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Animations */
@keyframes slideDownBanner {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(77, 95, 248, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(77, 95, 248, 0.6);
    }
}

/* ============================================
   TABLET BREAKPOINT (768px+)
   ============================================ */
@media (min-width: 768px) {
    .trial-timer-content {
        flex-direction: row;
        justify-content: center;
        padding: 14px 24px;
        gap: 24px;
    }

    .trial-timer-center {
        width: auto;
    }

    .trial-timer-info {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .trial-timer-label {
        font-size: 11px;
    }

    .trial-timer-countdown {
        font-size: 24px;
    }

    .trial-timer-sublabel {
        display: none;
    }

    .trial-timer-cta {
        width: auto;
        max-width: none;
        padding: 12px 28px;
    }
}

/* ============================================
   DESKTOP BREAKPOINT (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .trial-timer-content {
        padding: 12px 32px;
        gap: 32px;
    }

    .trial-timer-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .trial-timer-icon {
        font-size: 24px;
    }

    .trial-timer-countdown {
        font-size: 22px;
    }

    .trial-timer-cta {
        padding: 10px 24px;
        min-height: 44px;
    }
}

/* ============================================
   SMALL PHONE BREAKPOINT (< 375px)
   ============================================ */
@media (max-width: 374px) {
    .trial-timer-content {
        padding: 10px 12px 12px;
        gap: 10px;
    }

    .trial-timer-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .trial-timer-icon {
        font-size: 22px;
    }

    .trial-timer-countdown {
        font-size: 24px;
    }

    .trial-timer-label {
        font-size: 9px;
        padding: 2px 8px;
    }

    .trial-timer-cta {
        padding: 12px 20px;
        font-size: 14px;
    }

    .trial-cta-text {
        display: inline;
    }
}

/* ============================================
   LANDSCAPE MODE OPTIMIZATION
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .trial-timer-content {
        flex-direction: row;
        padding: 8px 16px;
        gap: 16px;
    }

    .trial-timer-center {
        width: auto;
    }

    .trial-timer-info {
        flex-direction: row;
        gap: 8px;
    }

    .trial-timer-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .trial-timer-icon {
        font-size: 20px;
    }

    .trial-timer-countdown {
        font-size: 20px;
    }

    .trial-timer-sublabel {
        display: none;
    }

    .trial-timer-cta {
        padding: 8px 20px;
        min-height: 40px;
    }
}

/* ============================================
   REDUCED MOTION PREFERENCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .trial-timer-banner {
        animation: none;
    }

    .trial-timer-icon-wrapper {
        animation: none;
    }

    .trial-timer-cta:hover {
        transform: none;
    }
}

/* ============================================
   CONTENT ADJUSTMENT FOR BANNER
   (Add margin-top when banner is active)
   ============================================ */
.trial-banner-active .tabs-wrapper {
    margin-top: 140px !important;
    transition: margin-top 0.3s ease;
}

@media (min-width: 768px) {
    .trial-banner-active .tabs-wrapper {
        margin-top: 70px !important;
    }
}

/* ============================================
   EDITOR CONTROLS PANEL
   ============================================ */
.editor-controls-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 220px;
}

.trial-banner-active .editor-controls-panel {
    top: 160px;
}

@media (min-width: 768px) {
    .trial-banner-active .editor-controls-panel {
        top: 90px;
    }
}

.editor-controls-title {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 12px;
}

.editor-controls-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.editor-control-btn {
    width: 100%;
    padding: 10px;
    font-weight: 500;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.editor-control-icon {
    width: 18px;
    height: 18px;
}

/* ============================================
   TRIAL EXPIRED OVERLAY - MOBILE OPTIMIZED
   Fixed position, starts from top for better visibility
   ============================================ */
.trial-expired-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.97) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 16px;
    padding-top: max(20px, env(safe-area-inset-top, 20px));
    overflow-y: auto;
    animation: fadeInOverlay 0.4s ease-out;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   TRIAL EXPIRED MODAL - REDESIGNED FOR MOBILE
   Positioned at top, compact and beautiful
   ============================================ */
.trial-modal {
    max-width: 500px;
    width: 100%;
    padding: 28px 24px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    animation: slideUpModal 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Premium gradient accent at top */
.trial-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 50%, #2563eb 100%);
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.trial-modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.trial-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    box-shadow: 
        0 10px 40px rgba(79, 70, 229, 0.4),
        0 0 0 8px rgba(79, 70, 229, 0.1);
    flex: 0 0 auto;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 10px 40px rgba(79, 70, 229, 0.4),
            0 0 0 8px rgba(79, 70, 229, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 15px 50px rgba(79, 70, 229, 0.5),
            0 0 0 12px rgba(79, 70, 229, 0.15);
    }
}

.trial-badge .material-icons {
    font-size: 36px;
    color: #ffffff;
}

.trial-title {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #0f172a;
    line-height: 1.2;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trial-subtitle {
    margin: 8px 0 0 0;
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
    font-weight: 500;
    max-width: 380px;
}

.trial-subtitle strong {
    color: #4f46e5;
    font-weight: 700;
}

/* Highlights - Horizontal scroll on mobile */
.trial-highlights {
    display: flex;
    gap: 12px;
    margin: 20px -24px;
    padding: 0 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.trial-highlights::-webkit-scrollbar {
    display: none;
}

.trial-highlight {
    flex: 0 0 auto;
    width: 140px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    padding: 16px 14px;
    text-align: center;
    scroll-snap-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trial-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.1);
}

.trial-highlight-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.trial-highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.trial-highlight-icon .material-icons {
    font-size: 22px;
    color: #ffffff;
}

.trial-highlight-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.trial-highlight-desc {
    font-size: 11px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    display: none; /* Hidden on mobile for compact view */
}

/* CTA Buttons - Stacked on mobile */
.trial-cta-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.trial-btn {
    width: 100%;
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.2px;
    min-height: 54px;
    -webkit-tap-highlight-color: transparent;
}

.trial-btn .material-icons {
    font-size: 22px;
}

.trial-btn-primary {
    border: none;
    color: #ffffff;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #2563eb 100%);
    background-size: 200% 100%;
    box-shadow: 
      0 10px 30px rgba(79, 70, 229, 0.35),
        0 0 0 1px rgba(79, 70, 229, 0.1);
    animation: shimmerBtn 3s ease-in-out infinite;
}

@keyframes shimmerBtn {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.trial-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 40px rgba(79, 70, 229, 0.45),
    0 0 0 1px rgba(79, 70, 229, 0.2);
}

.trial-btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.trial-btn-secondary {
    border: 2px solid #e2e8f0;
    color: #475569;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.trial-btn-secondary:hover {
    border-color: #4f46e5;
    color: #4f46e5;
    background: #f8fafc;
    transform: translateY(-1px);
}

.trial-btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

.trial-fineprint {
    margin-top: 20px;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.trial-fineprint::before {
    content: '??';
    font-size: 14px;
}

/* ============================================
   TABLET BREAKPOINT FOR TRIAL MODAL (768px+)
   ============================================ */
@media (min-width: 768px) {
    .trial-expired-overlay {
        align-items: center;
        padding: 40px 24px;
    }

    .trial-modal {
        max-width: 580px;
        padding: 40px 48px;
    }

    .trial-modal-header {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .trial-badge {
        width: 64px;
        height: 64px;
    }

    .trial-badge .material-icons {
        font-size: 32px;
    }

    .trial-title {
        font-size: 28px;
        text-align: left;
    }

    .trial-subtitle {
        text-align: left;
        max-width: none;
    }

    .trial-highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin: 28px 0;
        padding: 0;
        overflow-x: visible;
    }

    .trial-highlight {
        width: auto;
    }

    .trial-highlight-desc {
        display: block;
    }

    .trial-cta-row {
        flex-direction: row;
        gap: 14px;
    }

    .trial-btn-primary {
        flex: 1.2;
    }

    .trial-btn-secondary {
        flex: 0.8;
    }
}

/* ============================================
   DESKTOP BREAKPOINT FOR TRIAL MODAL (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .trial-modal {
        max-width: 640px;
        padding: 48px 56px;
    }

    .trial-title {
        font-size: 32px;
    }

    .trial-subtitle {
        font-size: 16px;
    }

    .trial-highlight {
        padding: 20px 16px;
    }

    .trial-highlight-icon {
        width: 48px;
        height: 48px;
    }

    .trial-highlight-title {
        font-size: 14px;
    }

    .trial-highlight-desc {
        font-size: 12px;
    }
}

/* ============================================
   SMALL PHONE BREAKPOINT FOR MODAL (< 375px)
   ============================================ */
@media (max-width: 374px) {
    .trial-modal {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .trial-badge {
        width: 60px;
        height: 60px;
    }

    .trial-badge .material-icons {
        font-size: 30px;
    }

    .trial-title {
        font-size: 22px;
    }

    .trial-subtitle {
        font-size: 14px;
    }

    .trial-highlight {
        width: 120px;
        padding: 14px 12px;
    }

    .trial-highlight-icon {
        width: 38px;
        height: 38px;
    }

    .trial-highlight-icon .material-icons {
        font-size: 20px;
    }

    .trial-highlight-title {
        font-size: 12px;
    }

    .trial-btn {
        padding: 14px 16px;
        font-size: 15px;
        min-height: 50px;
    }

    .trial-fineprint {
        font-size: 11px;
    }
}

/* ============================================
   LANDSCAPE MODE FOR MODAL
   ============================================ */
@media (max-height: 600px) and (orientation: landscape) {
    .trial-expired-overlay {
        align-items: flex-start;
        padding: 16px;
    }

    .trial-modal {
        padding: 24px 32px;
        max-width: 90%;
    }

    .trial-modal-header {
        flex-direction: row;
        gap: 16px;
        margin-bottom: 16px;
    }

    .trial-badge {
        width: 50px;
        height: 50px;
    }

    .trial-badge .material-icons {
        font-size: 26px;
    }

    .trial-title {
        font-size: 22px;
        text-align: left;
    }

    .trial-subtitle {
        text-align: left;
        font-size: 13px;
        margin-top: 4px;
    }

    .trial-highlights {
        margin: 16px 0;
    }

    .trial-highlight {
        width: 110px;
        padding: 12px 10px;
    }

    .trial-cta-row {
        flex-direction: row;
        margin-top: 16px;
    }

    .trial-btn {
        padding: 12px 16px;
        min-height: 46px;
        font-size: 14px;
    }

    .trial-fineprint {
        margin-top: 12px;
    }
}

/* ============================================
   VISTA DESIGNER BLURRED STATE
   (Only the blur effect, not overriding sizes)
   ============================================ */
.vista-flyer-designer.blurred {
    filter: blur(8px);
    pointer-events: none;
    transform: scale(0.98);
    transition: all 0.3s ease;
}

/* ============================================
   LOADING OVERLAY STYLES
   ============================================ */
.canva-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in;
}

.canva-loading-content {
    text-align: center;
    max-width: 500px;
    padding: 40px;
}

.canva-brand-animation {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.canva-logo-svg {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.canva-circle-1 {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    animation: drawCircle 1.5s ease-out forwards, pulse 2s ease-in-out 1.5s infinite;
}

.canva-circle-2 {
    fill: none;
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 2;
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
    animation: drawCircle 1.5s ease-out 0.2s forwards, pulse 2s ease-in-out 1.7s infinite;
}

.canva-circle-3 {
    fill: none;
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 2;
    stroke-dasharray: 132;
    stroke-dashoffset: 132;
    animation: drawCircle 1.5s ease-out 0.4s forwards, pulse 2s ease-in-out 1.9s infinite;
}

.canva-cross {
    stroke: #ffffff;
    opacity: 0;
    animation: fadeInStroke 0.5s ease-out 1s forwards;
}

.canva-loading-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
    animation: slideUp 0.6s ease-out 0.3s backwards;
}

.canva-loading-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 30px 0;
    animation: slideUp 0.6s ease-out 0.5s backwards;
}

.canva-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

.canva-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    animation: slideUp 0.6s ease-out 0.7s backwards;
}

.canva-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8), #ffffff);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressSlide 2s ease-in-out infinite;
}

.canva-loading-tips {
    margin-top: 30px;
    min-height: 40px;
    animation: slideUp 0.6s ease-out 0.9s backwards;
}

.canva-tip {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

/* Loading animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); }
}

@keyframes fadeInStroke {
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

@keyframes progressSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.canva-loading-overlay.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    to { opacity: 0; pointer-events: none; }
}
