 /* ========================================
           OFF-CANVAS CONTAINER
           ======================================== */
        .cbs-frontend-rider-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            display: none;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }

        .cbs-frontend-rider-canvas.active {
            display: block;
        }

        /* ========================================
           OVERLAY - ENHANCED WITH BLUR
           ======================================== */
        .cbs-frontend-canvas-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7) !important;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .cbs-frontend-rider-canvas.active .cbs-frontend-canvas-overlay {
            opacity: 1;
        }

        /* ========================================
           CANVAS PANEL - GLASSMORPHISM DESIGN
           ======================================== */
        .cbs-frontend-canvas-panel {
            position: absolute;
            top: 0;
            right: -550px;
            width: 550px;
            max-width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(45, 52, 60, 0.95) 0%,
                rgba(30, 36, 42, 0.98) 100%
            ) !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
            box-shadow: 
                -20px 0 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset !important;
            display: flex;
            flex-direction: column;
            transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .cbs-frontend-rider-canvas.active .cbs-frontend-canvas-panel {
            right: 0;
        }

        /* ========================================
           CANVAS HEADER - ENHANCED
           ======================================== */
        .cbs-frontend-canvas-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 32px 30px 24px;
            background: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            color: white;
            box-shadow: none;
        }

        .cbs-frontend-canvas-header h2 {
            margin: 0;
            font-size: 28px;
            font-weight: 600;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ========================================
           CLOSE BUTTON - ENHANCED
           ======================================== */
        .cbs-frontend-canvas-close {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            color: rgba(255, 255, 255, 0.7) !important;
            font-size: 24px;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .cbs-frontend-canvas-close:hover {
            background: rgba(255, 59, 48, 0.15);
            border-color: rgba(255, 59, 48, 0.3);
            color: #ff3b30;
            transform: rotate(90deg);
        }

        /* ========================================
           CANVAS BODY
           ======================================== */
        .cbs-frontend-canvas-body {
            flex: 1;
            overflow-y: auto;
            padding: 32px 30px;
        }

        /* Custom Scrollbar */
        .cbs-frontend-canvas-body::-webkit-scrollbar {
            width: 8px;
        }

        .cbs-frontend-canvas-body::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }

        .cbs-frontend-canvas-body::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
        }

        .cbs-frontend-canvas-body::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* ========================================
           FORM STYLES
           ======================================== */
        .cbs-frontend-rider-form {
            max-width: 100%;
        }

        .cbs-frontend-form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .cbs-frontend-form-group label {
            display: block;
            font-weight: 500;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9) !important;
            margin-bottom: 10px;
            letter-spacing: 0.3px;
        }

        .required {
            color: #ff6b6b;
            margin-left: 4px;
        }

        /* ========================================
           INPUT FIELDS - BEAUTIFUL DARK THEME
           ======================================== */
        .cbs-frontend-form-group input {
            width: 100%;
            padding: 16px 18px !important;
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
            border-radius: 14px !important;
            color: #ffffff;
            font-size: 16px;
            font-weight: 400;
            transition: all 0.3s ease;
            box-sizing: border-box;
            font-family: inherit;
            outline: none;
        }

        .cbs-frontend-form-group input::placeholder {
            color: rgba(255, 255, 255, 0.4);
            font-weight: 400;
        }

        .cbs-frontend-form-group input:focus {
            background: rgba(255, 255, 255, 0.08) !important;
            border-color: rgba(255, 255, 255, 0.3) !important;
            box-shadow: 
                0 0 0 4px rgba(255, 255, 255, 0.05),
                0 4px 16px rgba(0, 0, 0, 0.2) !important;
            transform: translateY(-1px);
        }

        .cbs-frontend-form-group input:hover:not(:focus) {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.06);
        }

        /* ========================================
           FORM ACTIONS
           ======================================== */
        .cbs-frontend-form-actions {
            display: flex;
            gap: 12px;
            flex-direction: column;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* ========================================
           SUBMIT BUTTON - PREMIUM DESIGN
           ======================================== */
        .cbs-frontend-submit-btn {
            width: 100%;
            padding: 16px 24px;
            background: linear-gradient(135deg, #E4AF5F 0%, #c89860 100%) !important;
            border: none;
            border-radius: 14px;
            color: white !important;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: inherit;
            letter-spacing: 0.3px;
            overflow: hidden;
            box-shadow: 
                0 8px 24px rgba(228, 175, 95, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
        }

        .cbs-frontend-submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1) !important;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cbs-frontend-submit-btn:hover:not(:disabled)::before {
            width: 300px;
            height: 300px;
        }

        .cbs-frontend-submit-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 
                0 12px 32px rgba(228, 175, 95, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
        }

        /* ========================================
           CANCEL BUTTON - ENHANCED
           ======================================== */
        .cbs-frontend-cancel-btn {
            width: 100%;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.05) !important;
            color: rgba(255, 255, 255, 0.9) !important;
            border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
            border-radius: 14px !important;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            letter-spacing: 0.3px;
        }

        .cbs-frontend-cancel-btn:hover {
            background: rgba(255, 255, 255, 0.08) !important;
            border-color: rgba(255, 255, 255, 0.25) !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
        }

        /* Comparison Text */
        .comparison-note {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95) !important;
            padding: 15px 30px;
            border-radius: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            font-size: 14px;
            color: #333;
            font-weight: 600;
            z-index: 10000;
        }

        .highlight {
            color: #E4AF5F;
            font-weight: 700;
        }