/* Interactive Setup Demo v2 — extracted from InteractiveSetupDemoV2.astro.
   Loaded non-render-blocking (component is below the fold). All selectors are
   uniquely v2-/ep- prefixed and used only by this component, so global scope is safe. */

/* ===== block 1: demo internals (was scoped <style>) ===== */
/* ═══ SHARED UTILITIES (scoped for V2) ═══ */
.ep-container { max-width: var(--container-max-width); margin: 0 auto; padding: 0 2rem; }
.ep-section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.ep-section-header h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: var(--color-text-heading); letter-spacing: -0.02em; margin: 0 0 0.75rem; line-height: 1.2; }
.ep-section-header p { font-size: var(--font-size-base); color: var(--color-text-secondary); line-height: 1.7; margin: 0; }
@keyframes epSlideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes epFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes v2DrawerSlide { from { transform: translateX(100%); } to { transform: translateX(0); } }
.ep-dot { width: 10px; height: 10px; border-radius: 50%; }
.ep-dot-r { background: var(--color-chrome-red); }
.ep-dot-y { background: var(--color-chrome-yellow); }
.ep-dot-g { background: var(--color-chrome-green); }
:global(.ep-pulse-dot) { position: relative; overflow: visible; animation: epBtnGlow 2s ease-in-out infinite; }
:global(.ep-pulse-dot)::before { content: ''; position: absolute; inset: -3px; border-radius: inherit; background: linear-gradient(90deg, transparent, var(--color-glass-subtle), transparent); background-size: 200% 100%; animation: epBtnShine 2s ease-in-out infinite; pointer-events: none; z-index: 1; }
:global(.ep-pulse-dot)::after { content: ''; position: absolute; inset: 0px; border-radius: inherit; box-shadow: 0 0 8px 2px color-mix(in srgb, var(--orange) 35%, transparent), 0 0 16px 4px color-mix(in srgb, var(--orange) 15%, transparent); pointer-events: none; z-index: 0; animation: epBtnRing 2s ease-in-out infinite; }
@keyframes epBtnGlow { 0%,100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--orange) 40%, transparent); } 50% { box-shadow: 0 0 12px 4px color-mix(in srgb, var(--orange) 30%, transparent); } }
@keyframes epBtnShine { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes epBtnRing { 0%,100% { opacity: 0.4; inset: 0px; } 50% { opacity: 1; inset: -4px; } }

/* ═══ SECTION + STAGE ═══ */
.ep-hiw { padding: 6rem 0; background: var(--color-bg-alt); }
.ep-hiw-stage { max-width: 960px; margin: 0 auto; }
.ep-hiw-timeline { display: flex; align-items: center; gap: 0; margin-bottom: 1.5rem; }
.ep-hiw-tab { flex: 1 1 0%; display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; border: 1px solid var(--color-border); border-radius: 14px; background: var(--color-bg-elevated); cursor: pointer; font-family: inherit; text-align: left; position: relative; overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; }
.ep-hiw-tab:hover { border-color: var(--color-border-strong); background: var(--color-bg-alt); }
.ep-hiw-tab.is-active { border-color: color-mix(in srgb, var(--primary) 30%, transparent); background: color-mix(in srgb, var(--primary) 3%, transparent); box-shadow: 0 0 0 1px var(--glow-primary), 0 4px 16px -4px color-mix(in srgb, var(--primary) 12%, transparent); }
.ep-hiw-tab.is-completed { border-color: color-mix(in srgb, var(--primary) 20%, transparent); }
.ep-hiw-tab-num { width: 32px; height: 32px; border-radius: 50%; background: var(--color-bg-inset); color: var(--color-text-secondary); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.3s ease, color 0.3s ease; }
.ep-hiw-tab.is-active .ep-hiw-tab-num { background: var(--primary); color: var(--color-text-inverse); box-shadow: 0 2px 10px color-mix(in srgb, var(--primary) 35%, transparent); }
.ep-hiw-tab.is-completed .ep-hiw-tab-num { background: var(--primary); color: var(--color-text-inverse); }
.ep-hiw-tab-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ep-hiw-tab-label { font-size: 14px; font-weight: 700; color: var(--color-text); letter-spacing: -0.01em; }
.ep-hiw-tab-sub { font-size: 12px; color: var(--color-text-tertiary); transition: color 0.3s ease; }
.ep-hiw-tab.is-active .ep-hiw-tab-sub { color: var(--color-text-secondary); }
.ep-hiw-tab-prog { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--color-overlay-extralight); border-radius: 0 0 14px 14px; overflow: hidden; }
.ep-hiw-tab-bar { height: 100%; width: 0%; background: var(--primary); border-radius: 0 3px 0 0; }
.ep-hiw-arrow { flex-shrink: 0; width: 36px; display: flex; align-items: center; justify-content: center; color: var(--color-border-strong); }
.ep-hiw-panels { position: relative; }
.ep-hiw-panel { display: none; flex-direction: column; gap: 1.5rem; }
.ep-hiw-panel.is-active { display: flex; animation: epSlideUp 0.4s ease both; }

/* ═══ BROWSER FRAME ═══ */
.ep-hiw-browser { border-radius: 16px; overflow: hidden; border: 1px solid var(--color-border); background: var(--color-bg-elevated); box-shadow: 0 1px 3px var(--color-overlay-extralight), 0 8px 32px -8px var(--color-overlay-light); }
.ep-browser-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--color-bg-inset); border-bottom: 1px solid var(--color-border); position: relative; z-index: 20; }
.ep-hiw-url { flex: 1; display: flex; align-items: center; gap: 6px; margin-left: 6px; padding: 5px 12px; background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 8px; font-size: 12px; font-weight: 500; color: var(--color-text-secondary); font-family: 'SF Mono', Consolas, monospace; }
.ep-hiw-url svg { color: var(--color-text-tertiary); flex-shrink: 0; }
.ep-hiw-viewport { aspect-ratio: 16 / 9; position: relative; overflow: hidden; background: var(--color-bg-alt); }
.ep-hiw-caption { text-align: center; max-width: 560px; margin: 0 auto; }
.ep-hiw-caption h3 { font-size: 1.25rem; font-weight: 800; color: var(--color-text); letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.ep-hiw-caption p { font-size: 1rem; color: var(--color-text-secondary); line-height: 1.65; }

/* ═══ BROWSER NAV ARROWS ═══ */
.v2-browser-nav { display: flex; align-items: center; gap: 2px; margin-left: 4px; }
.v2-nav-btn { width: 20px; height: 20px; border: none; background: none; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--color-border-strong); cursor: default; padding: 0; transition: color 0.2s, background 0.2s; }
.v2-nav-btn:not(:disabled) { color: var(--color-text-secondary); cursor: pointer; }
.v2-nav-btn:not(:disabled):hover { color: var(--color-text); background: var(--color-overlay-light); }

/* ═══ SCREENS ═══ */
.ep-hiw-screen { display: none; position: absolute; inset: 0; overflow: visible; }
.ep-hiw-screen.is-active { display: block; animation: epFadeIn 0.4s ease both; overflow: visible; }

/* ═══ SHOPIFY LISTING (Panel 0) ═══ */
.ep-shop-listing { height: 100%; display: flex; flex-direction: column; background: var(--color-bg-elevated); }
.ep-shop-header { border-bottom: 1px solid var(--color-border); }
.ep-shop-topbar { display: flex; align-items: center; gap: 8px; padding: 8px 16px; }
.ep-shop-logo { flex-shrink: 0; }
.ep-shop-topbar-text { font-size: 11px; font-weight: 700; color: var(--color-text); }
.ep-shop-topbar-search { flex: 1; max-width: 240px; margin: 0 auto; display: flex; align-items: center; gap: 5px; background: var(--color-bg-inset); border: 1px solid var(--color-border); border-radius: 8px; padding: 5px 12px; font-size: 10px; color: var(--color-text-tertiary); }
.ep-shop-browse { font-size: 10px; font-weight: 600; color: var(--color-text); display: flex; align-items: center; gap: 3px; white-space: nowrap; }
.ep-shop-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--teal); color: var(--color-text-inverse); font-size: 8px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ep-shop-body { flex: 1; display: flex; gap: 0; overflow: hidden; }
.ep-shop-sidebar { width: 440px; flex-shrink: 0; padding: 20px; border-right: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.ep-shop-sidebar-top { display: flex; align-items: flex-start; gap: 10px; }
.ep-shop-app-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--color-bg-elevated); display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); flex-shrink: 0; }
.ep-shop-app-name { font-size: 14px; font-weight: 800; color: var(--color-text); letter-spacing: -0.02em; line-height: 1.25; }
.ep-shop-sidebar-divider { height: 1px; background: var(--color-border); margin: 4px 0; }
.ep-shop-meta { display: flex; flex-direction: column; gap: 1px; }
.ep-shop-meta-label { font-size: 9px; font-weight: 700; color: var(--color-text); }
.ep-shop-meta-value { font-size: 9px; color: var(--color-text-secondary); line-height: 1.4; }
.ep-shop-stars { color: var(--accent-warm); font-size: 10px; }
.ep-shop-install-btn { width: 100%; text-align: center; padding: 10px 0; background: var(--color-bg-inverse); color: var(--color-text-inverse); border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.ep-shop-install-btn:hover { background: var(--color-bg-inverse-subtle); }
.ep-shop-mobile-install { display: none; }
.ep-shop-mobile-info { flex: 1; min-width: 0; }
.ep-shop-mobile-name { font-size: 11px; font-weight: 700; color: var(--color-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ep-shop-mobile-rating { font-size: 9px; color: var(--color-text-secondary); }
.ep-shop-app-icon-sm { width: 32px; height: 32px; background: var(--color-bg-inset); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ep-shop-demo-link { font-size: 10px; color: var(--color-text); text-decoration: underline; text-align: center; }
.ep-shop-main { flex: 1; padding: 16px 20px; overflow: hidden; display: flex; flex-direction: column; gap: 12px; }
.ep-shop-hero { display: flex; gap: 6px; min-height: 0; }
.ep-shop-video-skel { flex: 1; min-width: 0; background: var(--color-border-subtle); border-radius: 8px; position: relative; display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); aspect-ratio: 16/9; }
.ep-shop-skel-play { width: 32px; height: 32px; background: var(--color-skeleton-from); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ep-shop-thumbs { display: flex; flex-direction: column; gap: 4px; width: 56px; flex-shrink: 0; }
.ep-shop-thumb-skel { flex: 1; background: var(--color-border-subtle); border-radius: 5px; border: 1px solid var(--color-border); min-height: 0; display: flex; align-items: center; justify-content: center; }
.ep-shop-thumb-skel span { font-size: 7px; font-weight: 700; color: var(--color-text-tertiary); }
.ep-shop-skel-line { height: 6px; background: var(--color-border); border-radius: 3px; margin-bottom: 5px; }
.ep-shop-desc { overflow: hidden; flex-shrink: 0; }
.ep-shop-desc-heading { font-size: 11px; font-weight: 800; color: var(--color-text); line-height: 1.35; margin-bottom: 4px; }
.ep-shop-desc-skel { margin-top: 4px; }

/* ═══ MODALS + LOADING ═══ */
.ep-hiw-modal-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--color-bg-alt) 95%, transparent); z-index: 10; border-radius: 12px; }
.ep-hiw-modal-overlay--glass { background: var(--color-overlay-heavy); backdrop-filter: blur(4px); }
.ep-hiw-modal { background: var(--color-bg-elevated); border-radius: 16px; padding: 2rem 2.5rem; text-align: center; box-shadow: 0 8px 40px var(--color-overlay-medium); max-width: 320px; width: 90%; }
.ep-hiw-modal-icon { margin-bottom: 1rem; }
.ep-hiw-modal-title { font-size: 16px; font-weight: 800; color: var(--color-text); letter-spacing: -0.02em; margin-bottom: 4px; }
.ep-hiw-modal-subtitle { font-size: 13px; color: var(--color-text-secondary); margin-bottom: 1.25rem; line-height: 1.5; }
.ep-hiw-modal-btn { display: inline-block; padding: 10px 28px; background: var(--orange); color: var(--color-text-inverse); border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.ep-hiw-modal-btn:hover { background: var(--orange-dark); }
.ep-hiw-modal-btn-ghost { display: block; width: 100%; padding: 8px 28px; background: none; border: 1px solid var(--color-border); border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--color-text-secondary); cursor: pointer; transition: all 0.2s; font-family: inherit; }
.ep-hiw-modal-btn-ghost:hover { border-color: var(--color-border-strong); color: var(--color-text-secondary); background: var(--color-bg-alt); }
.ep-hiw-loadbar-wrap { width: 100%; }
.ep-hiw-loadbar { width: 100%; height: 6px; background: var(--color-border-subtle); border-radius: 3px; overflow: hidden; }
.ep-hiw-loadbar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--orange), var(--orange-light)); border-radius: 3px; }

