        html, body {
            overflow-x: clip;
        }
        
        body.modal-open {
            padding-right: 0 !important;
            overflow: clip !important;
        }
        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--light-bg);
            color: var(--dark-color);
            margin: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            overflow-x: clip;
        }

        .main-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            overflow-x: clip;
        }
    
        /* TOAST STYLES (Global Loja) */
        #toast-container {
            position: fixed;
            top: 24px;
            right: 24px;
            left: 24px;
            margin-left: auto;
            z-index: 100000;
            display: flex;
            flex-direction: column;
            gap: 12px;
            pointer-events: none;
            max-width: 380px;
        }
        
        .premium-toast {
            pointer-events: auto;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px) saturate(180%);
            -webkit-backdrop-filter: blur(12px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 14px 16px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            transform: translateX(120%);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .premium-toast.show {
            transform: translateX(0);
            opacity: 1;
        }
        
        .premium-toast.hide {
            transform: translateX(120%) scale(0.9);
            opacity: 0;
        }
        
        .premium-toast-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .premium-toast-content {
            flex-grow: 1;
            padding-right: 14px;
        }
        
        .premium-toast-title {
            font-weight: 700;
            font-size: 0.9rem;
            color: #1e293b;
            margin-bottom: 2px;
        }
        
        .premium-toast-message {
            font-size: 0.8rem;
            color: #64748b;
            line-height: 1.4;
        }
        
        .premium-toast-close {
            position: absolute;
            top: 10px;
            right: 12px;
            background: transparent;
            border: none;
            color: #94a3b8;
            cursor: pointer;
            font-size: 1.2rem;
            line-height: 1;
        }
        
        .premium-toast-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 100%;
        }
        
        .toast-success { border-left: 5px solid #10b981; }
        .toast-success .premium-toast-icon { background: rgba(16, 185, 129, 0.15); color: #10b981; border-radius: 50%; padding: 6px; }
        .toast-success .premium-toast-progress { background: #10b981; animation: toast-bar 4s linear forwards; }
        
        .toast-danger { border-left: 5px solid #ef4444; }
        .toast-danger .premium-toast-icon { background: rgba(239, 68, 68, 0.15); color: #ef4444; border-radius: 50%; padding: 6px; }
        .toast-danger .premium-toast-progress { background: #ef4444; animation: toast-bar 4s linear forwards; }
        
        .toast-warning { border-left: 5px solid #f59e0b; }
        .toast-warning .premium-toast-icon { background: rgba(245, 158, 11, 0.15); color: #f59e0b; border-radius: 50%; padding: 6px; }
        .toast-warning .premium-toast-progress { background: #f59e0b; animation: toast-bar 4s linear forwards; }

        @keyframes toast-bar {
            from { width: 100%; }
            to { width: 0%; }
        }

        /* -------------------------------------
           FOOTER (SAAS) STYLES
        --------------------------------------- */
        .saas-footer {
            padding-top: 20px;
            padding-bottom: 20px;
            background-color: #ffffff;
            box-shadow: 0 -10px 30px rgba(0,0,0,0.03);
            position: relative;
            z-index: 10;
            width: 100%;
        }
        .saas-footer-subtitle {
            letter-spacing: 1px;
            font-size: 0.7rem;
        }
        .saas-footer-brand {
            font-weight: 800;
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            letter-spacing: -0.5px;
            color: var(--primary-color) !important;
        }
        .saas-footer-logo {
            height: 45px;
            object-fit: contain;
        }
        .saas-footer-btn {
            background-color: var(--light-bg);
            border: 1px solid #dee2e6;
            color: var(--dark-color);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .saas-footer-btn:hover {
            background-color: #f1f5f9;
            color: var(--dark-color);
        }
        .saas-footer-copy {
            font-size: 0.75rem;
        }

        .cart-sticky {
            position: sticky;
            top: 20px;
        }
