:root{--color-bg-primary:#0B1426;--color-bg-secondary:#0F1D32;--color-bg-tertiary:#142644;--color-bg-card:#111D30;--color-bg-hover:#1A2D4A;--color-bg-input:#0D1829;--color-accent:#FF6B00;--color-accent-hover:#FF8533;--color-accent-glow:rgba(255,107,0,0.25);--color-blue:#3B82F6;--color-blue-hover:#60A5FA;--color-blue-glow:rgba(59,130,246,0.2);--color-text-primary:#E8EDF2;--color-text-secondary:#94A3B8;--color-text-muted:#64748B;--color-text-accent:#FF6B00;--color-border:#1E3050;--color-border-hover:#2A4060;--color-success:#00C853;--color-warning:#FFB300;--color-danger:#FF3D00;--color-info:#29B6F6;--font-sans:var(--font-inter),-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;--space-xs:4px;--space-sm:8px;--space-md:16px;--space-lg:24px;--space-xl:32px;--space-2xl:48px;--space-3xl:64px;--space-4xl:96px;--radius-sm:4px;--radius-md:8px;--radius-lg:12px;--radius-xl:16px;--radius-full:9999px;--shadow-sm:0 1px 3px rgba(0,0,0,0.3);--shadow-md:0 4px 12px rgba(0,0,0,0.4);--shadow-lg:0 8px 32px rgba(0,0,0,0.5);--shadow-glow-accent:0 0 20px var(--color-accent-glow);--shadow-glow-blue:0 0 20px var(--color-blue-glow);--transition-fast:150ms ease;--transition-base:250ms ease;--transition-slow:400ms ease;--max-width:1400px;--header-height:64px;--sidebar-width:280px}*,:after,:before{box-sizing:border-box;margin:0;padding:0}html{font-size:16px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}html[data-scroll-behavior=smooth]{scroll-behavior:smooth}body{font-family:var(--font-sans);background:var(--color-bg-primary);line-height:1.6;min-height:100vh}a{text-decoration:none;transition:color var(--transition-fast)}a:hover{color:var(--color-blue-hover)}img{max-width:100%;height:auto}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-track{background:var(--color-bg-primary)}::-webkit-scrollbar-thumb{background:var(--color-border);border-radius:var(--radius-full)}::-webkit-scrollbar-thumb:hover{background:var(--color-border-hover)}.container{max-width:var(--max-width);margin:0 auto;padding:0 var(--space-lg)}.flex-center{justify-content:center}.flex-between,.flex-center{display:flex;align-items:center}.flex-between{justify-content:space-between}.text-muted{color:var(--color-text-muted)}.text-secondary{color:var(--color-text-secondary)}.font-mono{font-family:var(--font-mono)}.btn{display:inline-flex;align-items:center;justify-content:center;gap:var(--space-sm);padding:10px 20px;font-family:var(--font-sans);font-size:14px;font-weight:600;border:none;cursor:pointer;transition:all var(--transition-fast);white-space:nowrap}.btn-primary{background:var(--color-accent);color:#fff}.btn-primary:hover{background:var(--color-accent-hover);transform:translateY(-1px)}.btn-secondary{background:var(--color-bg-tertiary)}.btn-secondary:hover{background:var(--color-bg-hover)}.btn-outline{background:transparent;color:var(--color-accent);border:1px solid var(--color-accent)}.btn-outline:hover{background:var(--color-accent);color:#fff}.btn-sm{padding:6px 12px;font-size:12px}.btn-lg{padding:14px 28px;font-size:16px}.input{width:100%;padding:10px 16px;font-family:var(--font-sans);font-size:14px;background:var(--color-bg-input);border:1px solid var(--color-border);border-radius:var(--radius-md);outline:none;transition:all var(--transition-fast)}.input:focus{border-color:var(--color-accent);box-shadow:0 0 0 3px var(--color-accent-glow)}.input::placeholder{color:var(--color-text-muted)}select.input{appearance:none;-webkit-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;padding-right:36px;cursor:pointer}select.input option{background:var(--color-bg-primary);color:var(--color-text-primary)}.card{background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:var(--space-lg);transition:all var(--transition-base)}.card:hover{border-color:var(--color-border-hover);box-shadow:var(--shadow-md)}.card-glass{background:rgba(17,29,48,.7);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid rgba(30,48,80,.5);border-radius:var(--radius-lg);padding:var(--space-lg)}.badge{display:inline-flex;align-items:center;padding:2px 8px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.5px;border-radius:var(--radius-full)}.badge-success{background:rgba(0,200,83,.15);color:var(--color-success)}.badge-danger{background:rgba(255,61,0,.15);color:var(--color-danger)}.badge-warning{background:rgba(255,179,0,.15);color:var(--color-warning)}.badge-info{background:rgba(41,182,246,.15);color:var(--color-info)}.table-wrapper{overflow-x:auto;border-radius:var(--radius-lg);border:1px solid var(--color-border)}.table{width:100%;border-collapse:collapse;font-size:14px}.table th{text-align:left;font-weight:600;font-size:12px;text-transform:uppercase;letter-spacing:.5px;color:var(--color-text-muted);background:var(--color-bg-secondary);white-space:nowrap}.table td,.table th{padding:12px 16px;border-bottom:1px solid var(--color-border)}.table td{color:var(--color-text-secondary)}.table tr:last-child td{border-bottom:none}.table tr:hover td{background:var(--color-bg-hover)}.table td.part-number{font-family:var(--font-mono);font-weight:600;color:var(--color-blue)}.header{position:sticky;top:0;z-index:100;background:rgba(11,20,38,.92);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid var(--color-border);height:var(--header-height)}.header-inner{justify-content:space-between;height:100%;max-width:var(--max-width);margin:0 auto;padding:0 var(--space-lg);gap:var(--space-lg)}.header-inner,.logo{display:flex;align-items:center}.logo{gap:var(--space-sm);font-size:20px;font-weight:800;text-decoration:none;flex-shrink:0}.logo-icon{width:32px;height:32px;background:linear-gradient(135deg,var(--color-accent),#FF8533);border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:900;color:#fff}.logo span{color:var(--color-accent)}.search-bar{flex:1 1;max-width:600px;position:relative}.search-bar .input{padding-left:44px;padding-right:100px;height:42px;background:var(--color-bg-secondary);border-color:var(--color-border);border-radius:var(--radius-full)}.search-bar .input:focus{background:var(--color-bg-input)}.search-icon{left:16px;color:var(--color-text-muted);pointer-events:none}.search-btn,.search-icon{position:absolute;top:50%;transform:translateY(-50%)}.search-btn{right:4px;padding:6px 16px;background:var(--color-accent);color:#fff;border:none;border-radius:var(--radius-full);font-size:13px;font-weight:600;cursor:pointer;transition:background var(--transition-fast)}.search-btn:hover{background:var(--color-accent-hover)}.header-actions{gap:var(--space-md);flex-shrink:0}.header-action,.header-actions{display:flex;align-items:center}.header-action{gap:6px;padding:8px 12px;font-weight:500;border-radius:var(--radius-md);cursor:pointer;transition:all var(--transition-fast);background:none;border:none;text-decoration:none}.header-action:hover{background:var(--color-bg-tertiary)}.header-action .count{background:var(--color-accent);color:#fff;font-size:10px;font-weight:700;min-width:18px;height:18px;border-radius:var(--radius-full);display:flex;align-items:center;justify-content:center}.category-bar{background:var(--color-bg-secondary);border-bottom:1px solid var(--color-border);overflow:hidden}.category-bar-inner{max-width:var(--max-width);margin:0 auto;padding:0 var(--space-md);display:flex;align-items:center;gap:0;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none}.category-bar-inner::-webkit-scrollbar{display:none}.cat-link{display:flex;align-items:center;gap:5px;padding:10px 11px;font-size:13px;font-weight:500;color:var(--color-text-secondary);white-space:nowrap;transition:all var(--transition-fast);border-bottom:2px solid transparent;text-decoration:none;flex-shrink:0}.cat-link:hover{background:var(--color-bg-tertiary)}.cat-link.active,.cat-link:hover{color:var(--color-accent);border-bottom-color:var(--color-accent)}.cat-more-wrapper{position:relative;flex-shrink:0}.cat-more-btn{cursor:pointer;background:none;border:none;border-bottom:2px solid transparent;font-family:inherit}.cat-more-btn:hover{color:var(--color-accent);background:var(--color-bg-tertiary)}.cat-more-dropdown{position:absolute;top:100%;right:0;min-width:200px;background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-lg);box-shadow:0 12px 40px rgba(0,0,0,.4);padding:6px;z-index:100;animation:dropdown-in .15s ease-out}@keyframes dropdown-in{0%{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}.cat-more-item{display:block;padding:9px 14px;font-size:13px;font-weight:500;color:var(--color-text-secondary);border-radius:var(--radius-md);text-decoration:none;transition:all var(--transition-fast)}.cat-more-item:hover{background:var(--color-bg-tertiary);color:var(--color-accent)}.cat-more-all{border-top:1px solid var(--color-border);margin-top:4px;padding-top:10px;color:var(--color-accent);font-weight:600}.hero{position:relative;padding:var(--space-4xl) 0;overflow:hidden}.hero:before{content:"";position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 50% -20%,rgba(255,107,0,.08),transparent),radial-gradient(ellipse 60% 50% at 80% 50%,rgba(59,130,246,.06),transparent);pointer-events:none}.hero-content{position:relative;max-width:700px;margin:0 auto;text-align:center}.hero h1{font-size:48px;font-weight:900;line-height:1.1;margin-bottom:var(--space-lg);letter-spacing:-1px}.hero h1 .highlight{background:linear-gradient(135deg,var(--color-accent),#FFB347);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.hero p{font-size:18px;color:var(--color-text-secondary);margin-bottom:var(--space-xl);line-height:1.7}.hero-search{max-width:560px;margin:0 auto var(--space-xl);position:relative}.hero-search .input{font-size:16px;padding-left:50px;padding-right:120px;border-radius:var(--radius-xl);background:var(--color-bg-secondary);border:1px solid var(--color-border-hover)}.hero-search .input:focus{border-color:var(--color-accent);box-shadow:0 0 0 4px var(--color-accent-glow)}.hero-search .search-icon{left:18px;font-size:18px}.hero-search .search-btn{right:6px;padding:10px 24px;font-size:15px}.hero-stats{display:flex;justify-content:center;gap:var(--space-2xl);margin-top:var(--space-xl)}.hero-stat{text-align:center}.hero-stat-value{font-size:28px;font-weight:800;color:var(--color-text-primary)}.hero-stat-label{font-size:13px;color:var(--color-text-muted);margin-top:2px}.section{padding:var(--space-3xl) 0}.section-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:var(--space-xl)}.section-title{font-size:24px;font-weight:800;letter-spacing:-.5px}.section-subtitle{font-size:14px;color:var(--color-text-muted);margin-top:4px}.view-all{font-size:14px;font-weight:600;color:var(--color-accent);display:flex;align-items:center;gap:4px}.view-all:hover{color:var(--color-accent-hover)}.category-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:var(--space-md)}.category-card{display:flex;flex-direction:column;align-items:center;text-align:center;padding:var(--space-lg);background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-lg);cursor:pointer;transition:all var(--transition-base);text-decoration:none;color:var(--color-text-primary)}.category-card:hover{border-color:var(--color-accent);box-shadow:var(--shadow-glow-accent);transform:translateY(-4px)}.category-icon{width:56px;height:56px;border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:var(--space-md);background:linear-gradient(135deg,var(--color-bg-tertiary),var(--color-bg-hover));border:1px solid var(--color-border)}.category-card:hover .category-icon{background:linear-gradient(135deg,rgba(255,107,0,.15),rgba(255,107,0,.05));border-color:var(--color-accent)}.category-card h3{font-size:14px;font-weight:600;margin-bottom:4px}.category-card .count{font-size:12px;color:var(--color-text-muted)}.features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--space-lg)}.feature-card{text-align:center;padding:var(--space-xl);background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-lg);transition:all var(--transition-base)}.feature-card:hover{border-color:var(--color-border-hover);transform:translateY(-2px)}.feature-icon{width:64px;height:64px;margin:0 auto var(--space-md);border-radius:var(--radius-xl);display:flex;align-items:center;justify-content:center;font-size:28px;background:linear-gradient(135deg,var(--color-bg-tertiary),var(--color-bg-hover))}.feature-card h3{font-size:16px;font-weight:700;margin-bottom:var(--space-sm)}.feature-card p{font-size:13px;color:var(--color-text-muted);line-height:1.6}.brands-marquee-wrapper{overflow:hidden;position:relative;mask-image:linear-gradient(90deg,transparent,black 10%,black 90%,transparent);-webkit-mask-image:linear-gradient(90deg,transparent,black 10%,black 90%,transparent)}.brands-scroll{display:flex;gap:var(--space-xl);width:max-content;animation:marquee-scroll 40s linear infinite}.brands-scroll:hover{animation-play-state:paused}@keyframes marquee-scroll{0%{transform:translateX(0)}to{transform:translateX(-50%)}}.brand-item{flex-shrink:0;padding:var(--space-sm) var(--space-xl);background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-lg);font-size:13px;font-weight:600;color:var(--color-text-muted);transition:all var(--transition-fast);cursor:pointer;white-space:nowrap;text-decoration:none}.brand-item:hover{color:var(--color-accent);border-color:var(--color-accent);background:var(--color-bg-hover);box-shadow:0 0 12px var(--color-accent-glow)}.footer{background:var(--color-bg-secondary);border-top:1px solid var(--color-border);padding:var(--space-3xl) 0 var(--space-xl)}.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:var(--space-2xl);margin-bottom:var(--space-2xl)}.footer-brand{max-width:300px}.footer-brand p{font-size:13px;color:var(--color-text-muted);margin-top:var(--space-md);line-height:1.7}.footer-col{display:flex;flex-direction:column}.footer-col h4{font-size:12px;font-weight:700;color:var(--color-text-secondary);margin-bottom:var(--space-md);text-transform:uppercase;letter-spacing:1px}.footer-col a{display:block;font-size:13px;color:var(--color-text-muted);padding:5px 0;transition:color var(--transition-fast);text-decoration:none;line-height:1.4}.footer-col a:hover{color:var(--color-accent)}.footer-bottom{border-top:1px solid var(--color-border);padding-top:var(--space-lg);justify-content:space-between;font-size:13px;color:var(--color-text-muted)}.footer-bottom,.footer-certs{display:flex;align-items:center}.footer-certs{gap:var(--space-md)}.footer-cert{padding:4px 10px;border:1px solid var(--color-border);border-radius:var(--radius-sm);font-size:11px;font-weight:600;color:var(--color-text-muted)}@media (max-width:1024px){.features-grid{grid-template-columns:repeat(2,1fr)}.footer-grid{grid-template-columns:1fr 1fr;gap:var(--space-xl)}.hero h1{font-size:36px}}@media (max-width:768px){:root{--header-height:56px}.container{padding:0 var(--space-md)}.header-actions .header-action span{display:none}.hero{padding:var(--space-2xl) 0}.hero h1{font-size:28px}.hero p{font-size:15px}.hero-stats{gap:var(--space-lg)}.hero-stat-value{font-size:22px}.category-grid{grid-template-columns:repeat(2,1fr)}.features-grid,.footer-grid{grid-template-columns:1fr}.footer-grid{gap:var(--space-lg)}.footer-bottom{flex-direction:column;gap:var(--space-md);text-align:center}.search-bar{display:none}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes pulse-glow{0%,to{box-shadow:0 0 20px var(--color-accent-glow)}50%{box-shadow:0 0 40px var(--color-accent-glow)}}@keyframes slide-in{0%{opacity:0;transform:translateX(-10px)}to{opacity:1;transform:translateX(0)}}.animate-fade-in{animation:fadeInUp .5s ease forwards}.animate-fade-in-delay-1{animation-delay:.1s;opacity:0}.animate-fade-in-delay-2{animation-delay:.2s;opacity:0}.animate-fade-in-delay-3{animation-delay:.3s;opacity:0}.animate-fade-in-delay-4{animation-delay:.4s;opacity:0}.product-header{display:flex;gap:var(--space-2xl);margin-bottom:var(--space-2xl)}.product-info{flex:1 1}.product-part-number{font-family:var(--font-mono);font-size:32px;font-weight:800;margin-bottom:var(--space-sm)}.product-manufacturer{font-size:16px;color:var(--color-text-secondary);margin-bottom:var(--space-md)}.product-status{display:inline-flex;align-items:center;gap:6px;margin-bottom:var(--space-lg)}.status-dot{width:8px;height:8px;border-radius:var(--radius-full)}.status-dot.in-stock{background:var(--color-success)}.status-dot.out-of-stock{background:var(--color-danger)}.status-dot.obsolete{background:var(--color-warning)}.price-tiers{display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:var(--space-sm)}.price-tier{text-align:center;padding:var(--space-md);background:var(--color-bg-secondary);border:1px solid var(--color-border);border-radius:var(--radius-md)}.price-tier .qty{font-size:12px;color:var(--color-text-muted);margin-bottom:4px}.price-tier .price{font-size:16px;font-weight:700;color:var(--color-accent)}.breadcrumb{display:flex;align-items:center;gap:var(--space-sm);padding:var(--space-md) 0;font-size:13px}.breadcrumb,.breadcrumb a{color:var(--color-text-muted)}.breadcrumb a:hover{color:var(--color-accent)}.breadcrumb .separator{color:var(--color-border)}.rfq-float{position:fixed;bottom:var(--space-xl);right:var(--space-xl);z-index:90}.rfq-float .btn{padding:14px 24px;font-size:15px;border-radius:var(--radius-full);box-shadow:var(--shadow-lg);animation:pulse-glow 2s ease-in-out infinite}.product-page-layout{display:grid;grid-template-columns:1fr 360px;gap:var(--space-2xl);align-items:start}.product-main{min-width:0}.product-header-section{margin-bottom:var(--space-xl);padding-bottom:var(--space-xl);border-bottom:1px solid var(--color-border)}.product-availability{display:flex;align-items:center;gap:var(--space-lg);flex-wrap:wrap}.product-quick-info{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--space-md);margin-bottom:var(--space-xl)}.quick-info-item{background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:var(--space-md);text-align:center}.quick-info-label{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.5px;color:var(--color-text-muted);margin-bottom:4px}.quick-info-value{display:block;font-size:14px;font-weight:600;color:var(--color-text-primary)}.product-section{margin-bottom:var(--space-xl)}.product-section-title{font-size:18px;font-weight:700;margin-bottom:var(--space-md);padding-bottom:var(--space-sm);border-bottom:2px solid var(--color-accent);display:inline-block}.specs-table td:first-child{background:var(--color-bg-secondary)}.product-sidebar{position:sticky;top:calc(var(--header-height) + 60px)}.sidebar-action-card{background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:var(--space-xl)}.sidebar-action-card:hover{border-color:var(--color-border-hover);box-shadow:var(--shadow-md)}.sidebar-info-row{display:flex;align-items:center;gap:var(--space-sm);font-size:13px;color:var(--color-text-secondary);padding:6px 0}@media (max-width:1024px){.product-page-layout{grid-template-columns:1fr}.product-sidebar{position:static}.product-quick-info{grid-template-columns:repeat(2,1fr)}}@media (max-width:768px){.product-part-number{font-size:24px}.product-quick-info{grid-template-columns:1fr 1fr}.price-tiers{grid-template-columns:repeat(3,1fr)}}.category-page-layout{display:grid;grid-template-columns:260px 1fr;gap:var(--space-xl);align-items:start}.category-sidebar{position:sticky;top:calc(var(--header-height) + 60px)}.filter-section{background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:var(--space-md);margin-bottom:var(--space-md)}.filter-title{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--color-text-secondary);margin-bottom:var(--space-sm);padding-bottom:var(--space-sm);border-bottom:1px solid var(--color-border)}.filter-list{display:flex;flex-direction:column;gap:2px}.filter-item{display:flex;align-items:center;gap:6px;padding:6px 8px;font-size:13px;color:var(--color-text-secondary);border-radius:var(--radius-sm);transition:all var(--transition-fast);text-decoration:none}.filter-item:hover{background:var(--color-bg-hover);color:var(--color-accent)}.filter-item.active{background:rgba(255,107,0,.12);color:var(--color-accent);font-weight:600;border-left:2px solid var(--color-accent)}.category-main{min-width:0}.category-header-area{gap:var(--space-md);margin-bottom:var(--space-xl);flex-wrap:wrap}.all-categories-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:var(--space-lg)}.all-cat-card{padding:var(--space-lg)}.all-cat-header{display:flex;gap:var(--space-md);text-decoration:none;color:var(--color-text-primary);margin-bottom:var(--space-md);padding-bottom:var(--space-md);border-bottom:1px solid var(--color-border)}.all-cat-header:hover h2{color:var(--color-accent)}.all-cat-children{display:flex;flex-wrap:wrap;gap:var(--space-xs)}.all-cat-child-link{padding:4px 10px;background:var(--color-bg-secondary);border:1px solid var(--color-border);border-radius:var(--radius-full);color:var(--color-text-muted);transition:all var(--transition-fast);text-decoration:none}.all-cat-child-link:hover{color:var(--color-accent);border-color:var(--color-accent);background:rgba(255,107,0,.08)}.pagination{gap:var(--space-sm);margin-top:var(--space-xl)}.pagination,.pagination-btn{display:flex;align-items:center;justify-content:center}.pagination-btn{min-width:36px;height:36px;padding:0 12px;font-size:13px;font-weight:600;color:var(--color-text-secondary);background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-md);text-decoration:none;transition:all var(--transition-fast)}.pagination-btn:hover{background:var(--color-bg-hover);border-color:var(--color-border-hover);color:var(--color-text-primary)}.pagination-btn.active{background:var(--color-accent);border-color:var(--color-accent);color:#fff}.pagination-dots{color:var(--color-text-muted);padding:0 4px}.search-page-header{margin-bottom:var(--space-lg)}.search-page-form .hero-search{margin-bottom:var(--space-xl)}.empty-state{text-align:center;padding:var(--space-3xl) var(--space-lg)}.empty-state h3{font-size:20px;font-weight:700;margin-bottom:var(--space-sm)}.empty-state p{color:var(--color-text-muted);max-width:450px;margin:0 auto;line-height:1.7}@media (max-width:1024px){.category-page-layout{grid-template-columns:1fr}.category-sidebar{position:static;display:flex;gap:var(--space-md);overflow-x:auto}.filter-section{flex-shrink:0;min-width:200px;margin-bottom:0}}@media (max-width:768px){.all-categories-grid{grid-template-columns:1fr}.category-header-area{flex-direction:column}}.rfq-header{align-items:flex-start;justify-content:space-between;gap:var(--space-xl);margin-bottom:var(--space-2xl)}.rfq-benefits,.rfq-header{display:flex;flex-wrap:wrap}.rfq-benefits{gap:var(--space-md)}.rfq-benefit{display:flex;align-items:center;gap:6px;font-size:13px;font-weight:600;color:var(--color-text-secondary);padding:8px 14px;border:1px solid var(--color-border);border-radius:var(--radius-md)}.rfq-benefit,.rfq-section{background:var(--color-bg-card)}.rfq-section{border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:var(--space-xl);margin-bottom:var(--space-lg)}.rfq-section-title{display:flex;align-items:center;gap:var(--space-sm);font-weight:700;margin-bottom:var(--space-lg);padding-bottom:var(--space-md);border-bottom:1px solid var(--color-border)}.rfq-parts-header{display:flex;gap:var(--space-sm);padding:0 0 var(--space-sm);margin-bottom:var(--space-sm)}.rfq-col-label{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.5px;color:var(--color-text-muted)}.rfq-part-row{display:flex;gap:var(--space-sm);margin-bottom:var(--space-sm);align-items:center}.rfq-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-md)}.rfq-field{display:flex;flex-direction:column;gap:6px}.rfq-label{font-size:13px;font-weight:600;color:var(--color-text-secondary)}.rfq-submit-area{display:flex;align-items:center;justify-content:space-between;gap:var(--space-lg);padding:var(--space-lg) 0}.rfq-success-card{text-align:center;padding:var(--space-3xl);background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-lg);max-width:600px;margin:0 auto}.btn-icon-danger{display:flex;align-items:center;justify-content:center;width:36px;height:36px;background:transparent;border:1px solid var(--color-border);border-radius:var(--radius-md);color:var(--color-text-muted);cursor:pointer;transition:all var(--transition-fast);font-size:14px}.btn-icon-danger:hover:not(:disabled){background:rgba(255,61,0,.1);border-color:var(--color-danger);color:var(--color-danger)}.btn-icon-danger:disabled{opacity:.3;cursor:not-allowed}.spinner{display:inline-block;width:16px;height:16px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:spin .6s linear infinite}@keyframes spin{to{transform:rotate(1turn)}}.rfq-bom-description{font-size:14px;color:var(--color-text-muted);line-height:1.6;margin-bottom:var(--space-md)}.rfq-bom-dropzone{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:var(--space-md);padding:var(--space-2xl) var(--space-xl);border:2px dashed var(--color-border);border-radius:var(--radius-lg);background:var(--color-bg-secondary);cursor:pointer;transition:all .25s ease;text-align:center}.rfq-bom-dropzone:hover{border-color:var(--color-accent);background:rgba(255,107,0,.04)}.rfq-bom-dropzone.drag-active{border-color:var(--color-accent);background:rgba(255,107,0,.08);box-shadow:0 0 0 4px rgba(255,107,0,.1);transform:scale(1.01)}.rfq-bom-dropzone-icon{width:64px;height:64px;border-radius:50%;background:rgba(255,107,0,.1);display:flex;align-items:center;justify-content:center;color:var(--color-accent);transition:transform .25s ease}.rfq-bom-dropzone:hover .rfq-bom-dropzone-icon{transform:translateY(-2px)}.rfq-bom-dropzone.drag-active .rfq-bom-dropzone-icon{transform:scale(1.1);background:rgba(255,107,0,.18)}.rfq-bom-dropzone-text{display:flex;flex-direction:column;gap:4px}.rfq-bom-dropzone-text strong{font-size:15px;font-weight:700;color:var(--color-text-primary)}.rfq-bom-dropzone-text span{font-size:13px;color:var(--color-text-muted)}.rfq-bom-dropzone-formats{font-size:11px;color:var(--color-text-muted);padding:6px 14px;background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-full)}.rfq-bom-file-preview{display:flex;align-items:center;justify-content:space-between;gap:var(--space-md);padding:var(--space-md) var(--space-lg);background:rgba(16,185,129,.06);border:1px solid rgba(16,185,129,.25);border-radius:var(--radius-lg);animation:fade-in .3s ease}@keyframes fade-in{0%{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}.rfq-bom-file-info{display:flex;align-items:center;gap:var(--space-md);min-width:0}.rfq-bom-file-icon{font-size:28px;flex-shrink:0}.rfq-bom-file-details{display:flex;flex-direction:column;gap:2px;min-width:0}.rfq-bom-file-name{font-size:14px;font-weight:600;color:var(--color-text-primary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.rfq-bom-file-size{font-size:12px;color:var(--color-text-muted)}.rfq-bom-file-remove{display:flex;align-items:center;gap:4px;padding:6px 14px;background:transparent;border:1px solid rgba(239,68,68,.3);border-radius:var(--radius-md);color:#f87171;font-size:12px;font-weight:600;cursor:pointer;transition:all .2s ease;flex-shrink:0}.rfq-bom-file-remove:hover{background:rgba(239,68,68,.1);border-color:rgba(239,68,68,.5)}.rfq-message-hint{font-size:13px;color:var(--color-text-muted);line-height:1.6;margin-bottom:var(--space-sm)}@media (max-width:768px){.rfq-parts-header{display:none}.rfq-part-row{flex-wrap:wrap}.rfq-part-row .input{flex:1 1 45%!important}.rfq-contact-grid{grid-template-columns:1fr}.rfq-contact-grid .rfq-field[style*="span 2"]{grid-column:span 1!important}.rfq-header,.rfq-submit-area{flex-direction:column}.rfq-bom-dropzone{padding:var(--space-xl) var(--space-md)}.rfq-bom-file-preview{flex-direction:column;align-items:flex-start}}.manufacturer-header{display:flex;align-items:center;gap:var(--space-lg);margin-bottom:var(--space-xl);padding-bottom:var(--space-xl);border-bottom:1px solid var(--color-border)}.manufacturer-logo-placeholder{width:72px;height:72px;border-radius:var(--radius-lg);background:linear-gradient(135deg,var(--color-bg-tertiary),var(--color-bg-hover));display:flex;justify-content:center;font-size:28px;font-weight:800;color:var(--color-accent);flex-shrink:0}.manufacturer-cat-badge,.manufacturer-logo-placeholder{border:1px solid var(--color-border);align-items:center}.manufacturer-cat-badge{display:inline-flex;gap:4px;padding:6px 14px;background:var(--color-bg-secondary);border-radius:var(--radius-full);font-size:13px;color:var(--color-text-secondary);text-decoration:none;transition:all var(--transition-fast)}.manufacturer-cat-badge:hover{border-color:var(--color-accent);color:var(--color-accent);background:rgba(255,107,0,.08)}.manufacturer-cat-badge .count{font-size:11px;color:var(--color-text-muted)}.manufacturers-letter-index{display:flex;flex-wrap:wrap;gap:4px;margin-bottom:var(--space-xl);padding:var(--space-md);background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-lg)}.letter-link{display:flex;align-items:center;justify-content:center;width:36px;height:36px;font-size:14px;font-weight:700;color:var(--color-text-secondary);border-radius:var(--radius-md);transition:all var(--transition-fast);text-decoration:none}.letter-link:hover{background:var(--color-accent);color:#fff}.manufacturer-letter-group{margin-bottom:var(--space-xl)}.letter-heading{font-size:24px;font-weight:800;color:var(--color-accent);padding-bottom:var(--space-sm);border-bottom:2px solid var(--color-accent);margin-bottom:var(--space-md);display:inline-block}.manufacturer-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:var(--space-md)}.manufacturer-card{display:flex;align-items:center;gap:var(--space-md);padding:var(--space-md);background:var(--color-bg-card);border:1px solid var(--color-border);border-radius:var(--radius-md);text-decoration:none;color:var(--color-text-primary);transition:all var(--transition-fast)}.manufacturer-card:hover{border-color:var(--color-accent);background:var(--color-bg-hover);transform:translateY(-2px)}.manufacturer-logo-sm{width:42px;height:42px;border-radius:var(--radius-md);background:linear-gradient(135deg,var(--color-bg-tertiary),var(--color-bg-hover));border:1px solid var(--color-border);display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:800;color:var(--color-accent);flex-shrink:0}.manufacturer-name{font-size:14px;font-weight:600}.manufacturer-count{font-size:12px;color:var(--color-text-muted)}.text-accent{color:var(--color-accent)}.text-success{color:var(--color-success)}.text-danger{color:var(--color-danger)}@media (max-width:768px){.manufacturer-grid{grid-template-columns:1fr}.manufacturer-header{flex-direction:column;text-align:center}}.rfq-cart-indicator{position:relative}.rfq-count-badge{background:var(--color-accent)!important;color:white!important;font-size:11px!important;font-weight:700!important;min-width:18px;height:18px;border-radius:9px;display:flex;align-items:center;justify-content:center;padding:0 5px;animation:badge-pop .3s ease}@keyframes badge-pop{0%{transform:scale(0)}50%{transform:scale(1.3)}to{transform:scale(1)}}.rfq-add-btn{transition:all .2s ease;position:relative}.btn-success,.rfq-add-btn.added{background:var(--color-success)!important;border-color:var(--color-success)!important;color:white!important}.rfq-cart-btn-icon{width:28px;height:28px;border-radius:6px;border:1px solid var(--color-border);background:var(--color-bg-secondary);color:var(--color-text-secondary);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .2s ease;position:relative}.rfq-cart-btn-icon:hover{background:rgba(255,107,0,.1)}.rfq-cart-btn-icon.in-cart,.rfq-cart-btn-icon:hover{border-color:var(--color-accent);color:var(--color-accent)}.rfq-mini-toast{bottom:100%;background:var(--color-success);color:white;font-size:11px;font-weight:600;padding:4px 8px;border-radius:4px;white-space:nowrap;pointer-events:none;animation:toast-in .3s ease;z-index:100;margin-bottom:4px}.rfq-mini-toast,.rfq-mini-toast:after{position:absolute;left:50%;transform:translateX(-50%)}.rfq-mini-toast:after{content:"";top:100%;border:4px solid transparent;border-top:4px solid var(--color-success)}.rfq-toast-popup{position:absolute;top:-40px;left:0;right:0;background:var(--color-success);color:white;font-size:13px;font-weight:600;padding:8px 16px;border-radius:8px;text-align:center;animation:toast-in .3s ease;z-index:100}@keyframes toast-in{0%{opacity:0;transform:translateX(-50%) translateY(4px)}to{opacity:1;transform:translateX(-50%) translateY(0)}}.rfq-cart-count-header{display:inline-block;font-size:14px;font-weight:500;color:var(--color-accent);margin-left:12px;padding:4px 12px;background:rgba(255,107,0,.1);border-radius:20px;vertical-align:middle}.rfq-part-row{position:relative}.rfq-part-row.from-cart{border-left:3px solid var(--color-accent);padding-left:12px;margin-left:-15px}.rfq-cart-badge{position:absolute;left:-8px;top:50%;transform:translateY(-50%);width:16px;height:16px;border-radius:50%;background:var(--color-accent);color:white;display:flex;z-index:2}.mobile-menu-toggle,.rfq-cart-badge{align-items:center;justify-content:center}.mobile-menu-toggle{display:none;width:40px;height:40px;background:none;border:1px solid var(--color-border);border-radius:var(--radius-md);color:var(--color-text-primary);cursor:pointer;font-size:20px;transition:all var(--transition-fast);flex-shrink:0}.mobile-menu-toggle:hover{background:var(--color-bg-tertiary);border-color:var(--color-border-hover)}@media (max-width:1024px){.search-bar{max-width:400px}.hero h1{font-size:36px}.hero-stats{gap:var(--space-lg)}.hero-stat-value{font-size:24px}.features-grid{grid-template-columns:repeat(2,1fr)}.footer-grid{grid-template-columns:1fr 1fr;gap:var(--space-xl)}.product-page-layout{grid-template-columns:1fr}.product-sidebar{position:static}.product-quick-info{grid-template-columns:repeat(2,1fr)}.category-page-layout{grid-template-columns:1fr}.category-sidebar{position:static;display:flex;gap:var(--space-md);overflow-x:auto}.filter-section{flex-shrink:0;min-width:200px;margin-bottom:0}}@media (max-width:768px){:root{--header-height:56px}.container{padding:0 var(--space-md)}.header{height:auto;min-height:var(--header-height);padding:var(--space-sm) 0}.header-inner{flex-wrap:wrap;justify-content:center}.search-bar{order:3;width:100%;max-width:100%;margin-top:var(--space-sm)}.header-actions .header-action span:not(.count),.mobile-menu-toggle{display:none}.header-actions{gap:var(--space-sm)}.header-action{padding:8px}.logo{font-size:16px}.logo-icon{width:28px;height:28px;font-size:14px}.category-bar-inner{padding:0 var(--space-md)}.cat-link{padding:10px 12px;font-size:12px}.hero{padding:var(--space-2xl) 0}.hero h1{font-size:26px;letter-spacing:-.5px}.hero p{font-size:15px}.hero-search .input{height:48px;font-size:14px;padding-left:44px;padding-right:100px}.hero-search .search-btn{padding:8px 16px;font-size:13px}.hero-stats{gap:var(--space-md);flex-wrap:wrap;justify-content:center}.hero-stat{flex:0 0 auto;min-width:80px}.hero-stat-value{font-size:20px}.hero-stat-label{font-size:11px}.category-grid{grid-template-columns:repeat(2,1fr);gap:var(--space-sm)}.category-card{padding:var(--space-md)}.category-icon{width:44px;height:44px;font-size:20px;margin-bottom:var(--space-sm)}.category-card h3{font-size:13px}.features-grid{grid-template-columns:1fr;gap:var(--space-md)}.feature-card{padding:var(--space-lg);text-align:left;display:flex;gap:var(--space-md);align-items:flex-start}.feature-icon{margin:0;width:48px;height:48px;flex-shrink:0;font-size:22px}.table-wrapper{margin-left:calc(-1 * var(--space-md));margin-right:calc(-1 * var(--space-md));border-radius:0;border-left:none;border-right:none}.table td,.table th{padding:10px 12px;font-size:13px}.card{padding:var(--space-md)}.section{padding:var(--space-2xl) 0}.section-header{flex-direction:column;gap:var(--space-sm);margin-bottom:var(--space-lg);text-align:center;align-items:center}.section-title{font-size:20px}.btn-lg{padding:12px 20px;font-size:14px}.footer-grid{grid-template-columns:1fr;gap:var(--space-lg)}.footer-brand{max-width:100%}.footer-bottom,.footer-brand,.footer-col{text-align:center}.footer-bottom{flex-direction:column;gap:var(--space-md)}.footer-certs{flex-wrap:wrap;justify-content:center}.product-part-number{font-size:22px}.product-quick-info{grid-template-columns:1fr 1fr;gap:var(--space-sm)}.price-tiers{grid-template-columns:repeat(3,1fr);gap:var(--space-xs)}.price-tier{padding:var(--space-sm)}.price-tier .qty{font-size:11px}.price-tier .price{font-size:14px}.rfq-header{flex-direction:column;text-align:center;align-items:center}.rfq-benefits{justify-content:center}.rfq-parts-header{display:none}.rfq-part-row{flex-wrap:wrap}.rfq-part-row .input{flex:1 1 45%!important;min-width:120px}.rfq-contact-grid{grid-template-columns:1fr}.rfq-contact-grid .rfq-field[style*="span 2"]{grid-column:span 1!important}.rfq-submit-area{flex-direction:column;text-align:center}.rfq-bom-dropzone{padding:var(--space-lg) var(--space-md)}.rfq-bom-file-preview{flex-direction:column;align-items:flex-start}.all-categories-grid{grid-template-columns:1fr}.category-header-area{flex-direction:column}.manufacturer-grid{grid-template-columns:1fr}.manufacturer-header{flex-direction:column;text-align:center}.manufacturers-letter-index{justify-content:center}.letter-link{width:32px;height:32px;font-size:12px}.search-page-form .hero-search{margin-bottom:var(--space-md)}.rfq-float{bottom:var(--space-md);right:var(--space-md)}.rfq-float .btn{padding:12px 18px;font-size:14px}.pagination{flex-wrap:wrap;gap:var(--space-xs)}.pagination-btn{min-width:32px;height:32px;font-size:12px}.breadcrumb{font-size:12px;flex-wrap:wrap}.blog-grid{grid-template-columns:1fr}}@media (max-width:480px){.hero h1{font-size:22px}.hero-stats{gap:var(--space-sm)}.hero-stat-value{font-size:18px}.category-grid{grid-template-columns:1fr 1fr;gap:var(--space-xs)}.category-card{padding:var(--space-sm)}.category-icon{width:36px;height:36px;font-size:16px;margin-bottom:var(--space-xs)}.category-card h3{font-size:12px}.product-quick-info{grid-template-columns:1fr}.price-tiers{grid-template-columns:repeat(2,1fr)}.rfq-part-row .input{flex:1 1 100%!important}.rfq-benefit{font-size:12px;padding:6px 10px}.brand-item{padding:var(--space-sm) var(--space-md);font-size:12px}.manufacturer-card{padding:var(--space-sm)}}@media (hover:none) and (pointer:coarse){.btn,.cat-link,.filter-item,.header-action,.pagination-btn{min-height:44px}.card:hover,.category-card:hover,.feature-card:hover,.manufacturer-card:hover{transform:none}}.product-toc{display:flex;flex-wrap:wrap;gap:var(--space-sm);margin-bottom:var(--space-lg);padding:var(--space-md);background:var(--color-bg-secondary);border:1px solid var(--color-border);border-radius:var(--radius-lg)}.product-toc-item{display:flex;align-items:center;gap:6px;padding:6px 14px;font-size:13px;font-weight:500;color:var(--color-text-secondary);text-decoration:none;border-radius:var(--radius-full);transition:all var(--transition-fast);white-space:nowrap}.product-toc-item:hover{color:var(--color-accent);background:var(--color-bg-tertiary)}.product-toc-num{display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;font-size:11px;font-weight:700;color:var(--color-accent);background:rgba(255,107,0,.12);border-radius:var(--radius-full)}.product-app-areas{display:flex;flex-wrap:wrap;gap:var(--space-sm)}.product-app-tag{display:inline-flex;align-items:center;gap:6px;padding:8px 16px;font-size:13px;font-weight:500;color:var(--color-text-secondary);background:var(--color-bg-secondary);border:1px solid var(--color-border);border-radius:var(--radius-full);transition:all var(--transition-fast)}.product-app-tag:hover{color:var(--color-blue);border-color:var(--color-blue);background:rgba(59,130,246,.08)}.product-faq-list{display:flex;flex-direction:column;gap:var(--space-sm)}.product-faq-item{background:var(--color-bg-secondary);border:1px solid var(--color-border);border-radius:var(--radius-lg);overflow:hidden;transition:border-color var(--transition-fast)}.product-faq-item[open]{border-color:var(--color-accent)}.product-faq-q{padding:var(--space-md) var(--space-lg);font-size:14px;font-weight:600;color:var(--color-text-primary);cursor:pointer;list-style:none;display:flex;align-items:center;gap:var(--space-sm)}.product-faq-q::-webkit-details-marker{display:none}.product-faq-q:before{content:"Q";display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;font-size:12px;font-weight:700;color:var(--color-accent);background:rgba(255,107,0,.12);border-radius:var(--radius-full);flex-shrink:0}.product-faq-q:after{content:"+";margin-left:auto;font-size:18px;color:var(--color-text-muted);transition:transform var(--transition-fast)}.product-faq-item[open] .product-faq-q:after{content:"−";color:var(--color-accent)}.product-faq-a{padding:0 var(--space-lg) var(--space-lg) calc(var(--space-lg) + 32px);font-size:14px;color:var(--color-text-secondary);line-height:1.7}.product-rich-desc p:last-child{margin-bottom:0}@media (max-width:640px){.product-toc{gap:4px;padding:var(--space-sm)}.product-toc-item{padding:4px 10px;font-size:12px}}:root{--color-bg-primary:#f6f8fb;--color-bg-secondary:#eef3f7;--color-bg-tertiary:#e2e8f0;--color-bg-card:#ffffff;--color-bg-hover:#f1f5f9;--color-bg-input:#ffffff;--color-accent:#0f766e;--color-accent-hover:#115e59;--color-accent-glow:rgba(15,118,110,0.16);--color-blue:#2563eb;--color-blue-hover:#1d4ed8;--color-blue-glow:rgba(37,99,235,0.14);--color-text-primary:#111827;--color-text-secondary:#374151;--color-text-muted:#6b7280;--color-text-accent:#0f766e;--color-border:#d8e0ea;--color-border-hover:#b6c3d1;--color-success:#15803d;--color-warning:#b45309;--color-danger:#dc2626;--color-info:#0369a1;--shadow-sm:0 1px 2px rgba(15,23,42,0.06);--shadow-md:0 10px 24px rgba(15,23,42,0.08);--shadow-lg:0 18px 44px rgba(15,23,42,0.12);--shadow-glow-accent:0 14px 30px rgba(15,118,110,0.16);--shadow-glow-blue:0 14px 30px rgba(37,99,235,0.14);--radius-lg:8px;--radius-xl:8px}body,html{background:var(--color-bg-primary)}body{color:var(--color-text-primary)}.product-part-number,.section-title,h1,h2,h3{letter-spacing:0}a{color:var(--color-blue)}.eyebrow{color:var(--color-accent);font-size:12px;font-weight:800;letter-spacing:0;margin-bottom:8px;text-transform:uppercase}.btn{border-radius:var(--radius-md);box-shadow:none}.btn-primary{background:#0f766e;border:1px solid #0f766e;color:#ffffff}.btn-primary:hover{background:#115e59;border-color:#115e59;box-shadow:var(--shadow-glow-accent);color:#ffffff}.btn-secondary{background:#ffffff;border:1px solid var(--color-border);color:var(--color-text-primary)}.btn-secondary:hover{background:#f8fafc;border-color:var(--color-border-hover);color:var(--color-text-primary)}.btn-outline{background:#ffffff;border-color:#0f766e;color:#0f766e}.input{background:#ffffff;border-color:#cbd5e1;color:var(--color-text-primary)}.input:focus{border-color:var(--color-blue);box-shadow:0 0 0 3px rgba(37,99,235,.14)}.card,.card-glass,.category-card,.feature-card,.filter-section,.quick-info-item,.rfq-section,.sidebar-action-card{background:#ffffff;border-color:var(--color-border);box-shadow:var(--shadow-sm)}.card:hover,.category-card:hover,.feature-card:hover,.sidebar-action-card:hover{border-color:var(--color-border-hover);box-shadow:var(--shadow-md);transform:none}.badge{border-radius:4px}.badge-success{background:#dcfce7;color:#166534}.badge-warning{background:#fef3c7;color:#92400e}.badge-danger{background:#fee2e2;color:#991b1b}.badge-info{background:#e0f2fe;color:#075985}.table-wrapper{background:#ffffff;border-color:var(--color-border);border-radius:8px;box-shadow:var(--shadow-sm)}.table th{background:#f8fafc;color:#475569;letter-spacing:0}.table td{color:#334155}.table tr:hover td{background:#f8fafc}.table td.part-number a{color:#1d4ed8;font-weight:800}.top-trust-strip{background:#0f172a;color:#dbeafe;font-size:12px}.top-trust-inner{align-items:center;display:flex;gap:24px;justify-content:center;margin:0 auto;max-width:var(--max-width);min-height:32px;padding:0 var(--space-lg)}.top-trust-inner span{align-items:center;display:inline-flex;gap:6px;white-space:nowrap}.top-trust-inner span:before{background:#22c55e;border-radius:999px;content:"";height:6px;width:6px}.header{background:rgba(255,255,255,.96);border-bottom-color:var(--color-border);box-shadow:0 1px 0 rgba(15,23,42,.04)}.logo{color:var(--color-text-primary)}.logo-icon{background:#0f766e;border-radius:6px}.search-bar{max-width:680px}.hero-search .input,.search-bar .input{border-radius:8px;background:#ffffff}.search-btn{border-radius:6px}.header-action{border:1px solid transparent;color:var(--color-text-secondary)}.header-action:hover{background:#f8fafc;border-color:var(--color-border);color:var(--color-text-primary)}.header-rfq-btn{min-height:40px}.category-bar{background:#ffffff;border-bottom-color:var(--color-border)}.cat-link{color:#334155;font-weight:700}.cat-link:hover{background:#f0fdfa;color:#0f766e}.cat-more-dropdown{background:#ffffff;border-color:var(--color-border);box-shadow:var(--shadow-lg)}.b2b-hero{background:linear-gradient(180deg,#ffffff,#eef7f6);border-bottom:1px solid var(--color-border);padding:56px 0}.hero:before{display:none}.b2b-hero-grid{display:grid;gap:40px;grid-template-columns:minmax(0,1.25fr) 380px;margin:0;max-width:none;text-align:left}.b2b-hero-copy{min-width:0}.hero h1{color:#0f172a;font-size:44px;letter-spacing:0;max-width:820px}.hero h1 .highlight{background:none;color:#0f766e;-webkit-text-fill-color:currentColor}.hero p{color:#475569;font-size:17px;max-width:760px}.hero-search{margin:0 0 16px;max-width:720px}.hero-actions{display:flex;flex-wrap:wrap;gap:12px}.hero-stats{align-content:start;display:grid;gap:12px;grid-template-columns:repeat(2,minmax(0,1fr));margin:0}.hero-stat{background:#ffffff;border:1px solid var(--color-border);border-radius:8px;box-shadow:var(--shadow-sm);padding:16px;text-align:left}.hero-stat-value{color:#0f172a;font-size:26px}.hero-stat-label{color:#64748b}.hero-rfq-panel{background:#0f172a;border-radius:8px;color:#ffffff;grid-column:1/-1;padding:20px}.hero-rfq-panel h2{font-size:18px;margin-bottom:12px}.hero-rfq-panel ol{display:grid;gap:10px;list-style:none;margin:0 0 16px;padding:0}.hero-rfq-panel li{align-items:center;color:#cbd5e1;display:flex;gap:10px}.hero-rfq-panel li span{align-items:center;background:#14b8a6;border-radius:999px;color:#ffffff;display:inline-flex;flex:0 0 auto;font-size:12px;font-weight:800;height:24px;justify-content:center;width:24px}.section{padding:52px 0}.section-header{align-items:flex-end}.category-grid{grid-template-columns:repeat(auto-fill,minmax(220px,1fr))}.category-card{align-items:flex-start;border-radius:8px;padding:18px;text-align:left}.category-icon{background:#f0fdfa;border-color:#ccfbf1;border-radius:8px}.features-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.feature-card{border-radius:8px;padding:20px;text-align:left}.feature-icon{background:#eff6ff;border:1px solid #dbeafe;border-radius:6px;color:#1d4ed8;font-size:13px;font-weight:900;height:42px;margin:0 0 14px;width:52px}.brand-item{background:#ffffff;border-radius:6px;color:#334155}.footer{background:#0f172a;color:#e5e7eb}.footer-rfq-band{align-items:center;background:#ffffff;border:1px solid rgba(255,255,255,.16);border-radius:8px;display:flex;gap:24px;justify-content:space-between;margin-bottom:40px;padding:24px}.footer-rfq-band h2{color:#0f172a;font-size:22px;margin-bottom:6px}.footer-rfq-band p{color:#475569;font-size:14px}.footer-rfq-actions{display:flex;flex-wrap:wrap;gap:10px}.footer .logo,.footer-col h4{color:#ffffff}.footer-bottom,.footer-brand p,.footer-cert,.footer-col a{color:#cbd5e1}.footer-trust-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}.footer-trust-row span{border:1px solid rgba(255,255,255,.18);border-radius:4px;color:#d1fae5;font-size:11px;font-weight:700;padding:4px 8px}.category-header-area{align-items:flex-start;background:#ffffff;border:1px solid var(--color-border);border-radius:8px;box-shadow:var(--shadow-sm);display:flex;justify-content:space-between;margin-bottom:20px;padding:22px}.category-header-actions{align-items:center;display:flex;flex-wrap:wrap;gap:10px;justify-content:flex-end}.category-sidebar{top:126px}.filter-title{color:#0f172a;letter-spacing:0}.filter-item.active{background:#f0fdfa;border-left-color:#0f766e}.all-cat-card{border-radius:8px}.product-toc{border-radius:8px}.product-header-section,.product-toc{background:#ffffff;box-shadow:var(--shadow-sm)}.product-header-section{border:1px solid var(--color-border);border-radius:8px;margin-bottom:18px;padding:22px}.product-part-number{color:#0f172a}.product-manufacturer a{color:#1d4ed8;font-weight:700}.product-availability{background:#f8fafc;border:1px solid var(--color-border);border-radius:8px;margin-top:18px;padding:12px 14px}.product-quick-info{grid-template-columns:repeat(6,minmax(0,1fr))}.quick-info-item{border-radius:8px;text-align:left}.quick-info-item.priority{border-color:#99f6e4;background:#f0fdfa}.quick-info-label{letter-spacing:0}.quick-info-value{overflow-wrap:anywhere}.product-procurement-strip{align-items:center;background:#fffbeb;border:1px solid #fde68a;border-radius:8px;display:flex;gap:16px;justify-content:space-between;margin-bottom:24px;padding:16px}.product-procurement-strip strong{color:#78350f;display:block;font-size:14px}.product-procurement-strip span{color:#92400e;font-size:13px}.product-procurement-actions{display:flex;flex-wrap:wrap;gap:8px}.product-section{background:#ffffff;border:1px solid var(--color-border);border-radius:8px;box-shadow:var(--shadow-sm);margin-bottom:18px;padding:22px}.product-section-title{border-bottom:0;display:block;font-size:20px;margin-bottom:16px;padding-bottom:0}.price-tier{background:#f8fafc;border-radius:8px}.product-sidebar{top:126px}.sidebar-action-card{border-radius:8px}.sidebar-info-row{color:#475569}.rfq-header{background:#ffffff;border:1px solid var(--color-border);border-radius:8px;box-shadow:var(--shadow-sm);margin-bottom:20px;padding:24px}.rfq-benefit{background:#f8fafc;border-radius:6px;color:#334155}.rfq-benefit span{color:#0f766e;font-size:11px;font-weight:900}.rfq-layout{align-items:start;display:grid;gap:24px;grid-template-columns:minmax(0,1fr) 320px}.rfq-form-main{min-width:0}.rfq-section{border-radius:8px;padding:22px}.rfq-section-title{color:#0f172a}.rfq-bom-dropzone{background:#f8fafc;border-radius:8px}.rfq-bom-dropzone-icon{background:#f0fdfa;color:#0f766e}.rfq-side-panel{display:grid;gap:16px;position:sticky;top:126px}.rfq-side-card{background:#ffffff;border:1px solid var(--color-border);border-radius:8px;box-shadow:var(--shadow-sm);padding:20px}.rfq-side-card h2{font-size:17px;margin-bottom:12px}.rfq-side-card ul{color:#475569;display:grid;font-size:13px;gap:10px;line-height:1.5;margin:0;padding-left:18px}.rfq-side-card p{color:#475569;font-size:13px;line-height:1.6}.rfq-side-card.accent{background:#f0fdfa;border-color:#99f6e4}.rfq-submit-area{background:#ffffff;border:1px solid var(--color-border);border-radius:8px;box-shadow:var(--shadow-sm);margin-bottom:0;padding:18px}.rfq-float .btn{animation:none;border-radius:8px}@media (max-width:1180px){.product-quick-info{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (max-width:1024px){.b2b-hero-grid,.rfq-layout{grid-template-columns:1fr}.category-sidebar,.product-sidebar,.rfq-side-panel{position:static}}@media (max-width:768px){.top-trust-inner{justify-content:flex-start;overflow-x:auto}.header{height:auto;min-height:var(--header-height)}.header-inner{justify-content:space-between}.search-bar{display:block}.header-bom-link,.header-rfq-btn{display:none}.hero h1{font-size:30px}.hero-search .input{padding-right:104px}.hero-stats{grid-template-columns:1fr 1fr}.category-header-area,.footer-rfq-band,.product-procurement-strip,.rfq-submit-area,.section-header{align-items:flex-start;flex-direction:column}.category-header-actions{justify-content:flex-start}.features-grid{grid-template-columns:1fr}.feature-card{display:block}.product-header-section>div:first-child{flex-direction:column}.product-quick-info{grid-template-columns:1fr 1fr}}@media (max-width:520px){.hero-stats,.product-quick-info{grid-template-columns:1fr}.hero-search .input{height:96px;padding-bottom:48px;padding-right:16px}.hero-search .search-btn{bottom:8px;left:44px;right:8px;top:auto;transform:none}}:root{--color-accent:#ef4f24;--color-accent-hover:#d83f18;--color-accent-glow:rgba(239,79,36,0.22);--color-blue:#174ea6;--color-blue-hover:#0f3a7a;--color-bg-primary:#f4f6fa;--color-bg-secondary:#eef2f7;--color-border:#d7deea}.btn-primary,.search-btn{background:linear-gradient(135deg,#ff6a2a,#e43d1f);border-color:#e43d1f}.btn-primary:hover,.search-btn:hover{background:linear-gradient(135deg,#ff7b3f,#c93417);border-color:#c93417}.logo-icon{background:linear-gradient(135deg,#ff6a2a,#e43d1f);box-shadow:0 10px 20px rgba(228,61,31,.22)}.top-trust-strip{background:linear-gradient(90deg,#101827,#1a2436 52%,#2a1720)}.header{border-bottom:0;box-shadow:0 10px 28px rgba(15,23,42,.08)}.category-bar{box-shadow:inset 0 -1px 0 var(--color-border)}.cat-link:hover{background:#fff4ef;color:#e43d1f}.b2b-hero{background:linear-gradient(90deg,rgba(13,20,35,.93),rgba(14,25,44,.86) 44%,rgba(19,29,46,.35)),url(/hero_bg.png) 100% /cover no-repeat;background-image:linear-gradient(90deg,rgba(13,20,35,.93),rgba(14,25,44,.86) 44%,rgba(19,29,46,.35)),-webkit-image-set(url("/hero_bg.webp") type("image/webp"),url("/hero_bg.png") type("image/png"));background-image:linear-gradient(90deg,rgba(13,20,35,.93),rgba(14,25,44,.86) 44%,rgba(19,29,46,.35)),image-set(url("/hero_bg.webp") type("image/webp"),url("/hero_bg.png") type("image/png"));border-bottom:0;min-height:560px;padding:72px 0 46px}.b2b-hero-grid{align-items:center;grid-template-columns:minmax(0,1fr) 420px}.b2b-hero .eyebrow,.hero h1,.hero p{color:#ffffff}.hero h1{font-size:52px;line-height:1.04;text-shadow:0 18px 44px rgba(0,0,0,.35)}.hero h1 .highlight{color:#ffb199}.hero p{color:#d7e2ee}.b2b-hero .eyebrow{align-items:center;display:inline-flex;gap:8px}.b2b-hero .eyebrow:before{background:#ff6a2a;border-radius:999px;content:"";height:8px;width:8px}.hero-search{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);border-radius:12px;box-shadow:0 24px 60px rgba(0,0,0,.28);padding:8px}.hero-search .input{border:0;border-radius:8px;height:58px}.hero-search .search-btn{right:14px}.hero-actions .btn-secondary{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.28);color:#ffffff}.hero-actions .btn-secondary:hover{background:rgba(255,255,255,.22);color:#ffffff}.hero-stats{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);border-radius:16px;box-shadow:0 28px 70px rgba(0,0,0,.3);padding:14px}.hero-stat{background:rgba(255,255,255,.92);border:0;border-radius:10px}.hero-rfq-panel{background:linear-gradient(135deg,rgba(255,106,42,.92),rgba(185,38,20,.92));border:1px solid rgba(255,255,255,.2);border-radius:12px}.hero-rfq-panel li{color:#fff8f4}.hero-rfq-panel li span{background:rgba(255,255,255,.22)}.hero-rfq-panel .btn-primary{background:#ffffff;border-color:#ffffff;color:#c93417}.home-service-nav{margin-top:-34px;position:relative;z-index:4}.home-service-nav-grid{background:#ffffff;border-radius:10px;box-shadow:0 24px 60px rgba(15,23,42,.16);display:grid;grid-template-columns:repeat(4,minmax(0,1fr));overflow:hidden}.home-service-nav-item{border-right:1px solid var(--color-border);color:#111827;display:grid;gap:5px;min-height:96px;padding:22px;text-decoration:none}.home-service-nav-item:last-child{border-right:0}.home-service-nav-item span{color:#ef4f24;font-size:12px;font-weight:900;text-transform:uppercase}.home-service-nav-item strong{color:#172033;font-size:16px;line-height:1.25}.home-service-nav-item:hover{background:#fff4ef}.home-service-nav-item.primary{background:#172033}.home-service-nav-item.primary span,.home-service-nav-item.primary strong{color:#ffffff}.section-title{color:#172033;font-size:28px}.table-wrapper{border:0;box-shadow:0 18px 44px rgba(15,23,42,.08)}.table th{background:#172033;color:#e5edf7}.table td.part-number a{color:#174ea6}.category-card{background:linear-gradient(180deg,#ffffff,#f8fafc);border:0;box-shadow:0 14px 34px rgba(15,23,42,.08);min-height:150px;position:relative;overflow:hidden}.category-card:after{background:linear-gradient(135deg,rgba(239,79,36,.12),transparent);content:"";height:90px;position:absolute;right:-24px;top:-24px;transform:rotate(18deg);width:110px}.category-card:hover{box-shadow:0 22px 46px rgba(239,79,36,.14)}.quality-showcase{background:linear-gradient(90deg,rgba(15,23,42,.94),rgba(23,32,51,.88)),url(/quality_hero.png) 50% /cover no-repeat;background-image:linear-gradient(90deg,rgba(15,23,42,.94),rgba(23,32,51,.88)),-webkit-image-set(url("/quality_hero.webp") type("image/webp"),url("/quality_hero.png") type("image/png"));background-image:linear-gradient(90deg,rgba(15,23,42,.94),rgba(23,32,51,.88)),image-set(url("/quality_hero.webp") type("image/webp"),url("/quality_hero.png") type("image/png"));color:#ffffff;margin-top:16px}.quality-showcase .eyebrow,.quality-showcase .section-subtitle,.quality-showcase .section-title{color:#ffffff}.quality-showcase .section-subtitle{opacity:.78}.quality-showcase .btn-secondary{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.26);color:#ffffff}.quality-showcase .feature-card{background:rgba(255,255,255,.11);border:1px solid rgba(255,255,255,.16);box-shadow:none}.quality-showcase .feature-card h3{color:#ffffff}.quality-showcase .feature-card p{color:rgba(255,255,255,.74)}.quality-showcase .feature-icon{background:rgba(239,79,36,.2);border-color:rgba(255,255,255,.18);color:#ffb199}.brands-marquee-wrapper{background:#ffffff;border-radius:10px;box-shadow:0 16px 40px rgba(15,23,42,.08);padding:18px 0}.card-glass{background:linear-gradient(135deg,#172033,#26354f 55%,#ef4f24 160%);border:0;box-shadow:0 22px 56px rgba(15,23,42,.18);color:#ffffff}.card-glass h2,.card-glass p{color:#ffffff!important}.card-glass .btn-secondary{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.26);color:#ffffff}.footer-rfq-band{background:linear-gradient(135deg,#fff7ed,#ffffff 58%,#fee2e2);border:0;box-shadow:0 18px 44px rgba(0,0,0,.18)}@media (max-width:1024px){.b2b-hero{min-height:auto}.home-service-nav{margin-top:0}.home-service-nav-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.home-service-nav-item:nth-child(2){border-right:0}}@media (max-width:768px){.b2b-hero{padding:44px 0 34px}.hero h1{font-size:34px}.hero-stats{padding:10px}}@media (max-width:520px){.home-service-nav-grid{grid-template-columns:1fr}.home-service-nav-item{border-right:0;border-bottom:1px solid var(--color-border);min-height:82px}}:root{--font-sans:var(--font-inter,Inter),"Inter","Segoe UI",Arial,Helvetica,sans-serif;--font-mono:ui-monospace,"SF Mono","Cascadia Code","Segoe UI Mono",Consolas,"Fira Code",monospace;--max-width:1320px}body,button,input,select,textarea{font-family:var(--font-sans)}body{font-size:15px;line-height:1.55}.top-trust-inner{font-size:11px;min-height:28px}.header{height:58px}.header-inner{gap:18px}.logo{font-size:18px;letter-spacing:0}.logo-icon{height:30px;width:30px}.search-bar .input{height:38px;padding-left:42px}.search-bar .search-btn{min-width:76px;padding:6px 14px}.header-action{font-size:13px;padding:7px 10px}.header-rfq-btn{min-height:38px;padding:9px 18px}.category-bar-inner{min-height:40px}.cat-link{font-size:12px;padding:9px 10px}.b2b-hero{min-height:520px;padding:60px 0 42px}.b2b-hero-grid{gap:48px;grid-template-columns:minmax(0,1fr) 390px}.hero h1{font-size:clamp(38px,4.1vw,50px);line-height:1.08;max-width:760px}.hero p{font-size:16px;line-height:1.75;max-width:700px}.hero-search{max-width:680px;padding:7px}.hero-search .input{font-size:15px;height:54px}.hero-search .search-btn{font-size:14px;height:42px;min-width:132px}.hero-actions{margin-top:14px}.hero-actions .btn{min-width:148px}.hero-stats{background:rgba(11,18,31,.54);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);border-radius:14px;gap:10px;padding:12px}.hero-stat{background:rgba(255,255,255,.96);min-height:98px;padding:18px}.hero-stat-value{font-size:25px;line-height:1}.hero-rfq-panel{padding:22px}.hero-rfq-panel h2{font-size:20px}.hero-rfq-panel li{font-size:13px;line-height:1.35}.home-service-nav{margin-top:-28px}.home-service-nav-grid{border:1px solid rgba(15,23,42,.08)}.home-service-nav-item{min-height:86px;padding:18px 20px}.home-service-nav-item strong{font-size:15px}.section{padding:46px 0}.section-title{font-size:26px}.section-subtitle,.table{font-size:13px}.table th{font-size:11px;padding:12px 14px}.table td{padding:12px 14px;vertical-align:middle}.table td.part-number a{font-size:13px}.rfq-float{bottom:18px;right:18px}.rfq-float .btn{box-shadow:0 14px 32px rgba(228,61,31,.24);padding:12px 18px}.all-categories-grid{gap:22px}.all-cat-card{background:linear-gradient(180deg,#ffffff,#fbfcff);border:0;box-shadow:0 16px 36px rgba(15,23,42,.08);min-height:246px;overflow:hidden;position:relative}.all-cat-card:before{background:linear-gradient(90deg,#ff6a2a,#174ea6);content:"";height:4px;left:0;position:absolute;right:0;top:0}.all-cat-header{align-items:center;gap:16px;padding-bottom:18px}.all-cat-header h2{font-size:18px!important;line-height:1.3}.all-cat-children{border-top-color:#e5ebf3;padding-top:16px}.all-cat-child-link{background:#f4f7fb;border-color:#dbe4ef;color:#344054;font-size:12px}.rfq-header{background:linear-gradient(135deg,#ffffff,#fff7ed 66%,#fee2e2);padding:28px 30px}.rfq-header h1{font-size:34px!important;line-height:1.1}.rfq-section,.rfq-side-card{border:0;box-shadow:0 16px 36px rgba(15,23,42,.08)}.rfq-section-title{border-bottom-color:#e5ebf3;font-size:18px}.rfq-parts-header{background:#f8fafc;border-radius:6px;margin-bottom:10px;padding:9px 12px}.rfq-col-label{color:#5b6678;font-size:10px}.rfq-part-row{gap:8px}.rfq-bom-dropzone{min-height:250px}.rfq-side-card.accent{background:linear-gradient(180deg,#ecfdf5,#f0fdfa)}.category-header-area,.product-header-section,.product-section,.product-toc{border:0;box-shadow:0 16px 36px rgba(15,23,42,.08)}.category-header-area{background:linear-gradient(135deg,#ffffff,#f8fafc 70%,#fff7ed)}.product-procurement-strip{box-shadow:0 14px 30px rgba(180,83,9,.1)}@media (max-width:768px){.header-inner{gap:10px}.hero h1{font-size:32px}.hero p{font-size:15px}.home-service-nav-item{min-height:76px}.rfq-header h1{font-size:28px!important}}@media (max-width:1024px){.b2b-hero-grid{grid-template-columns:1fr}}@media (max-width:768px){.b2b-hero{background:linear-gradient(180deg,rgba(13,20,35,.94),rgba(13,20,35,.88)),url(/hero_bg.png) 50% /cover no-repeat;background-image:linear-gradient(180deg,rgba(13,20,35,.94),rgba(13,20,35,.88)),-webkit-image-set(url("/hero_bg.webp") type("image/webp"),url("/hero_bg.png") type("image/png"));background-image:linear-gradient(180deg,rgba(13,20,35,.94),rgba(13,20,35,.88)),image-set(url("/hero_bg.webp") type("image/webp"),url("/hero_bg.png") type("image/png"));padding:38px 0 32px}.b2b-hero-grid{gap:22px}.b2b-hero-copy,.hero h1,.hero p{max-width:100%;width:100%}.hero h1{font-size:34px;-webkit-hyphens:none;hyphens:none;line-height:1.12;overflow-wrap:normal;word-break:normal}.hero p{line-height:1.65}.hero-search{margin-top:18px}.hero-stats{grid-template-columns:1fr 1fr}.hero-stat{min-height:88px;padding:14px}.hero-rfq-panel{padding:18px}.rfq-float{display:none}}@media (max-width:430px){.hero h1{font-size:31px}.hero-stats{grid-template-columns:1fr}.hero-search .input{height:92px}}.hero-rfq-panel{background:linear-gradient(135deg,rgba(255,90,36,.98),rgba(179,39,19,.98))}.hero-rfq-panel h2,.hero-rfq-panel li{text-shadow:0 1px 1px rgba(0,0,0,.18)}.growth-hero{background:linear-gradient(90deg,rgba(13,20,35,.94),rgba(18,31,52,.9) 54%,rgba(36,50,74,.72)),-webkit-image-set(url("/hero_bg.webp") type("image/webp"),url("/hero_bg.png") type("image/png"));background:linear-gradient(90deg,rgba(13,20,35,.94),rgba(18,31,52,.9) 54%,rgba(36,50,74,.72)),image-set(url("/hero_bg.webp") type("image/webp"),url("/hero_bg.png") type("image/png"));background-position:50%;background-size:cover;color:#ffffff;padding:68px 0 54px}.growth-hero-grid{align-items:center;display:grid;gap:42px;grid-template-columns:minmax(0,1fr) 330px}.growth-hero h1{color:#ffffff;font-size:clamp(36px,4vw,54px);line-height:1.06;margin:12px 0 18px;max-width:760px}.growth-hero p{color:#dbe7f5;font-size:16px;line-height:1.75;max-width:760px}.growth-search{margin:28px 0 18px;max-width:720px}.growth-hero-actions{display:flex;flex-wrap:wrap;gap:12px}.growth-scorecard{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);border-radius:14px;box-shadow:0 28px 70px rgba(0,0,0,.28);display:grid;gap:12px;padding:14px}.growth-scorecard div{background:rgba(255,255,255,.95);border-radius:8px;color:#172033;padding:18px}.growth-scorecard span{color:#ef4f24;display:block;font-size:28px;font-weight:900;line-height:1}.growth-scorecard strong{color:#475569;display:block;font-size:13px;margin-top:7px}.series-grid{display:grid;gap:18px;grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}.series-grid.compact{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}.series-card{background:#ffffff;border:1px solid rgba(15,23,42,.08);border-radius:8px;box-shadow:0 16px 36px rgba(15,23,42,.08);color:#172033;display:grid;min-height:210px;padding:22px;text-decoration:none;transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease}.series-grid.compact .series-card{min-height:170px}.series-card:hover{border-color:rgba(239,79,36,.34);box-shadow:0 22px 46px rgba(239,79,36,.14);transform:translateY(-2px)}.series-family{color:#ef4f24;font-size:11px;font-weight:900;letter-spacing:.04em;text-transform:uppercase}.series-card h2,.series-card h3{color:#172033;font-size:21px;line-height:1.2;margin:9px 0}.series-card p{color:#475569;font-size:13px;line-height:1.55;margin:0}.series-card-stats{align-self:end;border-top:1px solid #e5ebf3;display:flex;flex-wrap:wrap;gap:8px;margin-top:18px;padding-top:14px}.series-card-stats span,.series-intent-row span{background:#f8fafc;border:1px solid #e5ebf3;border-radius:4px;color:#475569;font-size:12px;font-weight:700;padding:5px 8px}.series-detail-hero{background:linear-gradient(135deg,#ffffff,#f8fafc 68%,#fff7ed);border-radius:8px;box-shadow:0 16px 36px rgba(15,23,42,.08);display:grid;gap:28px;grid-template-columns:minmax(0,1fr) 320px;margin-bottom:22px;padding:30px}.series-detail-hero h1{color:#172033;font-size:clamp(30px,3.4vw,44px);line-height:1.08;margin:10px 0 14px}.series-detail-hero p{color:#475569;font-size:15px;line-height:1.75;max-width:780px}.series-intent-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}.series-detail-card{background:#172033;border-radius:8px;color:#ffffff;display:grid;gap:12px;padding:18px}.series-detail-card div{background:rgba(255,255,255,.08);border-radius:6px;padding:12px}.series-detail-card strong{display:block;font-size:24px;line-height:1}.series-detail-card span{color:rgba(255,255,255,.72);display:block;font-size:12px;margin-top:6px}.series-risk-section{margin-top:34px}.series-risk-section h2{color:#172033;font-size:24px;margin-bottom:16px}.series-risk-grid{display:grid;gap:16px;grid-template-columns:repeat(3,minmax(0,1fr))}.series-risk-grid div{background:#ffffff;border-radius:8px;box-shadow:0 16px 36px rgba(15,23,42,.08);padding:20px}.series-risk-grid h3{color:#172033;font-size:16px;margin-bottom:8px}.series-risk-grid p{color:#475569;font-size:13px;line-height:1.6}@media (max-width:1024px){.growth-hero-grid,.series-detail-hero,.series-risk-grid{grid-template-columns:1fr}}@media (max-width:520px){.growth-hero{padding:42px 0 36px}.growth-hero h1{font-size:32px}.series-detail-hero{padding:22px}}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(/_next/static/media/ba9851c3c22cd980-s.woff2) format("woff2");unicode-range:u+0460-052f,u+1c80-1c8a,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(/_next/static/media/21350d82a1f187e9-s.woff2) format("woff2");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format("woff2");unicode-range:u+1f??}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format("woff2");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(/_next/static/media/df0a9ae256c0569c-s.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(/_next/static/media/8e9860b6e62d6359-s.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(/_next/static/media/ba9851c3c22cd980-s.woff2) format("woff2");unicode-range:u+0460-052f,u+1c80-1c8a,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(/_next/static/media/21350d82a1f187e9-s.woff2) format("woff2");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format("woff2");unicode-range:u+1f??}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format("woff2");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(/_next/static/media/df0a9ae256c0569c-s.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(/_next/static/media/8e9860b6e62d6359-s.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-family:Inter;font-style:normal;font-weight:500;font-display:swap;src:url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(/_next/static/media/ba9851c3c22cd980-s.woff2) format("woff2");unicode-range:u+0460-052f,u+1c80-1c8a,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(/_next/static/media/21350d82a1f187e9-s.woff2) format("woff2");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format("woff2");unicode-range:u+1f??}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format("woff2");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(/_next/static/media/df0a9ae256c0569c-s.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(/_next/static/media/8e9860b6e62d6359-s.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-family:Inter;font-style:normal;font-weight:700;font-display:swap;src:url(/_next/static/media/ba9851c3c22cd980-s.woff2) format("woff2");unicode-range:u+0460-052f,u+1c80-1c8a,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-family:Inter;font-style:normal;font-weight:700;font-display:swap;src:url(/_next/static/media/21350d82a1f187e9-s.woff2) format("woff2");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-family:Inter;font-style:normal;font-weight:700;font-display:swap;src:url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format("woff2");unicode-range:u+1f??}@font-face{font-family:Inter;font-style:normal;font-weight:700;font-display:swap;src:url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format("woff2");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-family:Inter;font-style:normal;font-weight:700;font-display:swap;src:url(/_next/static/media/df0a9ae256c0569c-s.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-family:Inter;font-style:normal;font-weight:700;font-display:swap;src:url(/_next/static/media/8e9860b6e62d6359-s.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-family:Inter;font-style:normal;font-weight:700;font-display:swap;src:url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-family:Inter;font-style:normal;font-weight:800;font-display:swap;src:url(/_next/static/media/ba9851c3c22cd980-s.woff2) format("woff2");unicode-range:u+0460-052f,u+1c80-1c8a,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-family:Inter;font-style:normal;font-weight:800;font-display:swap;src:url(/_next/static/media/21350d82a1f187e9-s.woff2) format("woff2");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-family:Inter;font-style:normal;font-weight:800;font-display:swap;src:url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format("woff2");unicode-range:u+1f??}@font-face{font-family:Inter;font-style:normal;font-weight:800;font-display:swap;src:url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format("woff2");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-family:Inter;font-style:normal;font-weight:800;font-display:swap;src:url(/_next/static/media/df0a9ae256c0569c-s.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-family:Inter;font-style:normal;font-weight:800;font-display:swap;src:url(/_next/static/media/8e9860b6e62d6359-s.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-family:Inter;font-style:normal;font-weight:800;font-display:swap;src:url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-family:Inter Fallback;src:local("Arial");ascent-override:90.44%;descent-override:22.52%;line-gap-override:0.00%;size-adjust:107.12%}.__className_48b81b{font-family:Inter,Inter Fallback;font-style:normal}.__variable_48b81b{--font-inter:"Inter","Inter Fallback"}