@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");:root{--bg:#05070a;--surface:rgba(13,17,23,0.7);--surface-hover:rgba(22,27,34,0.8);--border:rgba(255,255,255,0.08);--border-focus:rgba(0,122,255,0.4);--accent:#007aff;--accent-glow:rgba(0,122,255,0.3);--accent-secondary:#5856d6;--primary:#0a84ff;--fg:#f5f5f7;--muted:#86868b;--ok:#28cd41;--bad:#ff3b30;--warn:#ff9f0a;--glass-bg:rgba(255,255,255,0.03);--glass-blur:blur(20px);--radius-sm:8px;--radius-md:12px;--radius-lg:20px;--shadow-sm:0 4px 12px rgba(0,0,0,0.1);--shadow-md:0 8px 32px rgba(0,0,0,0.2)}[data-theme=light]{--bg:#f5f5f7;--surface:rgba(255,255,255,0.7);--surface-hover:rgba(255,255,255,0.9);--border:rgba(0,0,0,0.1);--fg:#1d1d1f;--muted:#86868b;--glass-bg:rgba(0,0,0,0.03);--primary:#007aff}*{box-sizing:border-box;margin:0;padding:0;-webkit-font-smoothing:antialiased}body{font-family:Inter,system-ui,-apple-system,sans-serif;background-color:var(--bg);background-image:radial-gradient(circle at 0 0,rgba(0,122,255,.05) 0,transparent 50%),radial-gradient(circle at 100% 100%,rgba(88,86,214,.05) 0,transparent 50%);background-attachment:fixed;color:var(--fg);line-height:1.5;min-height:100vh;transition:background-color .3s ease,color .3s ease;max-width:100vw;overflow-x:hidden;position:relative}h1,h2,h3,h4{font-family:Outfit,sans-serif;font-weight:600;letter-spacing:-.02em;word-break:break-word}.container{max-width:1400px;margin:0 auto;padding:40px 20px}header{justify-content:space-between;margin-bottom:40px;position:relative;z-index:1001}.logo,header{display:flex;align-items:center}.logo{gap:12px;font-size:24px;font-weight:700;color:var(--fg);text-decoration:none}.logo span{background:linear-gradient(135deg,var(--accent),var(--accent-secondary));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}.panel{background:var(--surface);backdrop-filter:var(--glass-blur);-webkit-backdrop-filter:var(--glass-blur);border:1px solid var(--border);border-radius:var(--radius-lg);padding:24px;transition:all .3s cubic-bezier(.4,0,.2,1);box-shadow:var(--shadow-sm);max-width:100%;overflow-x:hidden}.panel:hover{border-color:rgba(0,122,255,.2);transform:translateY(-2px);box-shadow:var(--shadow-md)}.dashboard-grid{display:grid;grid-template-columns:420px 1fr;grid-gap:32px;gap:32px;align-items:start}.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));grid-gap:24px;gap:24px}#productList .product-card{display:flex!important;flex-direction:column!important;height:100%!important;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);padding:16px;gap:12px}#productList .product-card .thumb{width:100%!important;height:180px!important;background:rgba(0,0,0,.05);border-radius:var(--radius-sm);overflow:hidden;display:flex;align-items:center;justify-content:center}#productList .product-card img{max-width:100%;max-height:100%;object-fit:contain}.hist-item{gap:12px;padding:12px;background:rgba(255,255,255,.03);border-radius:var(--radius-sm);border:1px solid var(--border);transition:all .2s ease;margin-bottom:8px}.hist-item,.hist-thumb{display:flex;align-items:center}.hist-thumb{width:48px;height:48px;background:rgba(0,0,0,.1);border-radius:4px;overflow:hidden;justify-content:center;flex-shrink:0}.hist-thumb img{width:100%;height:100%;object-fit:cover}.hist-content{flex:1 1;min-width:0}.hist-title{font-size:13px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--fg)}.hist-meta{font-size:11px;color:var(--muted)}input,select,textarea{width:100%;height:auto;background:rgba(255,255,255,.03);border:1px solid var(--border);border-radius:var(--radius-sm);padding:12px 16px;font-family:inherit}.pill,input,select,textarea{color:var(--fg);font-size:14px;transition:all .2s ease}.pill{cursor:pointer;border:1px solid var(--border);background:rgba(255,255,255,.05);padding:10px 20px;border-radius:999px;font-weight:500;display:inline-flex;align-items:center;gap:8px}.pill.primary{background:var(--accent);color:white;border:none}.pill:hover{transform:scale(1.02);background:rgba(255,255,255,.1)}.tabs{gap:12px;background:rgba(0,0,0,.15);padding:6px;border-radius:14px;margin-bottom:24px;width:-moz-fit-content;width:fit-content;border:1px solid var(--border)}.tab,.tabs{display:flex}.tab{padding:10px 24px;font-size:13.5px;font-weight:600;color:var(--muted);background:transparent;border:none;cursor:pointer;border-radius:10px;transition:all .3s cubic-bezier(.4,0,.2,1);align-items:center;gap:10px;text-decoration:none;white-space:nowrap}.tab.active,.tab:hover{color:var(--fg)}.tab.active{background:var(--surface-hover)}.nav-icon{display:none}@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.animate-in{animation:fadeIn .4s ease-out forwards}@keyframes pulse-green{0%{transform:scale(.95);box-shadow:0 0 0 0 rgba(40,205,65,.7)}70%{transform:scale(1);box-shadow:0 0 0 6px rgba(40,205,65,0)}to{transform:scale(.95);box-shadow:0 0 0 0 rgba(40,205,65,0)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.spin{animation:spin 1s linear infinite}.glass-card{background:var(--glass-bg);backdrop-filter:var(--glass-blur);-webkit-backdrop-filter:var(--glass-blur);border:1px solid var(--border);box-shadow:var(--shadow-sm)}.button-hover-effect:hover{transform:translateY(-2px) scale(1.01);filter:brightness(1.1);box-shadow:0 15px 45px rgba(0,122,255,.4)}.market-insights-card{transition:all .3s ease}.market-insights-card:hover{border-color:var(--accent)!important;transform:scale(1.005)}.kpi-grid{display:grid;grid-template-columns:repeat(2,1fr);grid-gap:16px;gap:16px;margin-top:24px}.kpi-card{background:rgba(255,255,255,.02);padding:16px;border-radius:var(--radius-md);text-align:center}.kpi-card span{display:block;font-size:24px;font-weight:700;color:var(--accent)}.kpi-card label{font-size:11px;color:var(--muted);text-transform:uppercase;margin-top:4px}.mp-row{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;background:rgba(255,255,255,.02);border:1px solid var(--border);border-radius:var(--radius-sm);transition:all .2s ease}.mp-row:hover{border-color:var(--accent);background:rgba(0,122,255,.03)}.mp-row .mp-status-badge{display:inline-block;padding:2px 8px;border-radius:999px;font-size:10px;font-weight:600;text-transform:uppercase}.mp-row .mp-status-badge.connected{background:rgba(40,205,65,.15);color:var(--ok)}.mp-row .mp-status-badge.disconnected{background:rgba(255,59,48,.15);color:var(--bad)}.form-group{margin-bottom:16px}.form-group label{display:block;font-size:12px;font-weight:600;color:var(--muted);text-transform:uppercase;margin-bottom:6px}.tag-success{display:inline-block;padding:6px 14px;border-radius:999px;font-size:12px;font-weight:600;background:rgba(40,205,65,.1);color:var(--ok)}.seo-score-bar-wrap{width:100%;height:6px;background:rgba(255,255,255,.05);border-radius:3px;overflow:hidden}.seo-score-bar{height:100%;background:linear-gradient(90deg,var(--accent),var(--accent-secondary));border-radius:3px;transition:width .4s ease}.policy-item{padding:10px 14px;border-left:3px solid var(--warn);background:rgba(255,255,255,.02);border-radius:0 var(--radius-sm) var(--radius-sm) 0;font-size:13px}.header-mobile-right-actions,.mobile-tabs{display:none!important}@media screen and (min-width:769px){.desktop-actions{display:flex!important}}@media screen and (max-width:1024px){.dashboard-grid,.two-cols{grid-template-columns:1fr;gap:16px}}@media screen and (max-width:768px){.layout-container{flex-direction:column!important;height:auto!important;min-height:100vh}.container{padding:16px 12px 90px}header{padding:12px 0;margin-bottom:24px;align-items:center;position:relative;z-index:auto;flex-direction:row!important;justify-content:space-between!important;gap:0}header .logo{font-size:20px;margin-bottom:0;width:auto}.desktop-actions,.desktop-profile-actions{display:none!important}.header-mobile-right-actions,.mobile-tabs{display:flex!important}.user-email-text{display:none!important}.user-profile-info button{padding:6px!important;font-size:11px!important}nav{max-width:100%!important;border-right:none!important;border-bottom:1px solid var(--border);position:relative;z-index:100;padding:16px!important;display:flex;flex-direction:row!important;align-items:center;justify-content:space-between;overflow-x:auto}.tabs,nav{width:100%!important}.tabs{position:fixed!important;bottom:0!important;left:0!important;margin:0!important;background:var(--surface)!important;backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-top:1px solid var(--border)!important;display:flex!important;justify-content:space-between!important;align-items:center!important;gap:0!important;z-index:9999!important;box-shadow:0 -10px 40px rgba(0,0,0,.5)!important;padding:12px 16px env(safe-area-inset-bottom,16px)!important}.tab,.tabs{border-radius:0!important}.tab{flex-direction:column!important;padding:6px!important;font-size:10px!important;background:transparent!important;gap:4px!important;flex:1 1!important;justify-content:center!important}.nav-icon{display:flex!important;margin-bottom:2px}.tab.active{background:transparent!important}.tab.active,.tab.active .nav-icon{color:var(--primary)!important}nav>div{display:none!important}nav button{padding:8px!important;font-size:13px!important}main{padding:0!important}h1{font-size:22px}h2{font-size:18px}h3{font-size:16px}body{font-size:14px}.desktop-only-divider,.tabs .tab[href^="/admin"],.tabs .tab[href^="/settings/company"]{display:none!important}.panel,.panel[style]{padding:12px!important;gap:12px!important;border-radius:var(--radius-md)!important}.catalog-grid,.features-grid,.products-grid{grid-template-columns:1fr!important;gap:16px}.responsive-header{flex-direction:column!important;align-items:flex-start!important;gap:16px}.responsive-header-actions{width:100%!important;display:flex;flex-direction:column;gap:12px}button.pill{padding:8px 16px;font-size:13px}.panel[style],form[style]{flex-direction:column}table{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;font-size:12px!important}td,th{padding:12px 10px!important}.step4-header-panel{flex-direction:column!important;align-items:flex-start!important;padding:16px!important;gap:16px!important}.step4-header-info{flex-direction:column!important;gap:8px!important}.step4-header-actions{width:100%!important;flex-direction:column!important;align-items:stretch!important}.step4-listing-card{flex-direction:column!important;padding:16px!important;gap:16px!important}.step4-listing-sidebar{width:100%!important;border-right:none!important;border-bottom:1px solid var(--border);padding-right:0!important;padding-bottom:16px!important}.step4-listing-content h3{font-size:14px!important}.product-image-container img{height:auto!important;max-height:140px!important}[style*="grid-template-columns: 1fr 1fr 1fr"]{grid-template-columns:1fr!important}.step-4-panel form>div{display:flex;flex-direction:column}div[style*="gap: 20px"],div[style*="gap: 24px"],div[style*="gap: 32px"],div[style*="gap: 40px"]{gap:10px!important}.dashboard-grid,.dashboard-grid[style],div[style*="grid-template-columns: repeat"],div[style*="grid-template-columns:repeat"],div[style*=grid-template-columns]{grid-template-columns:1fr!important}.panel>div[style*="justify-content: space-between"],div[style*="justify-content: space-between"]{flex-direction:column!important;align-items:flex-start!important;gap:12px!important}.panel>div[style*="justify-content: space-between"]>div{display:flex!important;text-align:left!important;width:100%!important;justify-content:flex-start!important;flex-wrap:wrap!important;gap:8px!important}.panel>div[style*="justify-content: space-between"] button{width:100%!important;justify-content:center!important}div[style*="padding: 20px"],div[style*="padding: 24px"],div[style*="padding: 32px"],div[style*="padding: 40px"]{padding:10px!important}body,div,label,p,span{font-size:12px}.muted{font-size:11px!important}h1,h1[style]{font-size:17px!important}h1,h1[style],h2,h2[style]{margin-bottom:4px!important}h2,h2[style]{font-size:15px!important}h3,h3[style]{font-size:13px!important;margin-bottom:2px!important}h4,h4[style]{font-size:12px!important}.registry-stepper{gap:2px!important;margin-bottom:12px!important;padding-bottom:8px!important}.registry-stepper .stepper-label{font-size:10px!important}.registry-title{font-size:16px!important}.form-group{margin-bottom:8px!important}.form-group label{font-size:11px!important;margin-bottom:2px!important}.logo{font-size:16px!important;gap:6px!important}.logo img{height:22px!important}.logo span{font-size:15px!important}.badge,.tag-success,[class*=badge]{font-size:10px!important;padding:3px 6px!important}.score-circle{width:60px!important;height:60px!important}.score-circle .score-value{font-size:18px!important}.score-circle .score-label{font-size:10px!important}div[style*="font-size: 28px"],div[style*="fontSize: '28px'"]{font-size:20px!important}div[style*="fontSize: '24px'"]{font-size:18px!important}input,select,textarea{padding:8px 10px!important;font-size:16px!important;height:auto!important}button.pill{padding:8px 14px!important;font-size:12px!important;height:auto!important;line-height:1.2!important}button.icon{padding:6px!important}.container{padding:12px 10px!important}header{margin-bottom:16px!important}.product-card .thumb,div[class*=thumb]{height:160px!important}.products-grid{grid-template-columns:1fr 1fr!important;gap:10px!important}.container>p.muted,footer{font-size:10px!important}*{-ms-overflow-style:none;scrollbar-width:none}::-webkit-scrollbar{display:none}}.flex{display:flex}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.items-center{align-items:center}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.flex-grow{flex-grow:1}.flex-wrap{flex-wrap:wrap}.grid{display:grid}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}@media (min-width:640px){.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:col-span-2{grid-column:span 2/span 2}}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.m-0{margin:0}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb-12{margin-bottom:3rem}.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.mt-12{margin-top:3rem}.p-2{padding:.5rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pt-6{padding-top:1.5rem}.text-xs{font-size:.75rem}.text-sm{font-size:.875rem}.text-lg{font-size:1.125rem}.text-xl{font-size:1.25rem}.text-2xl{font-size:1.5rem}.text-3xl{font-size:1.875rem}.font-bold{font-weight:700}.font-black{font-weight:900}.font-semibold{font-weight:600}.font-medium{font-weight:500}.uppercase{text-transform:uppercase}.tracking-tight{letter-spacing:-.025em}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.text-center{text-align:center}.text-white{color:#ffffff}.text-primary{color:var(--primary)}.text-ok{color:var(--ok)}.text-warn{color:var(--warn)}.text-muted{color:var(--muted)}.bg-primary\/10{background-color:rgba(10,132,255,.1)}.bg-ok\/10{background-color:rgba(40,205,65,.1)}.bg-warn\/10{background-color:rgba(255,159,10,.1)}.bg-white\/5{background-color:rgba(255,255,255,.05)}.bg-white\/10{background-color:rgba(255,255,255,.1)}.bg-white\/20{background-color:rgba(255,255,255,.2)}.border-none{border:none}.border-dashed{border-style:dashed}.border-white\/5{border-color:rgba(255,255,255,.05)}.border-white\/10{border-color:rgba(255,255,255,.1)}.border-white\/20{border-color:rgba(255,255,255,.2)}.border-b-0{border-bottom-width:0}.rounded-lg{border-radius:.5rem}.rounded-xl{border-radius:.75rem}.rounded-full{border-radius:9999px}.w-full{width:100%}.h-full{height:100%}.h-8{height:2rem}.w-2{width:.5rem}.h-2{height:.5rem}.w-2\.5{width:.625rem}.h-2\.5{height:.625rem}.w-px{width:1px}.relative{position:relative}.absolute{position:absolute}.z-10{z-index:10}.top-1\/2{top:50%}.left-1\/2{left:50%}.-translate-x-1\/2{transform:translateX(-50%)}.-translate-y-1\/2{transform:translateY(-50%)}.-right-4{right:-1rem}.-bottom-4{bottom:-1rem}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}.blur-3xl{filter:blur(64px)}.overflow-hidden{overflow:hidden}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-300{transition-duration:.3s}.duration-700{transition-duration:.7s}.group:hover .group-hover\:scale-110{transform:scale(1.1)}.group:hover .group-hover\:scale-150{transform:scale(1.5)}.hover\:scale-105:hover{transform:scale(1.05)}