		/* ========================================
		   DESIGN SYSTEM - Google Forms Inspired
		   ======================================== */
		
		/* CSS Custom Properties (Design Tokens) */
		.gf-builder-wrap {
			/* Primary Colors */
			--gf-primary: #1a73e8;
			--gf-primary-dark: #1558b0;
			--gf-primary-light: #d2e3fc;
			--gf-primary-bg: #e8f0fe;
			
			/* Neutral Colors */
			--gf-background: #dbe7d9;
			--gf-surface: #ffffff;
			--gf-border: #dadce0;
			--gf-border-light: #e0e0e0;
			
			/* Text Colors (WCAG AA Compliant) */
			--gf-text-primary: #202124;
			--gf-text-secondary: #5f6368;
			--gf-text-disabled: #80868b;
			--gf-text-on-primary: #ffffff;
			
			/* Semantic Colors */
			--gf-error: #d93025;
			--gf-error-bg: #fce8e6;
			--gf-success: #1e8e3e;
			--gf-success-bg: #e6f4ea;
			--gf-info: #1a73e8;
			--gf-info-bg: #e8f0fe;
			
			/* Spacing Scale */
			--gf-space-xs: 4px;
			--gf-space-sm: 8px;
			--gf-space-md: 16px;
			--gf-space-lg: 24px;
			--gf-space-xl: 32px;
			
			/* Typography */
			--gf-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
			--gf-font-size-xs: 12px;
			--gf-font-size-sm: 13px;
			--gf-font-size-base: 14px;
			--gf-font-size-lg: 16px;
			--gf-font-size-xl: 18px;
			--gf-font-size-2xl: 24px;
			--gf-font-size-3xl: 32px;
			
			/* Line Heights */
			--gf-line-height-tight: 1.25;
			--gf-line-height-normal: 1.5;
			--gf-line-height-relaxed: 1.75;
			
			/* Border Radius */
			--gf-radius-sm: 4px;
			--gf-radius-md: 8px;
			--gf-radius-lg: 12px;
			--gf-radius-full: 9999px;
			
			/* Shadows */
			--gf-shadow-sm: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
			--gf-shadow-md: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
			--gf-shadow-lg: 0 1px 3px 0 rgba(60,64,67,.3), 0 8px 16px 4px rgba(60,64,67,.15);
			
			/* Transitions */
			--gf-transition-fast: 0.15s ease;
			--gf-transition-normal: 0.2s cubic-bezier(.4,0,.2,1);
			--gf-transition-slow: 0.3s ease;
			
			/* Focus Ring (Accessibility) */
			--gf-focus-ring: 0 0 0 2px var(--gf-surface), 0 0 0 4px var(--gf-primary);
		}
		
		/* ========================================
		   BASE STYLES
		   ======================================== */
		
		/* Main Layout */
		.gf-builder-wrap { 
			background: var(--gf-background); 
			min-height: 100vh; 
			margin-left: -20px; 
			padding: 0; 
			font-family: var(--gf-font-family);
			font-size: var(--gf-font-size-base);
			line-height: var(--gf-line-height-normal);
			color: var(--gf-text-primary);
			-webkit-font-smoothing: antialiased;
			-moz-osx-font-smoothing: grayscale;
		}
		.gf-builder-inner { 
			max-width: 1320px; 
			margin: 0 auto; 
			padding: 24px 16px 80px; 
			position: relative;
		}

		.gf-builder-layout {
			position: relative;
			max-width: 760px;
			margin: 16px auto 0;
		}

		.gf-fields-panel {
			position: sticky;
			top: 84px;
			background: #f8fafc;
			border: 1px solid #d5deea;
			border-radius: 10px;
			padding: 14px;
			max-height: calc(100vh - 110px);
			overflow-y: auto;
		}

		.gf-fields-panel-head h3 {
			margin: 0;
			font-size: 18px;
			font-weight: 600;
			color: var(--gf-text-primary);
		}

		.gf-fields-panel-head p {
			margin: 6px 0 0;
			font-size: 13px;
			color: var(--gf-text-secondary);
		}

		.gf-fields-search-wrap {
			margin-top: 12px;
		}

		.gf-fields-search {
			width: 100%;
			padding: 10px 12px;
			border: 1px solid #ccd6e4;
			border-radius: 8px;
			font-size: 13px;
			outline: none;
		}

		.gf-fields-search:focus {
			border-color: var(--gf-primary);
			box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.1);
		}

		.gf-field-library {
			margin-top: 12px;
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 8px;
		}

		.gf-field-item {
			border: 1px solid #b9cce6;
			background: #1572b2;
			color: #fff;
			border-radius: 6px;
			padding: 10px 8px;
			font-size: 13px;
			font-weight: 500;
			display: flex;
			align-items: center;
			gap: 8px;
			cursor: pointer;
			text-align: left;
		}

		.gf-field-item:hover {
			background: #0f6198;
		}

		.gf-field-item-icon {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			width: 18px;
			height: 18px;
			flex-shrink: 0;
		}

		.gf-field-item .gf-type-icon {
			width: 18px;
			height: 18px;
			color: #fff;
		}

		.gf-field-item.gf-dragging {
			opacity: 0.6;
		}

		.gf-field-empty {
			grid-column: 1 / -1;
			text-align: center;
			color: var(--gf-text-secondary);
			font-size: 13px;
			padding: 12px;
		}

		.gf-add-default {
			margin-top: 12px;
			width: 100%;
			justify-content: center;
		}

		.gf-btn-secondary {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 6px;
			padding: 10px 14px;
			border-radius: 8px;
			border: 1px solid #d0d5dd;
			background: #fff;
			color: #344054;
			font-size: 13px;
			font-weight: 500;
			cursor: pointer;
		}

		.gf-btn-secondary:hover {
			background: #f9fafb;
			border-color: #bfc7d3;
		}

		.gf-meta-row {
			display: flex;
			gap: 10px;
			align-items: center;
		}

		.gf-meta-row .gf-input {
			margin: 0;
		}

		.gf-muted-note {
			margin: 0;
			font-size: 13px;
			color: #6b7280;
		}

		.gf-canvas-wrap {
			min-width: 0;
			width: 100%;
		}

		.gf-q-card {
			position: relative;
		}

		.gf-drag-handle {
			position: absolute;
			top: 10px;
			right: 10px;
			width: 28px;
			height: 28px;
			border-radius: 50%;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			color: #9aa0a6;
			cursor: grab;
		}

		.gf-drag-handle:hover {
			background: #f1f3f4;
			color: #5f6368;
		}

		.gf-drag-handle svg {
			width: 18px;
			height: 18px;
		}

		.gf-q-card.gf-dragging {
			opacity: 0.45;
		}

		.gf-drop-indicator {
			height: 3px;
			background: var(--gf-primary);
			border-radius: 999px;
			margin: 8px 0;
		}
		
		/* Card Base */
		.gf-card { 
			background: #fff; 
			border-radius: 8px; 
			box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12); 
			margin-bottom: 12px; 
			position: relative;
			transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1), transform 0.15s ease;
			will-change: box-shadow, transform;
		}
		.gf-card-header { 
			border-radius: 8px 8px 0 0; 
			border-top: 10px solid #34a853; 
		}
		.gf-card-body { 
			padding: 22px 24px 24px; 
		}
		
		/* Title Input - Google Forms Style */
		.gf-title-input { 
			font-size: 32px; 
			font-weight: 400; 
			border: none; 
			border-bottom: 2px solid transparent; 
			width: 100%; 
			padding: 0 0 8px 0; 
			margin-bottom: 8px;
			background: transparent; 
			color: #202124; 
			line-height: 40px;
			transition: border-color 0.2s ease;
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		}
		.gf-title-input:hover { 
			border-bottom-color: #e0e0e0; 
		}
		.gf-title-input:focus { 
			outline: none; 
			border-bottom-color: #673AB7; 
		}
		.gf-title-input::placeholder {
			color: #80868b;
		}
		
		/* Description Input - Google Forms Style */
		.gf-desc-input { 
			font-size: 14px; 
			font-weight: 400;
			border: none; 
			border-bottom: 2px solid transparent; 
			width: 100%; 
			padding: 8px 0; 
			background: transparent; 
			color: #5f6368; 
			resize: none; 
			line-height: 20px;
			transition: border-color 0.2s ease;
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
			overflow: hidden;
		}
		.gf-desc-input:hover { 
			border-bottom-color: #e0e0e0; 
		}
		.gf-desc-input:focus { 
			outline: none; 
			border-bottom-color: #673AB7; 
		}
		.gf-desc-input::placeholder {
			color: #80868b;
		}
		
		/* Question Card - Google Forms Style */
		.gf-q-card { 
			border-left: 6px solid transparent; 
			transition: border-color 0.2s cubic-bezier(.4,0,.2,1), 
			             box-shadow 0.2s cubic-bezier(.4,0,.2,1),
			             transform 0.15s ease; 
			cursor: pointer;
			overflow: hidden;
			will-change: border-color, box-shadow;
		}
		.gf-q-card:hover { 
			box-shadow: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15); 
		}
		.gf-q-card.gf-focused { 
			border-left-color: #673AB7; 
			box-shadow: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15); 
		}
		.gf-q-card.gf-new {
			animation: gfCardAppear 0.35s cubic-bezier(.4,0,.2,1) forwards;
		}
		
		/* Question Header */
		.gf-q-header { 
			display: flex; 
			gap: 24px; 
			align-items: flex-start; 
			flex-wrap: wrap;
		}
		.gf-q-title-wrap {
			flex: 1;
			min-width: 250px;
		}
		
		/* Question Title Input - Large Text Style */
		.gf-q-title-input { 
			width: 100%;
			font-size: 16px; 
			font-weight: 400;
			border: none; 
			border-bottom: 2px solid transparent;
			padding: 16px; 
			background: #f8f9fa; 
			border-radius: 4px 4px 0 0; 
			color: #202124; 
			line-height: 24px;
			transition: background 0.2s ease, border-color 0.2s ease;
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		}
		.gf-q-title-input::placeholder {
			color: #80868b;
		}
		.gf-q-title-input:hover { 
			background: #f1f3f4; 
		}
		.gf-q-title-input:focus { 
			outline: none; 
			border-bottom-color: #673AB7; 
			background: #f0ebf8; 
		}
		
		/* Card inactive state - hide footer */
		.gf-q-card .gf-q-footer {
			max-height: 0;
			padding: 0 24px;
			overflow: hidden;
			border-top: none;
			transition: max-height 0.25s ease, padding 0.25s ease, border-top 0.1s ease;
		}
		
		/* Card active state - show footer */
		.gf-q-card.gf-focused .gf-q-footer {
			max-height: 80px;
			padding: 16px 24px;
			border-top: 1px solid #dadce0;
		}
		
		/* Type Dropdown - Google Forms Style */
		.gf-type-select-wrap { 
			position: relative; 
			min-width: 208px;
			flex-shrink: 0;
		}
		
		/* Custom dropdown display */
		.gf-type-display {
			display: flex;
			align-items: center;
			gap: 12px;
			padding: 12px 40px 12px 12px;
			border: 1px solid #dadce0;
			border-radius: 4px;
			background: #fff;
			cursor: pointer;
			transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
			position: relative;
			user-select: none;
		}
		.gf-type-display:hover {
			background: #f8f9fa;
			border-color: #c0c0c0;
		}
		.gf-type-display.gf-open {
			border-color: #673AB7;
			box-shadow: 0 0 0 2px rgba(103,58,183,0.1);
			border-radius: 4px 4px 0 0;
		}
		.gf-type-display::after {
			content: '';
			position: absolute;
			right: 14px;
			top: 50%;
			transform: translateY(-50%);
			border-left: 5px solid transparent;
			border-right: 5px solid transparent;
			border-top: 5px solid #5f6368;
			transition: transform 0.2s ease, border-color 0.2s ease;
		}
		.gf-type-display.gf-open::after {
			transform: translateY(-50%) rotate(180deg);
			border-top-color: #673AB7;
		}
		.gf-type-icon {
			width: 24px;
			height: 24px;
			color: #5f6368;
			flex-shrink: 0;
		}
		.gf-type-label {
			font-size: 14px;
			color: #202124;
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
			line-height: 20px;
		}
		
		/* Dropdown menu */
		.gf-type-menu {
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			background: #fff;
			border: 1px solid #dadce0;
			border-top: none;
			border-radius: 0 0 4px 4px;
			box-shadow: 0 2px 6px 2px rgba(60,64,67,.15);
			z-index: 200;
			display: none;
			overflow: hidden;
		}
		.gf-type-menu.gf-open {
			display: block;
		}
		.gf-type-option {
			display: flex;
			align-items: center;
			gap: 12px;
			padding: 12px 16px;
			cursor: pointer;
			transition: background 0.15s ease;
		}
		.gf-type-option:hover {
			background: #f1f3f4;
		}
		.gf-type-option.gf-selected {
			background: #e8f0fe;
		}
		.gf-type-option.gf-selected:hover {
			background: #d2e3fc;
		}
		.gf-type-option .gf-type-icon {
			color: #5f6368;
		}
		.gf-type-option.gf-selected .gf-type-icon {
			color: #673AB7;
		}
		.gf-type-option .gf-type-label {
			color: #202124;
		}
		.gf-type-option.gf-selected .gf-type-label {
			color: #673AB7;
			font-weight: 500;
		}
		
		/* Hidden native select */
		.gf-type-select {
			position: absolute;
			opacity: 0;
			pointer-events: none;
			width: 100%;
			height: 100%;
			top: 0;
			left: 0;
		}
		
		/* Options List - Google Forms Style */
		.gf-options-container {
			margin-top: 20px;
			padding-left: 0;
		}
		.gf-option-row { 
			display: flex; 
			align-items: center; 
			gap: 12px; 
			padding: 8px 8px 8px 0;
			margin: 0 -8px 4px 0;
			border-radius: 4px;
			transition: background 0.15s ease;
		}
		.gf-option-row:hover {
			background: #f8f9fa;
		}
		
		/* Radio Circle Icon */
		.gf-option-icon { 
			width: 20px; 
			height: 20px; 
			border: 2px solid #5f6368; 
			border-radius: 50%; 
			flex-shrink: 0;
			transition: border-color 0.15s ease;
			box-sizing: border-box;
		}
		.gf-option-row:hover .gf-option-icon {
			border-color: #673AB7;
		}
		
		/* Checkbox Square Icon */
		.gf-option-icon.gf-checkbox { 
			border-radius: 3px; 
		}
		
		/* Option Text Input */
		.gf-option-input { 
			flex: 1; 
			border: none; 
			border-bottom: 1px solid transparent; 
			padding: 8px 0; 
			font-size: 14px; 
			color: #202124; 
			background: transparent; 
			line-height: 20px;
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
			transition: border-color 0.2s ease;
		}
		.gf-option-input::placeholder {
			color: #80868b;
		}
		.gf-option-row:hover .gf-option-input {
			border-bottom-color: #e0e0e0;
		}
		.gf-option-input:focus { 
			outline: none; 
			border-bottom: 2px solid #673AB7; 
			padding-bottom: 7px;
		}
		
		/* Delete Button */
		.gf-option-delete { 
			width: 32px; 
			height: 32px; 
			border: none; 
			background: transparent; 
			cursor: pointer; 
			border-radius: 50%; 
			display: flex; 
			align-items: center; 
			justify-content: center; 
			color: #5f6368; 
			opacity: 0; 
			transition: opacity 0.15s ease, background 0.15s ease, color 0.15s ease; 
			padding: 0;
			flex-shrink: 0;
		}
		.gf-option-delete svg {
			width: 18px;
			height: 18px;
		}
		.gf-option-row:hover .gf-option-delete { 
			opacity: 1; 
		}
		.gf-option-delete:hover { 
			background: #fce8e6;
			color: #d93025;
		}
		
		/* Add Option Button */
		.gf-add-option { 
			display: flex; 
			align-items: center; 
			gap: 12px; 
			padding: 8px 0;
			margin-top: 4px;
			cursor: pointer; 
			font-size: 14px;
			border-radius: 4px;
			transition: background 0.15s ease;
		}
		.gf-add-option:hover {
			background: #f8f9fa;
			margin-left: -8px;
			margin-right: -8px;
			padding-left: 8px;
			padding-right: 8px;
		}
		.gf-add-option .gf-option-icon {
			border-color: #dadce0;
			border-style: dashed;
		}
		.gf-add-option:hover .gf-option-icon {
			border-color: #673AB7;
		}
		.gf-add-option-text {
			color: #673AB7;
			font-weight: 500;
			padding-bottom: 1px;
			border-bottom: 1px solid transparent;
			transition: border-color 0.15s ease;
		}
		.gf-add-option:hover .gf-add-option-text { 
			border-bottom-color: #673AB7;
		}
		
		/* Or add "Other" link */
		.gf-add-other {
			color: #1a73e8;
			font-size: 13px;
			margin-left: 8px;
			cursor: pointer;
		}
		.gf-add-other:hover {
			text-decoration: underline;
		}
		
		/* Text preview */
		.gf-text-preview { 
			border-bottom: 1px dotted #dadce0; 
			padding: 8px 0; 
			color: #70757a; 
			font-size: 14px; 
			margin-top: 24px;
			width: 50%;
		}
		.gf-textarea-preview { 
			border-bottom: 1px dotted #dadce0; 
			padding: 8px 0; 
			color: #70757a; 
			font-size: 14px; 
			margin-top: 24px;
			width: 80%;
		}
		
		/* Question Footer - Action Icons */
		.gf-q-footer { 
			display: flex; 
			align-items: center; 
			justify-content: flex-end; 
			gap: 0; 
			background: #fff;
		}
		.gf-icon-btn { 
			width: 40px; 
			height: 40px; 
			border: none; 
			background: transparent; 
			cursor: pointer; 
			border-radius: 50%; 
			display: flex; 
			align-items: center; 
			justify-content: center; 
			color: #5f6368; 
			transition: background 0.15s ease, color 0.15s ease; 
			margin: 0 2px;
		}
		.gf-icon-btn:hover { 
			background: #f1f3f4;
			color: #202124;
		}
		.gf-icon-btn:active {
			background: #e8eaed;
		}
		.gf-icon-btn svg {
			width: 20px;
			height: 20px;
		}
		.gf-icon-btn.gf-delete:hover {
			color: #d93025;
			background: #fce8e6;
		}
		.gf-icon-btn.gf-add-q-btn:hover {
			color: #673AB7;
			background: #f0ebf8;
		}
		/* Vertical Divider */
		.gf-divider-v { 
			width: 1px; 
			height: 32px; 
			background: #dadce0; 
			margin: 0 12px 0 8px; 
		}
		
		/* Required Toggle Container */
		.gf-required-wrap { 
			display: flex; 
			align-items: center; 
			gap: 12px; 
			font-size: 14px; 
			color: #202124;
			padding-left: 4px;
		}
		.gf-required-wrap span {
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
			user-select: none;
		}
		
		/* Toggle Switch - Google Forms Style (Purple) */
		.gf-toggle { 
			position: relative; 
			width: 34px; 
			height: 14px; 
			background: #dadce0; 
			border-radius: 7px; 
			cursor: pointer; 
			transition: background 0.2s ease;
			flex-shrink: 0;
		}
		.gf-toggle::after { 
			content: ''; 
			position: absolute; 
			width: 20px; 
			height: 20px; 
			background: #fff; 
			border-radius: 50%; 
			top: -3px; 
			left: -1px; 
			box-shadow: 0 1px 3px 0 rgba(0,0,0,.3), 0 1px 1px 0 rgba(0,0,0,.15); 
			transition: left 0.15s ease, background 0.15s ease, box-shadow 0.15s ease; 
		}
		.gf-toggle:hover::after {
			box-shadow: 0 1px 3px 0 rgba(0,0,0,.3), 0 1px 1px 0 rgba(0,0,0,.15), 0 0 0 8px rgba(0,0,0,.04);
		}
		.gf-toggle.gf-on { 
			background: #d7c4f2; 
		}
		.gf-toggle.gf-on::after { 
			left: 15px; 
			background: #673AB7; 
		}
		.gf-toggle.gf-on:hover::after {
			box-shadow: 0 1px 3px 0 rgba(0,0,0,.3), 0 1px 1px 0 rgba(0,0,0,.15), 0 0 0 8px rgba(103,58,183,.12);
		}
		
		/* Floating Toolbar */
		.gf-floating-toolbar { 
			position: absolute; 
			left: calc(100% + 14px); 
			top: 64px; 
			background: #fff; 
			border-radius: 8px; 
			box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12); 
			display: flex; 
			flex-direction: column; 
			padding: 6px 0; 
			z-index: 100; 
		}
		.gf-toolbar-btn { 
			width: 48px; 
			height: 48px; 
			border: none; 
			background: transparent; 
			cursor: pointer; 
			display: flex; 
			align-items: center; 
			justify-content: center; 
			color: #5f6368; 
			transition: background 0.15s ease; 
		}
		.gf-toolbar-btn:hover { 
			background: #f1f3f4; 
		}
		.gf-toolbar-btn svg {
			width: 24px;
			height: 24px;
		}
		.gf-toolbar-divider { 
			height: 1px; 
			background: #dadce0; 
			margin: 6px 12px; 
		}
		
		/* Top Bar */
		.gf-top-bar { 
			background: #fff; 
			border-bottom: 1px solid #dadce0; 
			padding: 12px 16px; 
			display: flex; 
			align-items: center; 
			justify-content: space-between; 
			margin: -24px -16px 24px -16px; 
			position: sticky; 
			top: 32px; 
			z-index: 99; 
		}
		.gf-logo { 
			display: flex; 
			align-items: center; 
			gap: 10px; 
			font-size: 18px; 
			color: #5f6368; 
		}
		.gf-logo svg { 
			width: 40px; 
			height: 40px; 
		}
		.gf-btn-primary { 
			background: #673AB7; 
			color: #fff; 
			border: none; 
			padding: 10px 24px; 
			border-radius: 4px; 
			font-size: 14px; 
			font-weight: 500; 
			cursor: pointer; 
			display: flex; 
			align-items: center; 
			gap: 8px; 
			transition: all 0.2s ease; 
			letter-spacing: 0.25px;
		}
		.gf-btn-primary:hover { 
			background: #5e35b1; 
			box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15); 
		}
		.gf-btn-text {
			background: transparent;
			color: #5f6368;
			border: none;
			padding: 10px 16px;
			border-radius: 4px;
			font-size: 14px;
			font-weight: 500;
			cursor: pointer;
			text-decoration: none;
			transition: background 0.15s ease;
		}
		.gf-btn-text:hover {
			background: #f1f3f4;
		}
		
		/* Settings Card */
		.gf-settings-toggle { 
			padding: 20px 24px; 
			display: flex; 
			align-items: center; 
			justify-content: space-between; 
			cursor: pointer; 
		}
		.gf-settings-toggle:hover { 
			background: #f8f9fa; 
		}
		.gf-settings-title { 
			display: flex; 
			align-items: center; 
			gap: 16px; 
			font-size: 14px; 
			font-weight: 500; 
			color: #202124; 
		}
		.gf-settings-body { 
			padding: 0 24px 24px; 
			display: none; 
			border-top: 1px solid #dadce0;
		}
		.gf-settings-body.gf-open { 
			display: block; 
		}
		.gf-setting-row { 
			display: flex; 
			align-items: center; 
			justify-content: space-between; 
			padding: 16px 0; 
			border-bottom: 1px solid #f1f3f4; 
		}
		.gf-setting-row:last-child { 
			border-bottom: none; 
		}
		.gf-input { 
			width: 100%; 
			padding: 12px 16px; 
			border: 1px solid #dadce0; 
			border-radius: 4px; 
			font-size: 14px; 
			line-height: 20px;
			color: #202124;
		}
		.gf-input:focus { 
			outline: none; 
			border-color: #673AB7; 
			box-shadow: 0 0 0 2px rgba(103,58,183,0.1); 
		}
		.gf-textarea { 
			min-height: 80px; 
			resize: vertical; 
		}
		.gf-label { 
			font-size: 12px; 
			font-weight: 500; 
			color: #5f6368; 
			margin-bottom: 8px; 
			display: block; 
			text-transform: uppercase;
			letter-spacing: 0.5px;
		}
		
		/* Animations */
		@keyframes gfSlideIn { 
			from { opacity: 0; transform: translateY(8px); } 
			to { opacity: 1; transform: translateY(0); } 
		}
		@keyframes gfCardAppear {
			0% { 
				opacity: 0; 
				transform: translateY(20px) scale(0.97); 
			}
			60% {
				transform: translateY(-4px) scale(1.01);
			}
			100% { 
				opacity: 1; 
				transform: translateY(0) scale(1); 
			}
		}
		@keyframes gfPulse {
			0% { box-shadow: 0 0 0 0 rgba(103,58,183,.4); }
			70% { box-shadow: 0 0 0 10px rgba(103,58,183,0); }
			100% { box-shadow: 0 0 0 0 rgba(103,58,183,0); }
		}
		@keyframes gfFadeIn {
			from { opacity: 0; }
			to { opacity: 1; }
		}
		.gf-animate { 
			animation: gfSlideIn 0.25s ease-out forwards; 
		}
		.gf-fade-in {
			animation: gfFadeIn 0.3s ease-out forwards;
		}
		.gf-pulse {
			animation: gfPulse 0.6s ease-out;
		}
		
		/* Smooth scroll behavior */
		.gf-builder-wrap {
			scroll-behavior: smooth;
		}
		
		/* Chevron rotation */
		.gf-chevron { 
			transition: transform var(--gf-transition-normal); 
		}
		.gf-chevron.gf-rotated { 
			transform: rotate(180deg); 
		}
		
		/* Hide default WP admin styling conflicts */
		.gf-builder-wrap .ds-sidebar { display: none; }
		
		/* ========================================
		   ACCESSIBILITY
		   ======================================== */
		
		/* Focus Visible Styles (keyboard navigation) */
		.gf-builder-wrap *:focus-visible {
			outline: none;
			box-shadow: var(--gf-focus-ring);
		}
		
		.gf-builder-wrap input:focus-visible,
		.gf-builder-wrap textarea:focus-visible,
		.gf-builder-wrap select:focus-visible {
			box-shadow: none;
			border-color: var(--gf-primary);
		}
		
		.gf-builder-wrap button:focus-visible {
			box-shadow: var(--gf-focus-ring);
		}
		
		/* High Contrast Mode Support */
		@media (prefers-contrast: high) {
			.gf-builder-wrap {
				--gf-border: #000;
				--gf-text-secondary: #202124;
			}
			.gf-q-card.gf-focused {
				border-left-width: 8px;
			}
		}
		
		/* Reduced Motion Support */
		@media (prefers-reduced-motion: reduce) {
			*,
			*::before,
			*::after {
				animation-duration: 0.01ms !important;
				animation-iteration-count: 1 !important;
				transition-duration: 0.01ms !important;
			}
			.gf-builder-wrap {
				scroll-behavior: auto;
			}
		}
		
		/* Screen Reader Only (visually hidden) */
		.gf-sr-only {
			position: absolute;
			width: 1px;
			height: 1px;
			padding: 0;
			margin: -1px;
			overflow: hidden;
			clip: rect(0, 0, 0, 0);
			white-space: nowrap;
			border: 0;
		}
		
		/* Skip Link (accessibility) */
		.gf-skip-link {
			position: absolute;
			top: -40px;
			left: 0;
			background: var(--gf-primary);
			color: var(--gf-text-on-primary);
			padding: var(--gf-space-sm) var(--gf-space-md);
			z-index: 1000;
			transition: top var(--gf-transition-fast);
		}
		.gf-skip-link:focus {
			top: 0;
		}
		
		/* ========================================
		   RESPONSIVE
		   ======================================== */
		
		/* Large screens - toolbar beside content */
		@media (max-width: 1200px) {
			.gf-floating-toolbar {
				position: fixed;
				left: auto;
				right: 16px;
				top: 160px;
			}
		}
		
		/* Tablets and smaller laptops */
		@media (max-width: 900px) {
			.gf-builder-layout {
				max-width: 100%;
			}

			.gf-fields-panel {
				position: static;
				max-height: none;
			}

			.gf-field-library {
				grid-template-columns: repeat(3, minmax(0, 1fr));
			}

			.gf-builder-inner {
				max-width: 100%;
				padding: var(--gf-space-md) var(--gf-space-md) 100px;
			}
			.gf-floating-toolbar {
				right: 12px;
			}
		}
		
		/* Tablets */
		@media (max-width: 768px) {
			.gf-meta-row {
				flex-direction: column;
				align-items: stretch;
			}

			.gf-field-library {
				grid-template-columns: repeat(2, minmax(0, 1fr));
			}

			/* Floating Toolbar - Bottom horizontal */
			.gf-floating-toolbar {
				position: fixed;
				bottom: 0;
				top: auto;
				left: 0;
				right: 0;
				transform: none;
				flex-direction: row;
				justify-content: center;
				padding: var(--gf-space-sm) var(--gf-space-md);
				border-radius: 0;
				box-shadow: 0 -2px 8px rgba(0,0,0,.15);
				gap: var(--gf-space-xs);
			}
			.gf-toolbar-btn {
				width: 44px;
				height: 44px;
			}
			.gf-toolbar-divider {
				width: 1px;
				height: 32px;
				margin: 0 var(--gf-space-sm);
			}
			
			/* Question Header - Stack vertically */
			.gf-q-header {
				flex-direction: column;
				gap: var(--gf-space-md);
			}
			.gf-q-title-wrap {
				min-width: 100%;
			}
			.gf-type-select-wrap {
				width: 100%;
				min-width: 100%;
			}
			
			/* Top Bar */
			.gf-top-bar {
				padding: var(--gf-space-sm) var(--gf-space-md);
				flex-wrap: wrap;
				gap: var(--gf-space-sm);
			}
			.gf-logo span {
				font-size: var(--gf-font-size-base);
			}
			
			/* Cards */
			.gf-card-body {
				padding: var(--gf-space-md);
			}
			
			/* Title input */
			.gf-title-input {
				font-size: var(--gf-font-size-2xl);
			}
			
			/* Question Footer - wrap for smaller screens */
			.gf-q-card.gf-focused .gf-q-footer {
				flex-wrap: wrap;
				gap: var(--gf-space-sm);
				justify-content: flex-end;
			}
			
			/* Builder padding for bottom toolbar */
			.gf-builder-inner {
				padding-bottom: 80px;
			}
		}
		
		/* Mobile phones */
		@media (max-width: 480px) {
			.gf-field-library {
				grid-template-columns: 1fr;
			}

			/* Main container */
			.gf-builder-wrap {
				margin-left: -10px;
				margin-right: -10px;
			}
			.gf-builder-inner {
				padding: var(--gf-space-sm) var(--gf-space-sm) 90px;
			}
			
			/* Top Bar - Stack on very small screens */
			.gf-top-bar {
				padding: var(--gf-space-sm);
				position: relative;
				flex-direction: column;
				align-items: stretch;
				gap: var(--gf-space-sm);
			}
			.gf-top-bar > div:first-child {
				justify-content: center;
			}
			.gf-top-bar > div:last-child {
				display: flex;
				justify-content: center;
				gap: var(--gf-space-sm);
			}
			
			/* Cards - Full width, reduced padding */
			.gf-card {
				border-radius: var(--gf-radius-sm);
				margin-bottom: var(--gf-space-sm);
			}
			.gf-card-header {
				border-radius: var(--gf-radius-sm) var(--gf-radius-sm) 0 0;
				border-top-width: 8px;
			}
			.gf-card-body {
				padding: var(--gf-space-md) var(--gf-space-sm);
			}
			
			/* Title - Smaller on mobile */
			.gf-title-input {
				font-size: var(--gf-font-size-xl);
				line-height: 1.3;
			}
			
			/* Question title input */
			.gf-q-title-input {
				padding: var(--gf-space-sm) var(--gf-space-sm);
				font-size: var(--gf-font-size-base);
			}
			
			/* Type dropdown - Full width, larger touch target */
			.gf-type-display {
				padding: var(--gf-space-sm) 40px var(--gf-space-sm) var(--gf-space-sm);
				min-height: 48px;
			}
			.gf-type-option {
				padding: var(--gf-space-sm) var(--gf-space-md);
				min-height: 48px;
			}
			
			/* Options - Better touch targets */
			.gf-option-row {
				padding: var(--gf-space-sm) var(--gf-space-xs);
				min-height: 48px;
			}
			.gf-option-input {
				font-size: var(--gf-font-size-base);
				padding: var(--gf-space-sm) 0;
			}
			.gf-option-delete {
				width: 40px;
				height: 40px;
				opacity: 0.7;
			}
			.gf-add-option {
				min-height: 48px;
				padding: var(--gf-space-sm) 0;
			}
			
			/* Footer actions - Rearrange for mobile */
			.gf-q-card .gf-q-footer {
				padding: var(--gf-space-sm) var(--gf-space-sm);
			}
			.gf-q-card.gf-focused .gf-q-footer {
				max-height: none;
				flex-wrap: wrap;
			}
			.gf-icon-btn {
				width: 44px;
				height: 44px;
			}
			.gf-divider-v {
				display: none;
			}
			.gf-required-wrap {
				width: 100%;
				justify-content: flex-end;
				padding-top: var(--gf-space-sm);
				border-top: 1px solid var(--gf-border);
				margin-top: var(--gf-space-xs);
			}
			
			/* Settings panel */
			.gf-settings-toggle {
				padding: var(--gf-space-md) var(--gf-space-sm);
			}
			.gf-settings-body {
				padding: 0 var(--gf-space-sm) var(--gf-space-md);
			}
			.gf-setting-row {
				flex-direction: column;
				align-items: flex-start;
				gap: var(--gf-space-sm);
			}
			
			/* Floating Toolbar - Compact on mobile */
			.gf-floating-toolbar {
				padding: var(--gf-space-xs) var(--gf-space-sm);
				gap: 0;
			}
			.gf-toolbar-btn {
				width: 48px;
				height: 48px;
			}
			.gf-toolbar-btn svg {
				width: 22px;
				height: 22px;
			}
			
			/* Inputs - Larger touch targets */
			.gf-input {
				padding: var(--gf-space-sm) var(--gf-space-sm);
				font-size: 16px; /* Prevents iOS zoom */
				min-height: 48px;
			}
			.gf-textarea {
				min-height: 100px;
			}
			
			/* Buttons - Larger touch targets */
			.gf-btn-primary {
				padding: var(--gf-space-sm) var(--gf-space-md);
				min-height: 44px;
				font-size: var(--gf-font-size-base);
			}
		}
		
		/* Very small phones */
		@media (max-width: 360px) {
			.gf-builder-inner {
				padding: var(--gf-space-xs) var(--gf-space-xs) 90px;
			}
			.gf-card-body {
				padding: var(--gf-space-sm);
			}
			.gf-title-input {
				font-size: var(--gf-font-size-lg);
			}
			.gf-toolbar-btn {
				width: 44px;
				height: 44px;
			}
			.gf-logo svg {
				width: 32px;
				height: 32px;
			}
		}
		
		/* Touch device optimizations */
		@media (hover: none) and (pointer: coarse) {
			/* Always show delete buttons on touch devices */
			.gf-option-delete {
				opacity: 0.6;
			}
			
			/* Larger touch targets */
			.gf-toggle {
				width: 44px;
				height: 18px;
			}
			.gf-toggle::after {
				width: 24px;
				height: 24px;
				top: -3px;
			}
			.gf-toggle.gf-on::after {
				left: 20px;
			}
			
			/* Remove hover states that might stick on touch */
			.gf-q-card:hover {
				box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
			}
			.gf-q-card.gf-focused:hover {
				box-shadow: var(--gf-shadow-md);
			}
		}
		
		/* Landscape mobile */
		@media (max-height: 500px) and (orientation: landscape) {
			.gf-floating-toolbar {
				position: fixed;
				right: var(--gf-space-sm);
				left: auto;
				bottom: auto;
				top: 50%;
				transform: translateY(-50%);
				flex-direction: column;
				border-radius: var(--gf-radius-md);
			}
			.gf-toolbar-divider {
				width: 100%;
				height: 1px;
				margin: var(--gf-space-xs) 0;
			}
			.gf-builder-inner {
				padding-bottom: var(--gf-space-xl);
			}
		}
		
		/* Print Styles */
		@media print {
			.gf-builder-wrap {
				background: #fff;
			}
			.gf-floating-toolbar,
			.gf-top-bar,
			.gf-q-footer {
				display: none !important;
			}
			.gf-q-card {
				break-inside: avoid;
				box-shadow: none;
				border: 1px solid var(--gf-border);
			}
		}
