        /* Remaining embedded styles - will be extracted in next iterations */

        /* CSS extraction continues... still more styles remaining */

        .loading {
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        /* Additional CSS sections continue to be extracted... */

        .analysis-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(76, 175, 80, 0.8);
            z-index: 100;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            backdrop-filter: blur(2px);
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(255,255,255,0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 15px;
        }

        .analysis-text {
            color: white;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 8px;
        }

        .subtitle {
            color: rgba(255,255,255,0.9);
            font-size: 12px;
            text-align: center;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        /* Token Icon Styling */
        .token-icon {
            width: 16px;
            height: 16px;
            display: inline-block;
            vertical-align: middle;
            margin-left: 4px;
        }

        .token-icon-small {
            width: 12px;
            height: 12px;
            display: inline-block;
            vertical-align: middle;
            margin-left: 2px;
        }

        .token-display {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .btn {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 12px;
        }

        /* New styling - Premium inside card, Pro Only next to tokens */
        .preset-premium-text {
            font-size: 9px;
            font-weight: 600;
            color: #FF9800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
            opacity: 0.9;
        }

        .preset-card.selected .preset-premium-text {
            color: rgba(255, 255, 255, 0.9);
        }

        .preset-card.recommended .preset-premium-text {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Premium card background styling */
        .preset-card.premium {
            background: linear-gradient(135deg, #fff8f0 0%, #fff4e6 100%);
            border-color: #FFB74D;
        }

        .preset-card.premium.selected {
            background: #667eea;
            color: white;
        }

        .preset-card.premium.recommended {
            background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
            color: white;
        }

        /* Premium label styling */
        .preset-premium-label {
            background: linear-gradient(135deg, #FFB74D 0%, #FF9800 100%);
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
            display: inline-block;
            box-shadow: 0 1px 3px rgba(255, 152, 0, 0.3);
        }

        .preset-card.selected .preset-premium-label {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .preset-card.recommended .preset-premium-label {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .pro-only-token {
            background: linear-gradient(135deg, #AB47BC 0%, #8E24AA 100%);
            color: white;
            padding: 2px 6px;
            border-radius: 8px;
            font-size: 9px;
            font-weight: 600;
            margin-left: 4px;
            display: inline-block;
        }

        /* Disabled button styling */
        .btn-primary:disabled {
            background: #e0e0e0 !important;
            color: #9e9e9e !important;
            cursor: not-allowed !important;
            transform: none !important;
            box-shadow: none !important;
            opacity: 0.6;
        }

        .btn-primary:disabled:hover {
            transform: none !important;
            box-shadow: none !important;
            background: #e0e0e0 !important;
        }

        /* 🔄 GLOBAL BUTTON ROUNDED EDGES FIX - Apply to ALL buttons */
        button {
            border-radius: 8px !important;
        }

        /* Override for specific button types that need more rounding */
        .icon-button, .btn {
            border-radius: 12px !important;
        }

        /* Keep existing specific rounded buttons */
        .google-login-btn {
            border-radius: 12px !important;
        }

        /* Highlight detected product name */
        .product-detected {
            background: rgba(76, 175, 80, 0.05);
            color: #2e7d32;
            border: 2px solid #4CAF50 !important;
            font-weight: 600;