/* ═══ DASHBOARD ═══ */
.ep-hiw-dash { display: flex; height: 100%; }
.ep-hiw-dash-side { width: 140px; background: var(--color-bg-inverse); padding: 12px 0; display: flex; flex-direction: column; flex-shrink: 0; }
.ep-hiw-dash-logo { display: flex; align-items: center; gap: 6px; padding: 0 12px 14px; border-bottom: 1px solid color-mix(in srgb, white 6%, transparent); margin-bottom: 8px; font-size: 12px; font-weight: 800; color: var(--color-text-inverse); }
.ep-hiw-dash-nav { display: flex; flex-direction: column; gap: 2px; padding: 4px 6px; }
.ep-hiw-dash-nav-item { display: flex; align-items: center; gap: 7px; padding: 6px 8px; border-radius: 6px; font-size: 11px; font-weight: 600; color: color-mix(in srgb, white 45%, transparent); cursor: default; transition: all 0.2s; }
.ep-hiw-dash-nav-item.active { background: color-mix(in srgb, white 8%, transparent); color: var(--color-text-inverse); }
.ep-hiw-dash-main { flex: 1; background: var(--color-bg-alt); display: flex; flex-direction: column; }
.ep-hiw-dash-topbar { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; background: var(--color-bg-elevated); border-bottom: 1px solid var(--color-border); }
.ep-hiw-dash-welcome { font-size: 13px; font-weight: 700; color: var(--color-text); }
.ep-hiw-dash-store-badge { display: flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; color: var(--primary); background: color-mix(in srgb, var(--primary) 6%, transparent); padding: 3px 8px; border-radius: 6px; }
.ep-hiw-dash-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: var(--color-text-tertiary); }

/* ═══ PLAN CARD ═══ */
.ep-hiw-plan-card { margin: 12px 16px; background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 10px; padding: 12px 14px; }
.ep-hiw-plan-card-top { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.ep-hiw-plan-card-name { font-size: 12px; font-weight: 700; color: var(--color-text); }
.ep-hiw-plan-card-badge { font-size: 9px; font-weight: 700; color: var(--accent-warm); background: color-mix(in srgb, var(--accent-warm) 8%, transparent); padding: 2px 6px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.04em; margin-left: auto; }
.ep-hiw-plan-card-details { font-size: 11px; color: var(--color-text-secondary); padding-left: 22px; }

/* ═══ PLAN BUILDER ═══ */
.ep-pb { padding: 0; }
.ep-pb-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 8px 14px; border-bottom: 1px solid var(--color-border); background: var(--color-bg-elevated); gap: 8px; }
.ep-pb-header-left { display: flex; align-items: flex-start; gap: 6px; min-width: 0; }
.ep-pb-header-left > svg { flex-shrink: 0; margin-top: 2px; }
.ep-pb-title { font-size: 13px; font-weight: 800; color: var(--color-text); line-height: 1.2; }
.ep-pb-subtitle { font-size: 8.5px; color: var(--color-text-secondary); margin-top: 1px; line-height: 1.3; }
.ep-pb-actions { display: flex; gap: 5px; align-items: center; flex-shrink: 0; }
.ep-pb-btn-ghost { padding: 5px 10px; border: 1px solid var(--color-border); border-radius: 6px; font-size: 10px; font-weight: 600; color: var(--color-text-secondary); background: var(--color-bg-elevated); cursor: pointer; }
.ep-pb-btn-primary { padding: 5px 14px; background: var(--orange); color: var(--color-text-inverse); border-radius: 6px; font-size: 10px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.ep-pb-btn-primary:hover { background: var(--orange-dark); }
.ep-pb-content { flex: 1; display: flex; gap: 10px; padding: 10px; overflow: hidden; background: var(--color-bg-inset); position: relative; }
.ep-pb-left { flex: 1.6; display: flex; flex-direction: column; gap: 8px; overflow-y: auto; overflow-x: hidden; scrollbar-width: none; }
.ep-pb-left::-webkit-scrollbar { display: none; }
.ep-pb-right { flex: 1; display: flex; flex-direction: column; gap: 8px; overflow-y: auto; overflow-x: hidden; scrollbar-width: none; }
.ep-pb-right::-webkit-scrollbar { display: none; }
.ep-pb-card { background: var(--color-bg-elevated); border-radius: 8px; padding: 10px 12px; border: 1px solid var(--color-border); }
.ep-pb-label { font-size: 11px; font-weight: 700; color: var(--color-text); margin-bottom: 3px; display: flex; align-items: center; gap: 4px; }
.ep-pb-hint { font-size: 8.5px; color: var(--color-text-tertiary); margin-bottom: 6px; line-height: 1.3; }
.ep-pb-input { padding: 6px 8px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 6px; font-size: 11px; font-weight: 600; color: var(--color-text); }
.ep-pb-select { padding: 6px 8px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 6px; font-size: 11px; font-weight: 600; color: var(--color-text); display: flex; justify-content: space-between; align-items: center; }
.ep-pb-rules { display: flex; flex-direction: column; gap: 0; }
.ep-pb-rule-group { border: 1.5px solid var(--color-border); border-radius: 8px; padding: 6px; background: var(--color-bg-alt); display: flex; flex-direction: column; }
.ep-pb-rule-row { display: flex; align-items: center; gap: 5px; padding: 5px 6px; background: var(--color-bg-elevated); border-radius: 6px; border: 1px solid var(--color-border); }
.ep-pb-rule-field { font-size: 9.5px; font-weight: 600; color: var(--color-text); background: var(--color-bg-inset); padding: 2px 6px; border-radius: 4px; white-space: nowrap; }
.ep-pb-rule-op { font-size: 9px; color: var(--color-text-secondary); white-space: nowrap; }
.ep-pb-rule-val { font-size: 9.5px; font-weight: 600; color: var(--orange); background: var(--color-orange-tint); padding: 2px 6px; border-radius: 4px; border: 1px solid var(--color-orange-border); white-space: nowrap; }
.ep-pb-rule-x { cursor: pointer; margin-left: auto; opacity: 0.4; flex-shrink: 0; }
.ep-pb-rule-logic { font-size: 8px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; text-align: center; padding: 3px 0; }
.ep-pb-rule-add { display: flex; align-items: center; gap: 4px; font-size: 9.5px; font-weight: 600; color: var(--orange); cursor: pointer; padding: 6px 0 0; }
.ep-pb-toggles { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ep-pb-trow { display: flex; align-items: center; justify-content: space-between; padding: 6px 8px; background: var(--color-bg-alt); border: 1px solid var(--color-border-subtle); border-radius: 7px; }
.ep-pb-trow span { font-size: 9.5px; font-weight: 500; color: var(--color-text-secondary); display: flex; align-items: center; gap: 3px; }
.ep-pb-sw { width: 28px; height: 16px; border-radius: 8px; background: var(--color-border-strong); position: relative; flex-shrink: 0; }
.ep-pb-sw-knob { position: absolute; top: 2px; left: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--color-bg-elevated); box-shadow: 0 1px 2px var(--color-overlay-medium); transition: transform 0.2s; }
.ep-pb-sw.on { background: var(--color-bg-inverse); }
.ep-pb-sw.on .ep-pb-sw-knob { transform: translateX(12px); }
.ep-pb-table { border: 1px solid var(--color-border); border-radius: 6px; overflow: hidden; }
.ep-pb-tr { display: grid; grid-template-columns: 2fr 0.6fr 0.7fr 0.8fr 1fr; gap: 6px; padding: 5px 8px; font-size: 9.5px; color: var(--color-text-secondary); border-bottom: 1px solid var(--color-border-subtle); align-items: center; }
.ep-pb-tr:last-child { border-bottom: none; }
.ep-pb-tr--head { background: var(--color-bg-alt); font-weight: 700; color: var(--color-text-secondary); font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.03em; }
.ep-pb-input--num { text-align: center; }
.ep-pb-add { font-size: 9.5px; color: var(--orange); font-weight: 600; text-align: center; padding: 6px; cursor: pointer; border-top: 1px solid var(--color-border-subtle); }
.ep-pb-trow--custom { border: 1px dashed var(--color-border-strong); background: var(--color-bg-elevated); cursor: pointer; }
.ep-pb-custom-input { font-size: 9.5px; color: var(--color-text-tertiary); font-style: italic; }
.ep-pb-dropdown { display: inline-flex; align-items: center; gap: 2px; padding: 2px 5px; background: var(--color-bg-elevated); border: 1px solid var(--color-border-strong); border-radius: 4px; font-size: 9px; cursor: pointer; }
.ep-pb-amount-ai { display: flex; align-items: center; gap: 4px; }
:global(.ep-pb-ai-btn) { display: inline-flex; align-items: center; gap: 2px; padding: 2px 5px; background: linear-gradient(135deg, var(--color-purple-light-bg), var(--color-indigo-light-bg)); border: 1px solid var(--color-purple-light-border); border-radius: 4px; font-size: 7.5px; font-weight: 700; color: var(--purple-dark); cursor: pointer; white-space: nowrap; transition: transform 0.2s, box-shadow 0.2s; }
:global(.ep-pb-ai-btn):hover { transform: scale(1.05); box-shadow: 0 2px 8px color-mix(in srgb, var(--purple-dark) 20%, transparent); }
:global(.ep-pb-amount-empty) { font-size: 10px; color: var(--color-border-strong); font-weight: 600; }
:global(.ep-pb-amount-filled) { font-size: 10px; font-weight: 700; color: var(--primary); animation: epAiFadeIn 0.4s ease; }
@keyframes epAiFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
:global(.ep-pb-btn-disabled) { opacity: 0.4; pointer-events: none; }
.ep-pb-imgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.ep-pb-img { aspect-ratio: 1; border-radius: 8px; border: 2px solid var(--color-border); display: flex; align-items: center; justify-content: center; cursor: pointer; background: var(--color-bg-alt); transition: border-color 0.2s; }
.ep-pb-img.is-sel { border-color: var(--orange); background: var(--color-orange-tint); }
.ep-pb-img--upload { border-style: dashed; }
.ep-pb-mini-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3px; }
.ep-pb-mini-row span { font-size: 9.5px; color: var(--color-text-secondary); }
.ep-pb-input-sm { padding: 4px 8px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 5px; font-size: 10px; font-weight: 600; color: var(--color-text); width: 36px; text-align: center; }
.ep-pb-ai { display: flex; align-items: center; gap: 6px; padding: 6px 14px; background: color-mix(in srgb, var(--accent) 6%, transparent); border-top: 1px solid color-mix(in srgb, var(--accent) 10%, transparent); font-size: 10px; color: var(--purple-dark); }
.ep-pb-ai strong { font-weight: 800; }
.ep-pb-skel { border-color: var(--color-border-subtle); }
.ep-pb-skel-bar { height: 7px; background: linear-gradient(90deg, var(--color-skeleton-from) 25%, var(--color-skeleton-to) 50%, var(--color-skeleton-from) 75%); background-size: 200% 100%; border-radius: 4px; margin-bottom: 6px; animation: epSkelShimmer 1.5s ease-in-out infinite; }
.ep-pb-skel-bar:last-child { margin-bottom: 0; }
@keyframes epSkelShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.ep-pb-store { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 500; color: var(--color-glass-text); padding: 0 12px 10px; }
.ep-pb-store-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.ep-pb-side-bottom { margin-top: auto; padding-top: 6px; border-top: 1px solid color-mix(in srgb, white 6%, transparent); }
.ep-pb-status { display: flex; align-items: center; gap: 4px; font-size: 8px; color: color-mix(in srgb, white 40%, transparent); padding: 6px 12px; }
.ep-pb-status-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.ep-pb-sidebar { display: flex; flex-direction: column; }

/* ═══ STYLE EDITOR ═══ */
.v2-style-widget-tabs { display: flex; gap: 4px; padding: 8px 14px 0; }
.v2-style-widget-tab { display: flex; align-items: center; gap: 5px; padding: 6px 12px; border: 1px solid var(--color-border); border-radius: 8px; background: var(--color-bg-elevated); font-size: 10px; font-weight: 600; color: var(--color-text-secondary); cursor: default; transition: all 0.2s; font-family: inherit; }
.v2-style-widget-tab.is-active { background: var(--color-bg-inverse); color: var(--color-text-inverse); border-color: var(--color-text); }
.v2-style-widget-tab.is-active svg { stroke: var(--color-text-inverse); }
.v2-style-body { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 10px 14px; flex: 1; min-height: 0; }
.v2-style-preview { display: flex; align-items: center; justify-content: center; background: var(--color-bg-inset); border-radius: 10px; border: 1px solid var(--color-border); padding: 16px; }
.v2-style-preview-cards { width: 100%; max-width: 240px; display: flex; flex-direction: column; gap: 6px; }
.v2-style-preview-header { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; color: var(--color-text); margin-bottom: 2px; }
.v2-style-preview-header svg { stroke: var(--orange); transition: stroke 0.3s; }
.v2-style-term-cards { display: flex; flex-direction: column; gap: 6px; }
.v2-style-term-card { background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 10px; padding: 10px 12px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; cursor: pointer; transition: all 0.3s; }
.v2-style-term-card.is-active { border-color: var(--orange); background: color-mix(in srgb, var(--orange) 3%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--orange) 15%, transparent); }
.v2-style-radio { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--color-border-strong); flex-shrink: 0; transition: all 0.3s; }
.v2-style-radio.is-active { border-color: var(--orange); background: var(--orange); box-shadow: inset 0 0 0 2px var(--color-bg-elevated); }
.v2-style-term-name { font-size: 10px; font-weight: 600; color: var(--color-text); flex: 1; }
.v2-style-term-price { font-size: 11px; font-weight: 800; color: var(--color-text); }
.v2-style-term-desc { font-size: 8px; color: var(--color-text-tertiary); width: 100%; padding-left: 20px; margin-top: -2px; }
.v2-style-preview-footer { font-size: 7px; color: var(--color-text-tertiary); text-align: center; }
.v2-style-controls { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.v2-style-row { display: flex; flex-direction: column; gap: 6px; }
.v2-style-label { font-size: 10px; font-weight: 700; color: var(--color-text); text-transform: uppercase; letter-spacing: 0.05em; }
.v2-style-swatches { display: flex; gap: 8px; }
.v2-style-swatch { width: 26px; height: 26px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: all 0.2s; box-shadow: 0 1px 4px var(--color-overlay-medium); }
.v2-style-swatch.is-active { border-color: var(--color-text); transform: scale(1.15); box-shadow: 0 2px 8px var(--color-overlay-medium); }
.v2-style-segment { display: flex; background: var(--color-bg-inset); border-radius: 8px; border: 1px solid var(--color-border); overflow: hidden; }
.v2-style-segment-btn { flex: 1; padding: 6px 0; font-size: 10px; font-weight: 600; color: var(--color-text-secondary); text-align: center; border: none; background: none; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.v2-style-segment-btn.is-active { background: var(--color-bg-inverse); color: var(--color-text-inverse); }
.v2-style-footer { padding: 0 14px 8px; display: flex; justify-content: flex-end; }
.v2-style-footer-btn { display: inline-flex; align-items: center; justify-content: center; gap: 5px; padding: 6px 18px; background: var(--orange); color: var(--color-text-inverse); border-radius: 6px; font-size: 10px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.v2-style-footer-btn:hover { background: var(--orange-dark); }
.v2-style-preview.is-modal { background: var(--color-overlay-heavy); backdrop-filter: blur(3px); }
.v2-style-preview.is-modal .v2-style-preview-cards { background: var(--color-bg-elevated); border-radius: 14px; padding: 14px; box-shadow: 0 8px 32px var(--color-overlay-medium); }
.v2-style-preview.is-drawer { justify-content: flex-end; align-items: stretch; padding: 0; }
.v2-style-preview.is-drawer .v2-style-preview-cards { max-width: 200px; background: var(--color-bg-elevated); padding: 14px; border-left: 1px solid var(--color-border); border-radius: 0; height: 100%; justify-content: center; box-shadow: -4px 0 20px var(--color-overlay-light); }

/* ═══ STEP INDICATOR ═══ */
.v2-step-indicator { position: absolute; bottom: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 6px 12px; background: var(--color-glass-bg-heavy); border-top: 1px solid var(--color-border); z-index: 15; }
.v2-step-dots { display: flex; gap: 5px; }
.v2-step-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-border-strong); transition: all 0.3s; }
.v2-step-dot.is-active { background: var(--color-info-text); transform: scale(1.3); }
.v2-step-dot.is-done { background: var(--primary); }
.v2-step-label { font-size: 10px; font-weight: 600; color: var(--color-text-secondary); }

/* ═══ STORE HEADER ═══ */
.v2-store { height: 100%; display: flex; flex-direction: column; background: var(--color-bg-elevated); overflow: visible; }
.v2-store-header { display: flex; align-items: center; justify-content: space-between; padding: 8px 16px; border-bottom: 1px solid var(--color-border); background: var(--color-bg-elevated); }
.v2-store-header--checkout { background: var(--color-bg-alt); }
.v2-store-logo { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 800; color: var(--color-text); }
.v2-store-nav { display: flex; gap: 12px; font-size: 10px; font-weight: 600; color: var(--color-text-secondary); }
.v2-store-icons { display: flex; align-items: center; gap: 8px; }
.v2-store-breadcrumb { font-size: 9px; color: var(--color-text-tertiary); padding: 6px 16px; border-bottom: 1px solid var(--color-border-subtle); }
.v2-checkout-secure { display: flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; color: var(--primary); }

/* ═══ PDP ═══ */
.v2-pdp-layout { flex: 1; display: flex; gap: 16px; padding: 12px 16px; overflow: visible; }
.v2-pdp-image { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.v2-pdp-img-main { flex: 1; background: var(--color-bg-inset); border-radius: 8px; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; min-height: 80px; overflow: hidden; }
.v2-pdp-product-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-pdp-thumbs { display: flex; gap: 4px; }
.v2-pdp-thumb { width: 32px; height: 32px; background: var(--color-border-subtle); border-radius: 4px; border: 1px solid var(--color-border); overflow: hidden; }
.v2-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-pdp-thumb.active { border-color: var(--color-info-text); }
.v2-pdp-info { flex: 1; display: flex; flex-direction: column; gap: 4px; overflow: visible; }
.v2-pdp-title { font-size: 14px; font-weight: 800; color: var(--color-text); letter-spacing: -0.02em; }
.v2-pdp-price { font-size: 16px; font-weight: 800; color: var(--color-text); }
.v2-pdp-rating { font-size: 9px; color: var(--color-text-secondary); display: flex; align-items: center; gap: 4px; }
.v2-stars { color: var(--accent-warm); font-size: 10px; }
.v2-pdp-desc-skel { margin-top: 4px; }
.v2-pdp-add-btn { padding: 8px 16px; background: var(--color-info-text); color: var(--color-text-inverse); border-radius: 8px; font-size: 11px; font-weight: 700; text-align: center; cursor: pointer; margin-top: 6px; overflow: visible; }
.v2-pdp-add-btn:hover { background: var(--color-blue-dark); }

/* Umbrella Widget */
.v2-umb-widget { border: 1px solid var(--color-border); border-radius: 8px; padding: 8px 10px; margin-top: 6px; background: var(--color-bg-alt); }
.v2-umb-widget-header { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: var(--color-text); margin-bottom: 6px; }
.v2-umb-option { display: flex; align-items: center; gap: 6px; padding: 6px 8px; border: 1px solid var(--color-border); border-radius: 6px; margin-bottom: 4px; background: var(--color-bg-elevated); cursor: pointer; }
.v2-umb-option.is-selected { border-color: var(--color-info-text); background: color-mix(in srgb, var(--color-info-text) 3%, transparent); }
.v2-umb-radio { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--color-border-strong); flex-shrink: 0; }
.v2-umb-radio.is-active { border-color: var(--color-info-text); background: var(--color-info-text); box-shadow: inset 0 0 0 2px var(--color-bg-elevated); }
.v2-umb-opt-name { font-size: 9px; font-weight: 600; color: var(--color-text); flex: 1; }
.v2-umb-opt-price { font-size: 10px; font-weight: 800; color: var(--color-text); }
.v2-umb-powered { font-size: 7px; color: var(--color-text-tertiary); text-align: center; margin-top: 2px; }

/* PDP Upsell Modal */
.v2-pdp-upsell-modal { position: absolute; inset: 0; background: var(--color-overlay-backdrop); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 20; }
.v2-pdp-upsell-card { background: var(--color-bg-elevated); border-radius: 14px; box-shadow: 0 12px 48px var(--color-overlay-medium); max-width: 440px; width: 94%; display: flex; overflow: hidden; }
.v2-upsell-img { width: 42%; min-height: 260px; background-size: cover; background-position: center; flex-shrink: 0; }
.v2-upsell-body { flex: 1; padding: 14px 16px; display: flex; flex-direction: column; }
.v2-upsell-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 7px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.v2-upsell-heading { font-size: 12px; font-weight: 800; color: var(--color-text); margin-bottom: 2px; line-height: 1.3; }
.v2-upsell-sub { font-size: 8px; color: var(--color-text-secondary); margin-bottom: 8px; }
.v2-upsell-covered-title { font-size: 8px; font-weight: 700; color: var(--color-text); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.3px; }
.v2-upsell-covered-list { margin-bottom: 8px; }
.v2-upsell-covered-item { display: flex; align-items: center; gap: 4px; font-size: 8px; color: var(--color-text-secondary); margin-bottom: 2px; line-height: 1.4; }
.v2-upsell-plans { margin-bottom: 8px; }
.v2-upsell-plan { display: flex; align-items: center; gap: 6px; padding: 6px 8px; border: 1px solid var(--color-border); border-radius: 6px; margin-bottom: 4px; background: var(--color-bg-elevated); cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.v2-upsell-plan:hover { border-color: var(--color-border-strong); }
.v2-upsell-plan.is-selected { border-color: var(--orange); background: color-mix(in srgb, var(--orange) 4%, transparent); }
.v2-upsell-plan-radio { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--color-border-strong); flex-shrink: 0; transition: border-color 0.15s, background 0.15s; }
.v2-upsell-plan.is-selected .v2-upsell-plan-radio { border-color: var(--orange); background: var(--orange); box-shadow: inset 0 0 0 2px var(--color-bg-elevated); }
.v2-upsell-plan-info { flex: 1; display: flex; flex-direction: column; }
.v2-upsell-plan-name { font-size: 9px; font-weight: 700; color: var(--color-text); }
.v2-upsell-plan-detail { font-size: 7px; color: var(--color-text-tertiary); }
.v2-upsell-plan-price { font-size: 10px; font-weight: 800; color: var(--color-text); }
.v2-pdp-upsell-btn-primary { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 8px 16px; background: var(--orange); color: var(--color-text-inverse); border-radius: 8px; font-size: 10px; font-weight: 700; cursor: pointer; margin-bottom: 6px; transition: background 0.15s; }
.v2-pdp-upsell-btn-primary:hover { background: var(--orange-dark); }
.v2-pdp-upsell-btn-ghost { padding: 6px 16px; background: none; border: none; border-radius: 8px; font-size: 9px; font-weight: 600; color: var(--color-text-tertiary); cursor: pointer; text-align: center; }
.v2-pdp-upsell-btn-ghost:hover { color: var(--color-text-secondary); }

/* ═══ CART DRAWER ═══ */
.v2-cart-badge { background: var(--color-info-text); color: var(--color-text-inverse); font-size: 8px; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.v2-cart-drawer-bg { flex: 1; position: relative; overflow: hidden; }
.v2-pdp-muted { opacity: 0.3; pointer-events: none; padding: 0; }
.v2-cart-overlay { position: absolute; inset: 0; background: var(--color-overlay-medium); }
.v2-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid var(--color-border); font-size: 12px; font-weight: 700; color: var(--color-text); }
.v2-drawer-close { font-size: 18px; color: var(--color-text-tertiary); cursor: default; line-height: 1; }
.v2-drawer-items { padding: 10px 14px; }
.v2-drawer-item { display: flex; gap: 8px; align-items: flex-start; }
.v2-drawer-item-img { width: 36px; height: 36px; background: var(--color-bg-inset); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--color-border); }
.v2-drawer-item-info { flex: 1; min-width: 0; }
.v2-drawer-item-name { font-size: 10px; font-weight: 700; color: var(--color-text); }
.v2-drawer-item-meta { font-size: 8px; color: var(--color-text-tertiary); }
.v2-drawer-item-price { font-size: 10px; font-weight: 700; color: var(--color-text); }
.v2-drawer-upsell { margin: 10px 14px; padding: 10px; border: 1.5px solid var(--orange); border-radius: 8px; background: var(--color-orange-tint); }
.v2-drawer-upsell-header { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: var(--color-text); margin-bottom: 4px; }
.v2-drawer-upsell-desc { font-size: 8px; color: var(--color-text-secondary); margin-bottom: 6px; line-height: 1.4; }
.v2-drawer-upsell-row { display: flex; align-items: center; justify-content: space-between; }
.v2-drawer-upsell-price { font-size: 11px; font-weight: 800; color: var(--orange); }
.v2-drawer-upsell-add { padding: 4px 14px; background: var(--orange); color: var(--color-text-inverse); border-radius: 6px; font-size: 10px; font-weight: 700; cursor: pointer; }
.v2-drawer-covered { margin: 10px 14px; padding: 10px; border: 1.5px solid var(--primary); border-radius: 8px; background: color-mix(in srgb, var(--primary) 4%, transparent); display: flex; align-items: center; justify-content: center; flex-direction: column; }
.v2-drawer-covered-header { display: flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 600; color: var(--color-text); }
.v2-drawer-covered-remove { font-size: 9px; color: var(--color-danger-text); text-decoration: underline; cursor: pointer; margin-top: 4px; text-align: right; width: 100%; }
.v2-drawer-footer { margin-top: auto; padding: 10px 14px; border-top: 1px solid var(--color-border); margin-bottom: 28px; }
.v2-cart-drawer { position: absolute; top: 0; right: 0; bottom: 0; width: 280px; background: var(--color-bg-elevated); border-left: 1px solid var(--color-border); display: flex; flex-direction: column; z-index: 5; animation: v2DrawerSlide 0.4s ease both; box-shadow: -4px 0 20px var(--color-overlay-light); padding-bottom: 28px; }
.v2-drawer-subtotal { display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; color: var(--color-text); margin-bottom: 8px; }
.v2-drawer-checkout-btn { padding: 8px; background: var(--color-info-text); color: var(--color-text-inverse); border-radius: 8px; font-size: 11px; font-weight: 700; text-align: center; cursor: pointer; }

/* ═══ CHECKOUT ═══ */
.v2-store--co-bg { background: var(--color-bg-elevated); }
.v2-co-topbar { display: flex; align-items: center; justify-content: space-between; padding: 8px 16px; border-bottom: 1px solid var(--color-border); }
.v2-co-breadcrumb { display: flex; align-items: center; gap: 3px; font-size: 8px; color: var(--color-text-tertiary); }
.v2-co-bc-done { color: var(--color-text-secondary); }
.v2-co-bc-active { color: var(--color-text); font-weight: 700; }
.v2-checkout-layout { flex: 1; display: flex; overflow: hidden; }
.v2-checkout-form { flex: 1; padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; border-right: 1px solid var(--color-border); }
.v2-co-field-group { display: flex; flex-direction: column; gap: 4px; }
.v2-co-field-label { font-size: 10px; font-weight: 800; color: var(--color-text); }
.v2-co-field-hint { font-size: 8px; color: var(--color-text-tertiary); }
.v2-co-field-row { display: flex; align-items: center; gap: 6px; padding: 5px 8px; border: 1px solid var(--color-border); border-radius: 5px; background: var(--color-bg-elevated); }
.v2-co-field-group .v2-co-field-row + .v2-co-field-row { border-top: 0; border-radius: 0 0 5px 5px; margin-top: -1px; }
.v2-co-field-group .v2-co-field-row:first-of-type:not(:last-of-type) { border-radius: 5px 5px 0 0; }
.v2-co-input { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.v2-co-input-label { font-size: 7px; color: var(--color-text-tertiary); line-height: 1.2; }
.v2-co-input-value { font-size: 9px; color: var(--color-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v2-co-section-edit { font-size: 8px; color: var(--color-info-text); font-weight: 600; cursor: default; flex-shrink: 0; }
.v2-co-card-display { border: 1px solid var(--color-border); border-radius: 5px; overflow: hidden; }
.v2-co-card-row { display: flex; align-items: center; gap: 6px; padding: 5px 8px; font-size: 9px; color: var(--color-text-secondary); border-bottom: 1px solid var(--color-border); }
.v2-co-card-row:last-child { border-bottom: none; }
.v2-co-card-num { flex: 1; font-size: 9px; color: var(--color-text); letter-spacing: 0.5px; }
.v2-co-card-exp { font-size: 8px; color: var(--color-text-tertiary); }
.v2-co-card-cvv { font-size: 7px; color: var(--color-text-tertiary); }
.v2-co-input-mock { flex: 1; font-size: 9px; color: var(--color-text); }
.v2-co-pay-btn { padding: 8px; background: #1773b0; color: var(--color-text-inverse); border-radius: 5px; font-size: 11px; font-weight: 700; text-align: center; cursor: pointer; letter-spacing: 0.3px; }
.v2-co-pay-btn:hover { background: #145f91; }
/* Checkout summary (right) */
.v2-checkout-summary { flex: 0 0 200px; background: var(--color-bg-alt); padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.v2-co-product-row { display: flex; align-items: center; gap: 8px; }
.v2-co-product-thumb { width: 40px; height: 40px; border-radius: 6px; border: 1px solid var(--color-border); overflow: hidden; flex-shrink: 0; background: var(--color-bg-elevated); }
.v2-co-product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-co-qty-badge { width: 14px; height: 14px; border-radius: 50%; background: var(--color-text-secondary); color: var(--color-text-inverse); font-size: 7px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-left: -10px; margin-top: -4px; align-self: flex-start; z-index: 2; }
.v2-co-product-info { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.v2-co-product-name { font-size: 9px; font-weight: 700; color: var(--color-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v2-co-product-variant { font-size: 8px; color: var(--color-text-tertiary); }
.v2-co-product-price { font-size: 9px; font-weight: 600; color: var(--color-text); flex-shrink: 0; }
/* Protection widget */
.v2-co-prot-widget { display: flex; align-items: center; gap: 6px; padding: 7px 8px; border: 1.5px dashed var(--orange); border-radius: 6px; background: var(--color-orange-tint); cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.v2-co-prot-widget:hover { background: var(--color-orange-tint-hover); border-color: var(--orange-dark); }
.v2-co-prot-icon { flex-shrink: 0; }
.v2-co-prot-detail { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.v2-co-prot-name { font-size: 8px; font-weight: 700; color: var(--orange); }
.v2-co-prot-desc { font-size: 7px; color: var(--color-text-tertiary); }
.v2-co-prot-add-price { font-size: 9px; font-weight: 800; color: var(--orange); flex-shrink: 0; }
/* Protection added line */
.v2-co-prot-added { padding: 6px 8px; background: var(--color-tint-blue); border: 1px solid var(--color-chip-blue-border); border-radius: 6px; }
.v2-co-prot-added-row { display: flex; align-items: center; gap: 4px; }
.v2-co-prot-added-name { flex: 1; font-size: 8px; font-weight: 600; color: var(--color-info-text); }
.v2-co-prot-added-price { font-size: 9px; font-weight: 700; color: var(--color-info-text); }
/* Discount + totals */
.v2-co-discount-row { display: flex; gap: 4px; }
.v2-co-discount-input { flex: 1; padding: 5px 8px; border: 1px solid var(--color-border-strong); border-radius: 5px; font-size: 8px; color: var(--color-text-tertiary); background: var(--color-bg-elevated); }
.v2-co-discount-btn { padding: 5px 10px; border: 1px solid var(--color-border-strong); border-radius: 5px; font-size: 8px; font-weight: 600; color: var(--color-text-tertiary); background: var(--color-bg-alt); cursor: default; }
.v2-co-totals-divider { height: 1px; background: var(--color-border); }
.v2-co-totals-row { display: flex; justify-content: space-between; font-size: 9px; color: var(--color-text-secondary); }
.v2-co-free { color: var(--color-text-secondary); }
.v2-co-total-row { font-size: 12px; font-weight: 800; color: var(--color-text); padding-top: 2px; }
.v2-co-total-amount { display: flex; align-items: baseline; gap: 4px; }
.v2-co-currency { font-size: 8px; font-weight: 400; color: var(--color-text-tertiary); }

/* ═══ CONFIRMATION ═══ */
.v2-confirm-page { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 16px; text-align: center; }
.v2-confirm-icon { margin-bottom: 4px; }
.v2-confirm-title { font-size: 16px; font-weight: 800; color: var(--color-text); }
.v2-confirm-order { font-size: 10px; color: var(--color-text-secondary); }
.v2-confirm-items { width: 100%; max-width: 280px; margin-top: 8px; }
.v2-confirm-item { display: flex; justify-content: space-between; font-size: 10px; color: var(--color-text-secondary); padding: 4px 0; border-bottom: 1px solid var(--color-border-subtle); }
.v2-confirm-item--prot { color: var(--color-info-text); font-weight: 600; }
.v2-confirm-upsell { width: 100%; max-width: 280px; margin-top: 8px; padding: 10px; border: 1.5px solid var(--orange); border-radius: 8px; background: var(--color-orange-tint); }
.v2-confirm-upsell-text { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; color: var(--color-text); margin-bottom: 6px; }
.v2-confirm-upsell-btn { padding: 6px 14px; background: var(--orange); color: var(--color-text-inverse); border-radius: 6px; font-size: 10px; font-weight: 700; cursor: pointer; text-align: center; }
.v2-confirm-skip-link { font-size: 9px; color: var(--color-text-secondary); text-decoration: underline; cursor: pointer; margin-top: 4px; }
.v2-confirm-skip-link:hover { color: var(--color-text-secondary); }
.v2-confirm-continue { padding: 8px 28px; background: var(--orange); color: var(--color-text-inverse); border-radius: 8px; font-size: 11px; font-weight: 700; cursor: pointer; margin-top: 8px; }

/* Protection mini-checkout */
.v2-prot-checkout { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 16px; text-align: center; }
.v2-prot-checkout-title { font-size: 14px; font-weight: 800; color: var(--color-text); }
.v2-prot-checkout-item { display: flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 8px; font-size: 10px; color: var(--color-text); font-weight: 600; width: 100%; max-width: 260px; }
.v2-prot-checkout-price { margin-left: auto; font-weight: 800; }
.v2-prot-checkout-card { display: flex; align-items: center; gap: 6px; font-size: 9px; color: var(--color-text-secondary); }
.v2-prot-checkout-btn { padding: 8px 28px; background: var(--color-info-text); color: var(--color-text-inverse); border-radius: 8px; font-size: 11px; font-weight: 700; cursor: pointer; }
.v2-prot-confirmed { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 16px; text-align: center; }

/* ═══ GMAIL-STYLE EMAIL ═══ */
.v2-gmail { height: 100%; display: flex; flex-direction: column; background: var(--color-bg-alt); }
.v2-gmail-topbar { display: flex; align-items: center; gap: 10px; padding: 6px 12px; background: var(--color-bg-elevated); border-bottom: 1px solid var(--color-border); }
.v2-gmail-logo { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.v2-gmail-search { flex: 1; max-width: 280px; margin: 0 auto; display: flex; align-items: center; gap: 6px; background: #eaf1fb; border-radius: 20px; padding: 5px 12px; font-size: 10px; color: #5f6368; }
.v2-gmail-avatar { width: 22px; height: 22px; border-radius: 50%; background: #1a73e8; color: var(--color-text-inverse); font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.v2-gmail-body { flex: 1; display: flex; overflow: hidden; }
.v2-gmail-sidebar { width: 100px; padding: 6px 4px; display: flex; flex-direction: column; gap: 1px; flex-shrink: 0; }
.v2-gmail-compose { padding: 6px 10px; background: #c2e7ff; border-radius: 14px; font-size: 9px; font-weight: 600; color: #001d35; text-align: center; margin-bottom: 6px; cursor: default; }
.v2-gmail-nav-item { display: flex; align-items: center; gap: 5px; padding: 4px 8px; border-radius: 14px; font-size: 9px; font-weight: 500; color: #444746; cursor: default; }
.v2-gmail-nav-active { background: #d3e3fd; color: #001d35; font-weight: 700; }
.v2-gmail-badge { margin-left: auto; font-size: 8px; font-weight: 700; color: #001d35; }
.v2-gmail-main { flex: 1; padding: 6px 10px; overflow-y: auto; display: flex; flex-direction: column; gap: 0; }
.v2-gmail-email-header { padding: 6px 10px; background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 8px 8px 0 0; }
.v2-gmail-email-from { font-size: 10px; color: #5f6368; }
.v2-gmail-email-from strong { color: #202124; }
.v2-gmail-email-subj { font-size: 12px; font-weight: 700; color: #202124; margin-top: 2px; }
.v2-gmail-email-date { font-size: 8px; color: #5f6368; margin-top: 1px; }
.v2-gmail-email-body { flex: 1; background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-top: none; border-radius: 0 0 8px 8px; padding: 10px 14px; display: flex; flex-direction: column; gap: 6px; }
.v2-email-logo { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 800; color: var(--color-text); }
.v2-email-heading { font-size: 13px; font-weight: 800; color: var(--color-text); }
.v2-email-text { font-size: 9px; color: var(--color-text-secondary); line-height: 1.5; }
.v2-email-card { border: 1px solid var(--color-border); border-radius: 8px; padding: 8px; background: var(--color-bg-alt); }
.v2-email-card-title { display: flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 700; color: var(--color-text); }
.v2-email-card-price { font-size: 13px; font-weight: 800; color: var(--color-text); margin: 3px 0; }
.v2-email-card-features { display: flex; flex-wrap: wrap; gap: 6px; font-size: 7px; color: var(--color-text-secondary); }
.v2-email-cta { padding: 7px 18px; background: var(--orange); color: var(--color-text-inverse); border-radius: 8px; font-size: 10px; font-weight: 700; text-align: center; cursor: pointer; }
.v2-email-skip-link { font-size: 9px; color: var(--color-text-secondary); text-decoration: underline; text-align: center; cursor: pointer; }
.v2-email-skip-link:hover { color: var(--color-text-secondary); }
.v2-email-footer { font-size: 7px; color: var(--color-text-tertiary); text-align: center; }

/* ═══ JOURNEY COMPLETE MODAL (overlay on email screen) ═══ */
.v2-journey-complete-overlay { display: none; position: absolute; inset: 0; z-index: 20; background: var(--color-overlay-heavy); backdrop-filter: blur(4px); align-items: center; justify-content: center; }
.v2-journey-complete-overlay.is-visible { display: flex; }

/* ═══ CLAIMS SCREENS ═══ */
.v2-store-hero-banner { background: linear-gradient(135deg, #1e3a5f, var(--secondary)); padding: 20px 16px; display: flex; align-items: center; }
.v2-store-hero-text { color: var(--color-text-inverse); }
.v2-hero-tag { font-size: 8px; font-weight: 700; color: var(--color-blue-dark); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.v2-hero-title { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
.v2-hero-sub { font-size: 10px; color: var(--color-text-tertiary); margin-top: 2px; }
.v2-store-products-row { display: flex; gap: 10px; padding: 10px 16px; }
.v2-store-product-card { flex: 1; border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; background: var(--color-bg-elevated); }
.v2-sp-img { aspect-ratio: 4/3; background: var(--color-bg-inset); }
.v2-sp-name { font-size: 10px; font-weight: 700; color: var(--color-text); padding: 6px 8px 0; }
.v2-sp-price { font-size: 10px; font-weight: 800; color: var(--color-text); padding: 0 8px 6px; }
.v2-account-btn { display: flex; align-items: center; gap: 3px; font-size: 10px; font-weight: 600; color: var(--color-text-secondary); cursor: pointer; padding: 3px 8px; border-radius: 6px; background: var(--color-bg-inset); }
.v2-account-page { flex: 1; padding: 12px 16px; }
.v2-account-title { font-size: 14px; font-weight: 800; color: var(--color-text); margin-bottom: 10px; }
.v2-order-list { display: flex; flex-direction: column; gap: 6px; }
.v2-order-row { display: flex; align-items: center; gap: 8px; padding: 8px 10px; background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 8px; cursor: pointer; transition: all 0.2s; }
.v2-order-row:hover { border-color: var(--color-border-strong); }
.v2-order-row--dim { opacity: 0.5; cursor: default; }
.v2-order-thumb { width: 28px; height: 28px; border-radius: 6px; background: var(--color-bg-inset); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-order-id { font-size: 10px; font-weight: 700; color: var(--color-text); width: 60px; }
.v2-order-date { font-size: 9px; color: var(--color-text-tertiary); width: 70px; }
.v2-order-product { font-size: 9px; color: var(--color-text-secondary); flex: 1; }
.v2-order-total { font-size: 10px; font-weight: 700; color: var(--color-text); width: 60px; text-align: right; }
.v2-order-protected { display: flex; align-items: center; gap: 3px; font-size: 8px; font-weight: 700; color: var(--primary); }
.v2-order-protected--none { color: var(--color-border-strong); }

/* ═══ ORDER DETAIL ═══ */
.v2-order-detail { flex: 1; padding: 10px 16px; }
.v2-od-back { display: flex; align-items: center; gap: 3px; font-size: 10px; color: var(--color-text-secondary); cursor: pointer; margin-bottom: 6px; }
.v2-od-title { font-size: 14px; font-weight: 800; color: var(--color-text); margin-bottom: 10px; }
.v2-od-grid { display: flex; flex-direction: column; gap: 8px; }
.v2-od-product-info { display: flex; align-items: center; gap: 10px; padding: 10px; background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 8px; }
.v2-od-product-img { width: 48px; height: 48px; background: var(--color-bg-inset); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-od-product-name { font-size: 11px; font-weight: 700; color: var(--color-text); }
.v2-od-product-meta { font-size: 9px; color: var(--color-text-secondary); }
.v2-od-protection-card { padding: 10px; background: color-mix(in srgb, var(--primary) 4%, transparent); border: 1.5px solid var(--primary); border-radius: 8px; }
.v2-od-prot-header { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--color-text); margin-bottom: 6px; }
.v2-od-prot-badge { font-size: 8px; font-weight: 700; color: var(--primary); background: var(--glow-primary); padding: 1px 5px; border-radius: 4px; margin-left: auto; }
.v2-od-prot-details { display: flex; flex-direction: column; gap: 3px; margin-bottom: 8px; }
.v2-od-prot-row { display: flex; justify-content: space-between; font-size: 9px; color: var(--color-text-secondary); }
.v2-od-prot-active { color: var(--primary); font-weight: 700; }
.v2-od-file-claim-btn { padding: 6px 14px; background: var(--orange); color: var(--color-text-inverse); border-radius: 6px; font-size: 10px; font-weight: 700; text-align: center; cursor: pointer; }

/* ═══ CLAIM FORM ═══ */
.v2-claim-form { flex: 1; padding: 12px 16px; max-width: 400px; margin: 0 auto; }
.v2-claim-form-title { font-size: 14px; font-weight: 800; color: var(--color-text); }
.v2-claim-form-subtitle { font-size: 10px; color: var(--color-text-secondary); margin-bottom: 8px; }
.v2-claim-field { margin-bottom: 6px; }
.v2-claim-label { font-size: 9px; font-weight: 700; color: var(--color-text); margin-bottom: 3px; }
.v2-claim-select { padding: 5px 8px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 6px; font-size: 10px; color: var(--color-text-secondary); display: flex; justify-content: space-between; align-items: center; }
.v2-claim-input { padding: 5px 8px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 6px; font-size: 10px; color: var(--color-text-secondary); }
.v2-claim-textarea { padding: 5px 8px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 6px; font-size: 9px; color: var(--color-text-secondary); line-height: 1.4; min-height: 36px; }
.v2-claim-upload { display: flex; align-items: center; gap: 6px; padding: 10px; border: 1.5px dashed var(--color-border-strong); border-radius: 6px; font-size: 10px; color: var(--color-text-tertiary); cursor: pointer; justify-content: center; }
.v2-claim-uploaded { display: flex; align-items: center; gap: 6px; padding: 6px 8px; background: color-mix(in srgb, var(--primary) 6%, transparent); border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent); border-radius: 6px; font-size: 9px; color: var(--color-text); }
.v2-claim-thumb { width: 24px; height: 24px; background: var(--color-tint-green); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.v2-claim-submit-btn { padding: 8px; background: var(--orange); color: var(--color-text-inverse); border-radius: 8px; font-size: 11px; font-weight: 700; text-align: center; cursor: pointer; margin-top: 6px; }

/* ═══ PROCESSING ═══ */
.v2-process-steps { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; text-align: left; }
.v2-process-step { display: flex; align-items: center; gap: 8px; font-size: 10px; color: var(--color-text-secondary); }
.v2-process-step.is-done { color: var(--primary); }
.v2-proc-check { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--color-border-strong); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.v2-process-step.is-done .v2-proc-check { border-color: var(--primary); background: var(--primary); }
.v2-process-step.is-done .v2-proc-check::after { content: ''; display: block; width: 5px; height: 8px; border: solid var(--color-bg-elevated); border-width: 0 2px 2px 0; transform: rotate(45deg) translateY(-1px); }

/* ═══ GIFT CARD ═══ */
.v2-giftcard-page { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 16px; text-align: center; }
.v2-gc-title { font-size: 16px; font-weight: 800; color: var(--color-text); }
.v2-gc-subtitle { font-size: 11px; color: var(--color-text-secondary); }
.v2-gc-card { width: 100%; max-width: 260px; background: linear-gradient(135deg, var(--color-tint-blue), var(--color-tint-blue-light)); border: 1px solid var(--color-chip-blue-border); border-radius: 12px; padding: 14px; margin-top: 6px; }
.v2-gc-card-header { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: var(--color-text); margin-bottom: 6px; }
.v2-gc-amount { font-size: 24px; font-weight: 800; color: var(--color-text); letter-spacing: -0.02em; }
.v2-gc-code { font-size: 11px; font-weight: 600; color: var(--color-info-text); font-family: 'SF Mono', Consolas, monospace; margin-top: 4px; }
.v2-gc-email { font-size: 9px; color: var(--color-text-secondary); margin-top: 2px; }
.v2-restart-link { font-size: 11px; color: var(--color-text-secondary); text-decoration: underline; cursor: pointer; margin-top: 4px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
    .ep-hiw { padding: 4rem 0; }
    .ep-hiw-timeline { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .ep-hiw-timeline::-webkit-scrollbar { display: none; }
    .ep-hiw-tab { min-width: 0; padding: 0.875rem 1rem; }
    .ep-hiw-tab-sub { display: none; }
    .ep-hiw-arrow { width: 28px; }
    .ep-hiw-arrow svg { width: 16px; height: 16px; }
    .ep-shop-sidebar { width: 160px; padding: 12px 10px; }
    .ep-shop-sidebar .ep-shop-meta { display: none; }
    .ep-hiw-dash-side { width: 110px; }
    .ep-pb-content { flex-direction: column; }
    .v2-cart-drawer { width: 240px; }
    .v2-checkout-summary { flex: 0 0 160px; }
    .v2-gmail-sidebar { width: 70px; }
    .v2-gmail-compose { font-size: 8px; padding: 5px 6px; }
    .v2-gmail-nav-item { font-size: 8px; padding: 3px 4px; }
    .v2-pdp-upsell-card { max-width: 380px; }
    .v2-upsell-img { width: 36%; min-height: 200px; }
    .ep-container { padding: 0 1rem; }
}
@media (max-width: 480px) {
    /* Timeline tabs */
    .ep-hiw-tab { padding: 0.75rem 0.875rem; gap: 0.5rem; }
    .ep-hiw-tab-num { width: 28px; height: 28px; font-size: 12px; }
    .ep-hiw-tab-label { font-size: 12px; }
    .ep-hiw-arrow { width: 20px; }

    /* Browser bar */
    .ep-browser-bar { padding: 8px 10px; }
    .ep-hiw-url { font-size: 10px; padding: 4px 8px; }
    .ep-hiw-url span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 120px; display: inline-block; }

    /* Shopify listing */
    .ep-shop-sidebar { display: none; }
    .ep-shop-mobile-install { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-bottom: 1px solid var(--color-border); }
    .ep-shop-mobile-install .ep-shop-install-btn { width: auto; padding: 6px 14px; margin-top: 0; flex-shrink: 0; }
    .ep-shop-body { flex-direction: column; }
    .ep-shop-topbar-search { display: none; }
    .ep-shop-main { padding: 10px 12px; gap: 8px; }

    /* Dashboard */
    .ep-hiw-dash-side { display: none; }
    .ep-hiw-dash { flex-direction: column; }

    /* PDP */
    .v2-pdp-layout { flex-direction: column; gap: 8px; padding: 8px 12px; }
    .v2-pdp-image { max-height: 120px; }
    .v2-pdp-thumbs { display: none; }
    .v2-pdp-title { font-size: 12px; }
    .v2-pdp-price { font-size: 13px; }
    .v2-store-nav { display: none; }

    /* Cart drawer */
    .v2-cart-drawer { width: 100%; }

    /* Checkout */
    .v2-checkout-layout { flex-direction: column; }
    .v2-checkout-summary { flex: 0 0 auto; max-height: 120px; overflow-y: auto; }
    .v2-co-breadcrumb { flex-wrap: wrap; }

    /* Upsell modal */
    .v2-pdp-upsell-card { flex-direction: column; }
    .v2-upsell-img { width: 100%; min-height: 100px; max-height: 120px; }

    /* Gmail */
    .v2-gmail-sidebar { display: none; }
    .v2-gmail-search { display: none; }

    /* Modals */
    .v2-picker-modal { max-width: 100%; }
    .ep-hiw-modal { padding: 1.5rem 1.25rem; max-width: 280px; }

    /* Plan builder */
    .ep-pb-header { flex-wrap: wrap; }
    .ep-pb-table .ep-pb-tr { grid-template-columns: 1.5fr 0.6fr 0.8fr; }
    .ep-pb-tr > :nth-child(4),
    .ep-pb-tr > :nth-child(5) { display: none; }
    .v2-style-body { grid-template-columns: 1fr; }
    .v2-style-preview { min-height: 120px; }

    /* Step indicator */
    .v2-step-label { font-size: 8px; }

    /* Claim screens */
    .v2-order-date { display: none; }
    .v2-order-product { display: none; }

    /* SP cart page */
    .v2-sp-cart-page { padding: 10px 12px; }

    /* OEM portal */
    .v2-oem-portal { padding: 14px 16px; }
    .v2-oem-coverage { padding: 10px 14px; }
    .v2-oem-coverage-actions { flex-direction: column; }
    .v2-oem-extend-page { padding: 14px 16px; }
    .v2-oem-terms { grid-template-columns: repeat(2, 1fr); }
}

/* ═══ PRODUCT TYPE PICKER ═══ */
.v2-picker-modal { max-width: 520px; }
.v2-product-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.v2-picker-card { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 16px 10px; border: 1.5px solid var(--color-border); border-radius: 12px; background: var(--color-bg-elevated); cursor: pointer; text-align: center; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; }
.v2-picker-card:hover { border-color: var(--color-border-strong); background: var(--color-bg-alt); }
.v2-picker-card.is-selected { border-color: var(--orange); background: var(--color-orange-tint); box-shadow: 0 0 0 1px color-mix(in srgb, var(--orange) 20%, transparent); }
.v2-picker-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.v2-picker-icon--ep { background: var(--color-orange-tint-medium); color: var(--orange); }
.v2-picker-icon--oem { background: #e0f7fa; color: #0097a7; }
.v2-picker-icon--sp { background: #e8f5e9; color: #2e7d32; }
.v2-picker-name { font-size: 11px; font-weight: 700; color: var(--color-text); line-height: 1.3; }
.v2-picker-desc { font-size: 9px; color: var(--color-text-secondary); line-height: 1.4; }
.v2-picker-card.is-completed { border-color: var(--color-success-border); background: var(--color-tint-green); cursor: default; opacity: 0.65; pointer-events: none; position: relative; }
.v2-picker-card.is-completed:hover { border-color: var(--color-success-border); background: var(--color-tint-green); }
.v2-picker-check { position: absolute; top: 6px; right: 6px; }
@media (max-width: 480px) { .v2-product-picker { grid-template-columns: 1fr; } }

/* ═══ OEM WARRANTY TERM SELECTOR ═══ */
.v2-oem-terms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.v2-oem-term { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 12px 8px; border: 1.5px solid var(--color-border); border-radius: 8px; cursor: pointer; transition: border-color 0.2s, background 0.2s; position: relative; }
.v2-oem-term:hover { border-color: var(--color-border-strong); }
.v2-oem-term.is-selected { border-color: var(--orange); background: var(--color-orange-tint); }
.v2-oem-term-radio { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--color-border-strong); transition: border-color 0.2s, background 0.2s; }
.v2-oem-term-radio.is-active { border-color: var(--orange); background: var(--orange); box-shadow: inset 0 0 0 2px var(--color-bg-elevated); }
.v2-oem-term-label { font-size: 11px; font-weight: 600; color: var(--color-text); }
.v2-oem-term-badge { font-size: 7px; font-weight: 700; color: var(--orange); background: var(--color-orange-tint-medium); padding: 1px 5px; border-radius: 4px; position: absolute; top: -6px; }

/* ═══ OEM SERIAL UPLOAD ═══ */
.v2-oem-counter { font-size: 11px; font-weight: 600; color: var(--color-text-secondary); background: var(--color-bg-inset); padding: 3px 10px; border-radius: 6px; }
.v2-oem-upload-zone { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 28px 20px; border: 2px dashed var(--color-border-strong); border-radius: 12px; cursor: pointer; transition: border-color 0.2s, background 0.2s; margin: 12px 16px; }
.v2-oem-upload-zone:hover { border-color: var(--orange); background: var(--color-orange-tint); }
.v2-oem-upload-text { font-size: 12px; font-weight: 600; color: var(--color-text-secondary); }
.v2-oem-upload-hint { font-size: 9px; color: var(--color-text-tertiary); }
.v2-oem-manual-entry { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--orange); font-weight: 600; cursor: pointer; margin: 0 16px; }
.v2-oem-serial-table { margin: 0 16px; border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; }
.v2-oem-serial-row { display: grid; grid-template-columns: 1fr 1fr auto; padding: 8px 12px; font-size: 10px; color: var(--color-text-secondary); border-bottom: 1px solid var(--color-bg-inset); align-items: center; }
.v2-oem-serial-row--head { font-weight: 700; color: var(--color-text); background: var(--color-bg-alt); font-size: 9px; text-transform: uppercase; letter-spacing: 0.05em; }
.v2-oem-serial-row--more { grid-template-columns: 1fr; text-align: center; color: var(--color-text-tertiary); font-style: italic; border-bottom: none; }
.v2-oem-badge { font-size: 9px; font-weight: 600; padding: 2px 8px; border-radius: 4px; }
.v2-oem-badge--active { background: var(--color-tint-green); color: var(--color-green-dark); }

/* ═══ OEM WARRANTY BADGE ON PDP ═══ */
.v2-oem-warranty-badge { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--color-success-border); border-radius: 8px; background: var(--color-tint-green); margin: 8px 0; }
.v2-oem-badge-icon { flex-shrink: 0; }
.v2-oem-badge-text { display: flex; flex-direction: column; gap: 2px; }
.v2-oem-badge-title { font-size: 11px; font-weight: 700; color: var(--color-text); }
.v2-oem-badge-sub { font-size: 9px; color: var(--color-text-secondary); }

/* ═══ OEM PORTAL ═══ */
.v2-oem-portal { padding: 20px 24px; max-width: 400px; margin: 0 auto; }
.v2-oem-portal-title { font-size: 16px; font-weight: 800; color: var(--color-text); margin-bottom: 4px; }
.v2-oem-portal-sub { font-size: 11px; color: var(--color-text-secondary); margin-bottom: 16px; }
.v2-oem-portal-form { display: flex; flex-direction: column; gap: 8px; }
.v2-store-nav-active { color: var(--color-info-text); font-weight: 700; }

/* ═══ OEM COVERAGE DASHBOARD ═══ */
.v2-oem-coverage { padding: 16px 20px; max-width: 480px; margin: 0 auto; }
.v2-oem-coverage-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.v2-oem-coverage-product { display: flex; align-items: center; gap: 10px; }
.v2-oem-coverage-name { font-size: 13px; font-weight: 700; color: var(--color-text); }
.v2-oem-coverage-serial { font-size: 10px; color: var(--color-text-tertiary); font-family: monospace; }
.v2-oem-coverage-status { font-size: 10px; font-weight: 700; color: var(--color-green-dark); background: var(--color-tint-green); padding: 3px 10px; border-radius: 6px; }
.v2-oem-coverage-bar-wrap { margin-bottom: 12px; }
.v2-oem-coverage-bar { height: 6px; background: var(--color-border); border-radius: 3px; overflow: hidden; }
.v2-oem-coverage-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 3px; transition: width 1s ease; }
.v2-oem-coverage-remaining { font-size: 10px; color: var(--primary); font-weight: 600; margin-top: 4px; }
.v2-oem-coverage-details { display: flex; flex-direction: column; gap: 6px; padding: 10px 0; border-top: 1px solid var(--color-bg-inset); border-bottom: 1px solid var(--color-bg-inset); margin-bottom: 12px; }
.v2-oem-coverage-actions { display: flex; gap: 8px; }
.v2-oem-action-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px; border-radius: 8px; font-size: 11px; font-weight: 700; cursor: pointer; transition: opacity 0.2s; }
.v2-oem-action-btn:hover { opacity: 0.85; }
.v2-oem-action-claim { background: var(--color-bg-inverse); color: var(--color-text-inverse); }
.v2-oem-action-extend { background: var(--color-bg-elevated); color: var(--color-text); border: 1.5px solid var(--color-border); }

/* ═══ OEM EXTEND COVERAGE ═══ */
.v2-oem-extend-page { padding: 20px 24px; max-width: 440px; margin: 0 auto; }
.v2-oem-extend-title { font-size: 16px; font-weight: 800; color: var(--color-text); margin-bottom: 4px; }
.v2-oem-extend-sub { font-size: 11px; color: var(--color-text-secondary); margin-bottom: 12px; line-height: 1.5; }
.v2-oem-extend-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.v2-oem-extend-card { display: flex; align-items: center; gap: 10px; padding: 12px; border: 1.5px solid var(--color-border); border-radius: 10px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.v2-oem-extend-card.is-selected { border-color: var(--orange); background: var(--color-orange-tint); }
.v2-oem-extend-card-info { flex: 1; }
.v2-oem-extend-card-name { font-size: 12px; font-weight: 700; color: var(--color-text); }
.v2-oem-extend-card-desc { font-size: 9px; color: var(--color-text-secondary); margin-top: 2px; }
.v2-oem-extend-card-price { font-size: 14px; font-weight: 800; color: var(--color-text); }

/* ═══ SP PRICE SLIDER ═══ */
.v2-sp-price-toggle { display: flex; gap: 0; border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; margin-bottom: 10px; }
.v2-sp-price-type { flex: 1; padding: 6px 12px; font-size: 11px; font-weight: 600; color: var(--color-text-secondary); background: var(--color-bg-elevated); border: none; cursor: pointer; font-family: inherit; transition: background 0.2s, color 0.2s; }
.v2-sp-price-type.is-active { background: var(--color-bg-inverse); color: var(--color-text-inverse); }
.v2-sp-price-input { display: flex; align-items: baseline; gap: 2px; margin-bottom: 10px; }
.v2-sp-currency { font-size: 14px; font-weight: 700; color: var(--color-text-tertiary); }
.v2-sp-amount { font-size: 28px; font-weight: 800; color: var(--color-text); letter-spacing: -0.02em; }
.v2-sp-slider-wrap { margin-bottom: 6px; }
.v2-sp-slider { width: 100%; height: 4px; -webkit-appearance: none; appearance: none; background: var(--color-border); border-radius: 2px; outline: none; }
.v2-sp-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--orange); cursor: pointer; box-shadow: 0 1px 4px var(--color-overlay-medium); }
.v2-sp-slider-labels { display: flex; justify-content: space-between; font-size: 9px; color: var(--color-text-tertiary); margin-top: 4px; }

/* ═══ SP WIDGET PREVIEW ═══ */
.v2-sp-preview-wrap { display: flex; flex-direction: column; gap: 0; }
.v2-sp-widget-preview { padding: 12px; border: 1px solid var(--color-border); border-radius: 10px; background: var(--color-bg-elevated); transition: opacity 0.3s; }
.v2-sp-widget-preview:not(.is-active) { display: none; }
.v2-sp-widget-row { display: flex; align-items: center; gap: 8px; }
.v2-sp-checkbox { width: 18px; height: 18px; border-radius: 4px; border: 2px solid var(--color-border-strong); display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.v2-sp-checkbox.is-checked { background: var(--orange); border-color: var(--orange); }
.v2-sp-widget-info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.v2-sp-widget-title { font-size: 11px; font-weight: 700; color: var(--color-text); }
.v2-sp-widget-sub { font-size: 9px; color: var(--color-text-secondary); }
.v2-sp-widget-price { font-size: 12px; font-weight: 800; color: var(--color-text); }
.v2-sp-widget-powered { font-size: 8px; color: var(--color-text-tertiary); text-align: right; margin-top: 4px; }
.v2-sp-hijack-btn { width: 100%; padding: 10px; text-align: center; background: var(--color-bg-inverse); color: var(--color-text-inverse); border-radius: 8px; font-size: 12px; font-weight: 700; }
.v2-sp-hijack-includes { display: flex; align-items: center; justify-content: center; gap: 4px; font-size: 10px; color: var(--primary); font-weight: 600; margin-top: 6px; }
.v2-sp-hijack-optout { font-size: 9px; color: var(--color-text-tertiary); text-align: center; margin-top: 4px; text-decoration: underline; cursor: pointer; }

/* ═══ SP CART PAGE ═══ */
.v2-sp-cart-page { padding: 16px 20px; }
.v2-sp-cart-title { font-size: 16px; font-weight: 800; color: var(--color-text); margin-bottom: 12px; }
.v2-sp-cart-items { margin-bottom: 12px; }
.v2-sp-cart-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--color-bg-inset); }
.v2-sp-cart-item-img { width: 40px; height: 40px; background: var(--color-bg-inset); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-sp-cart-item-info { flex: 1; }
.v2-sp-cart-item-name { font-size: 12px; font-weight: 700; color: var(--color-text); }
.v2-sp-cart-item-meta { font-size: 9px; color: var(--color-text-tertiary); }
.v2-sp-cart-item-price { font-size: 12px; font-weight: 700; color: var(--color-text); }
.v2-sp-cart-widget { padding: 10px 12px; border: 1px solid var(--color-success-border); border-radius: 8px; background: var(--color-tint-green); margin-bottom: 12px; }
.v2-sp-cart-widget-row { display: flex; align-items: center; gap: 8px; }
.v2-sp-cart-totals { border-top: 1px solid var(--color-border); padding-top: 10px; }
.v2-sp-cart-total-row { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--color-text); margin-bottom: 10px; }
.v2-sp-cart-checkout-btn { width: 100%; text-align: center; padding: 10px; background: var(--color-bg-inverse); color: var(--color-text-inverse); border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; }
.v2-sp-confirm-badge { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 12px; background: var(--color-tint-green); border: 1px solid var(--color-success-border); border-radius: 8px; font-size: 11px; font-weight: 600; color: var(--primary); margin-top: 12px; }

/* ═══ SP CLAIM STATUS ═══ */
.v2-sp-claim-status { display: flex; flex-direction: column; gap: 6px; padding: 10px 0; max-width: 280px; margin: 8px auto; }
.v2-sp-status-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--color-text-secondary); }
.v2-sp-status-badge { font-size: 10px; font-weight: 700; color: var(--accent-warm); background: var(--color-warm-tint); padding: 2px 8px; border-radius: 4px; }
.v2-sp-claim-next-btn { display: inline-block; padding: 8px 20px; background: var(--color-bg-inverse); color: var(--color-text-inverse); border-radius: 8px; font-size: 11px; font-weight: 700; cursor: pointer; margin-top: 8px; }

/* ═══ SP ADMIN CLAIM REVIEW ═══ */
.v2-sp-admin-claim { padding: 0 16px; display: flex; flex-direction: column; gap: 6px; }
.v2-sp-admin-row { display: flex; gap: 8px; font-size: 11px; color: var(--color-text-secondary); padding: 4px 0; border-bottom: 1px solid var(--color-bg-inset); }
.v2-sp-admin-label { font-weight: 700; color: var(--color-text); min-width: 80px; flex-shrink: 0; }
.v2-sp-admin-photo { display: flex; align-items: center; gap: 8px; padding: 8px 0; }
.v2-sp-admin-photo-thumb { width: 40px; height: 40px; background: var(--color-bg-inset); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.v2-sp-admin-photo-label { font-size: 10px; color: var(--color-text-secondary); }
.v2-sp-admin-actions { display: flex; gap: 6px; margin: 8px 16px 0; }
.v2-sp-admin-action-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px; padding: 8px 6px; border-radius: 8px; font-size: 10px; font-weight: 700; cursor: pointer; transition: opacity 0.2s; border: 1.5px solid transparent; }
.v2-sp-admin-action-btn:hover { opacity: 0.85; }
.v2-sp-admin-action--reship { background: var(--primary); color: var(--color-text-inverse); }
.v2-sp-admin-action--credit { background: var(--color-bg-elevated); color: var(--color-text); border-color: var(--color-border); }
.v2-sp-admin-action--deny { background: var(--color-bg-elevated); color: var(--color-danger-text); border-color: var(--color-danger-border); }


/* ===== block 2: cover screen (was <style is:global>) ===== */
/* ═══ COVER SCREEN (global so styles survive DOM moves into modal) ═══ */
.v2-cover {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.4s ease, max-height 0.5s ease;
}
.v2-cover.is-hidden { opacity: 0; max-height: 0; min-height: 0; overflow: hidden; pointer-events: none; margin: 0 auto; padding: 0; }
.v2-cover-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--color-bg-inverse-subtle) 50%, var(--secondary) 100%);
  border-radius: 12px;
}
.v2-cover-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.v2-cover-orb--1 { width: 400px; height: 400px; top: -10%; right: -5%; background: var(--primary, #ff6900); animation: v2Float1 8s ease-in-out infinite; }
.v2-cover-orb--2 { width: 300px; height: 300px; bottom: -5%; left: -5%; background: var(--accent, #00d4aa); animation: v2Float2 10s ease-in-out infinite; }
.v2-cover-orb--3 { width: 200px; height: 200px; top: 40%; left: 50%; background: var(--purple, var(--accent)); opacity: 0.3; animation: v2Float3 12s ease-in-out infinite; }
@keyframes v2Float1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 20px); } }
@keyframes v2Float2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -30px); } }
@keyframes v2Float3 { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -20px); } }
.v2-cover-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--dot-pattern-color-light) 1px, transparent 1px), linear-gradient(90deg, var(--dot-pattern-color-light) 1px, transparent 1px);
  background-size: 48px 48px;
  border-radius: 20px;
}
.v2-cover-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 3.5rem 2rem; color: var(--color-text-inverse);
}
.v2-cover-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 9999px;
  background: color-mix(in srgb, var(--orange) 15%, transparent); border: 1px solid color-mix(in srgb, var(--orange) 30%, transparent);
  color: var(--orange-light); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2rem;
}
.v2-cover-steps { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.v2-cover-step { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.v2-cover-step-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: color-mix(in srgb, white 8%, transparent); border: 1px solid color-mix(in srgb, white 12%, transparent); color: var(--color-text-inverse);
}
.v2-cover-step span { font-size: 0.75rem; font-weight: 500; color: var(--color-glass-text); }
.v2-cover-arrow { color: color-mix(in srgb, white 25%, transparent); margin-bottom: 1.5rem; }
.v2-cover-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.2; margin: 0 0 0.75rem;
  background: linear-gradient(135deg, var(--color-text-inverse) 30%, var(--color-glass-surface));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.v2-cover-subtitle { font-size: 1rem; color: color-mix(in srgb, white 55%, transparent); max-width: 420px; line-height: 1.6; margin: 0 0 2rem; }
.v2-cover-launch {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem; border: none; border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary, #ff6900), var(--primary-dark, #e55a00));
  color: var(--color-text-inverse); font-family: inherit; font-size: 1rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--orange) 40%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.v2-cover-launch:hover { transform: translateY(-2px); box-shadow: 0 6px 32px color-mix(in srgb, var(--orange) 55%, transparent); }
.v2-cover-launch:active { transform: translateY(0); }
.v2-cover-launch:disabled { opacity: 0.6; pointer-events: none; }
.v2-email-gate { display: flex; flex-direction: column; align-items: center; gap: 0; width: 100%; max-width: 480px; }
.v2-email-row {
  display: flex; gap: 0; width: 100%;
  border-radius: 9999px; overflow: hidden;
  background: color-mix(in srgb, white 10%, transparent);
  border: 1px solid color-mix(in srgb, white 15%, transparent);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.v2-email-row:focus-within {
  border-color: var(--primary, #ff6900);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 20%, transparent);
}
.v2-email-input {
  flex: 1; min-width: 0; padding: 0.85rem 1.25rem;
  background: transparent; border: none; outline: none;
  color: var(--color-text-inverse); font-family: inherit; font-size: 0.95rem;
}
.v2-email-input::placeholder { color: color-mix(in srgb, white 40%, transparent); }
.v2-email-gate .v2-cover-launch { border-radius: 0 9999px 9999px 0; flex-shrink: 0; }
.v2-email-error {
  display: none; margin-top: 0.5rem;
  font-size: 0.8rem; color: #f87171; font-weight: 500;
}
.v2-email-error.is-visible { display: block; }
.v2-cover-hint { margin-top: 0.75rem; font-size: 0.78rem; color: var(--color-glass-subtle); }

/* Modal mode: cover overlays just the panels area */
.v2-cover--modal {
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: 0;
  max-width: none;
  min-height: 0;
  border-radius: 0;
}

@media (max-width: 768px) {
  .v2-cover { min-height: 360px; border-radius: 16px; }
  .v2-cover-bg, .v2-cover-grid { border-radius: 16px; }
  .v2-cover-content { padding: 2.5rem 1.25rem; }
  .v2-cover-steps { gap: 0.5rem; }
  .v2-cover-step-icon { width: 42px; height: 42px; border-radius: 10px; }
  .v2-cover-step-icon svg { width: 20px; height: 20px; }
  .v2-cover-step span { font-size: 0.65rem; }
  .v2-email-gate { max-width: 100%; }
  .v2-email-row { flex-direction: column; border-radius: 16px; }
  .v2-email-input { padding: 0.75rem 1rem; text-align: center; }
  .v2-email-gate .v2-cover-launch { border-radius: 0 0 16px 16px; justify-content: center; }
}

/* ═══ COMPLETION MODAL PICKER CARD ENHANCEMENTS ═══ */
.v2-picker-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
}
.v2-journey-complete-overlay .v2-picker-card,
.ep-hiw-modal-overlay .v2-picker-card {
  border: 1.5px solid var(--color-border);
  box-shadow: 0 1px 3px var(--color-overlay-extralight);
}
.v2-journey-complete-overlay .v2-picker-card:hover,
.ep-hiw-modal-overlay .v2-picker-card:hover {
  border-color: var(--color-border-strong);
  box-shadow: 0 2px 6px var(--color-overlay-light);
}
.v2-journey-complete-overlay .v2-picker-card.is-completed,
.ep-hiw-modal-overlay .v2-picker-card.is-completed {
  border-color: var(--color-border);
  background: var(--color-tint-green);
  opacity: 0.8;
  box-shadow: none;
}
