:root{--bg-primary: #0a0e1a;--bg-secondary: #111827;--bg-card: #1a2236;--bg-card-hover: #1f2a42;--bg-input: #0d1322;--border-color: #2a3555;--border-focus: #6366f1;--text-primary: #f1f5f9;--text-secondary: #94a3b8;--text-muted: #64748b;--accent-primary: #6366f1;--accent-primary-hover: #818cf8;--accent-success: #22c55e;--accent-success-bg: rgba(34,197,94,.12);--accent-warning: #f59e0b;--accent-warning-bg: rgba(245,158,11,.12);--accent-danger: #ef4444;--accent-danger-bg: rgba(239,68,68,.12);--accent-ml: #ffe600;--accent-shopee: #ee4d2d;--radius-sm: 8px;--radius-md: 12px;--radius-lg: 16px;--radius-xl: 24px;--shadow-sm: 0 2px 8px rgba(0,0,0,.3);--shadow-md: 0 4px 20px rgba(0,0,0,.4);--shadow-lg: 0 8px 40px rgba(0,0,0,.5);--transition: all .2s cubic-bezier(.4,0,.2,1)}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}body{font-family:Inter,-apple-system,sans-serif;background:var(--bg-primary);color:var(--text-primary);line-height:1.6;min-height:100vh}.app-layout{display:flex;min-height:100vh}.sidebar{width:260px;background:var(--bg-secondary);border-right:1px solid var(--border-color);padding:24px 16px;display:flex;flex-direction:column;position:fixed;top:0;left:0;bottom:0;z-index:100;transition:var(--transition)}.sidebar-logo{display:flex;align-items:center;gap:12px;padding:8px 12px;margin-bottom:32px}.sidebar-logo .logo-icon{width:40px;height:40px;background:linear-gradient(135deg,var(--accent-primary),#a855f7);border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:800;color:#fff}.sidebar-logo h1{font-size:18px;font-weight:700;background:linear-gradient(135deg,var(--accent-primary),#a855f7);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.sidebar-nav{flex:1;min-height:0;display:flex;flex-direction:column;gap:4px;overflow-y:auto;padding-right:4px}.nav-section-label{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1.2px;color:var(--text-muted);padding:16px 12px 8px}.nav-item{display:flex;align-items:center;gap:12px;padding:10px 12px;border-radius:var(--radius-sm);color:var(--text-secondary);font-size:14px;font-weight:500;cursor:pointer;transition:var(--transition);border:none;background:none;width:100%;text-align:left}.nav-item:hover{background:var(--bg-card);color:var(--text-primary)}.nav-item.active{background:#6366f126;color:var(--accent-primary);font-weight:600}.nav-item svg{width:20px;height:20px;flex-shrink:0}.main-content{flex:1;margin-left:260px;padding:32px;min-height:100vh}.page-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:32px}.page-header h2{font-size:28px;font-weight:800}.page-header p{color:var(--text-secondary);margin-top:4px;font-size:14px}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;margin-bottom:32px}.stat-card{background:var(--bg-card);border:1px solid var(--border-color);border-radius:var(--radius-md);padding:20px 24px;transition:var(--transition);position:relative;overflow:hidden}.stat-card:before{content:"";position:absolute;top:0;left:0;right:0;height:3px}.stat-card.indigo:before{background:linear-gradient(90deg,#6366f1,#a855f7)}.stat-card.green:before{background:linear-gradient(90deg,#22c55e,#10b981)}.stat-card.yellow:before{background:linear-gradient(90deg,#f59e0b,#eab308)}.stat-card.red:before{background:linear-gradient(90deg,#ef4444,#f97316)}.stat-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}.stat-card .stat-label{font-size:13px;color:var(--text-muted);font-weight:500;text-transform:uppercase;letter-spacing:.5px}.stat-card .stat-value{font-size:32px;font-weight:800;margin-top:8px;background:linear-gradient(135deg,var(--text-primary),var(--text-secondary));-webkit-background-clip:text;-webkit-text-fill-color:transparent}.stat-card .stat-change{font-size:12px;margin-top:8px;font-weight:600}.stat-change.positive{color:var(--accent-success)}.stat-change.negative{color:var(--accent-danger)}.card{background:var(--bg-card);border:1px solid var(--border-color);border-radius:var(--radius-md);overflow:hidden}.card-header{padding:20px 24px;border-bottom:1px solid var(--border-color);display:flex;justify-content:space-between;align-items:center}.card-header h3{font-size:16px;font-weight:700}.card-body{padding:24px}.data-table{width:100%;border-collapse:collapse}.data-table th{text-align:left;padding:12px 16px;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.5px;color:var(--text-muted);border-bottom:1px solid var(--border-color)}.data-table td{padding:14px 16px;font-size:14px;border-bottom:1px solid rgba(42,53,85,.5);vertical-align:middle}.data-table tr{transition:var(--transition)}.data-table tbody tr:hover{background:var(--bg-card-hover)}.btn{display:inline-flex;align-items:center;gap:8px;padding:10px 20px;border-radius:var(--radius-sm);font-size:14px;font-weight:600;cursor:pointer;border:1px solid transparent;transition:var(--transition);font-family:Inter,sans-serif}.btn-primary{background:linear-gradient(135deg,var(--accent-primary),#7c3aed);color:#fff;border:none}.btn-primary:hover{background:linear-gradient(135deg,var(--accent-primary-hover),#8b5cf6);transform:translateY(-1px);box-shadow:0 4px 15px #6366f166}.btn-secondary{background:var(--bg-card);color:var(--text-primary);border:1px solid var(--border-color)}.btn-secondary:hover{background:var(--bg-card-hover)}.btn-success{background:linear-gradient(135deg,#22c55e,#10b981);color:#fff}.btn-danger{background:var(--accent-danger-bg);color:var(--accent-danger);border:1px solid rgba(239,68,68,.3)}.btn-sm{padding:6px 12px;font-size:12px}.btn-icon{width:36px;height:36px;padding:0;display:inline-flex;align-items:center;justify-content:center;border-radius:var(--radius-sm);background:var(--bg-card);border:1px solid var(--border-color);color:var(--text-secondary);cursor:pointer;transition:var(--transition)}.btn-icon:hover{background:var(--bg-card-hover);color:var(--text-primary)}.form-group{margin-bottom:20px}.form-group label{display:block;font-size:13px;font-weight:600;color:var(--text-secondary);margin-bottom:6px}.form-control{width:100%;padding:10px 14px;background:var(--bg-input);border:1px solid var(--border-color);border-radius:var(--radius-sm);color:var(--text-primary);font-size:14px;font-family:Inter,sans-serif;transition:var(--transition)}.form-control:focus{outline:none;border-color:var(--border-focus);box-shadow:0 0 0 3px #6366f126}.form-control::placeholder{color:var(--text-muted)}textarea.form-control{min-height:100px;resize:vertical}.form-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px}select.form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;padding-right:36px}.badge{display:inline-flex;align-items:center;gap:4px;padding:4px 10px;border-radius:999px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.3px}.badge-success{background:var(--accent-success-bg);color:var(--accent-success)}.badge-warning{background:var(--accent-warning-bg);color:var(--accent-warning)}.badge-danger{background:var(--accent-danger-bg);color:var(--accent-danger)}.badge-ml{background:#ffe6001f;color:var(--accent-ml)}.badge-shopee{background:#ee4d2d1f;color:var(--accent-shopee)}.badge-site{background:#ffcf2429;color:#ffcf24}.badge-neutral{background:#94a3b81f;color:var(--text-secondary)}.modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;z-index:1000;padding:20px;animation:fadeIn .2s ease}.modal{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:var(--radius-lg);width:100%;max-width:640px;max-height:90vh;overflow-y:auto;box-shadow:var(--shadow-lg);animation:slideUp .3s ease}.modal-header{padding:20px 24px;border-bottom:1px solid var(--border-color);display:flex;justify-content:space-between;align-items:center}.modal-header h3{font-size:18px;font-weight:700}.modal-body{padding:24px}.modal-footer{padding:16px 24px;border-top:1px solid var(--border-color);display:flex;justify-content:flex-end;gap:12px}.file-upload{border:2px dashed var(--border-color);border-radius:var(--radius-md);padding:40px;text-align:center;cursor:pointer;transition:var(--transition)}.file-upload:hover{border-color:var(--accent-primary);background:#6366f10d}.file-upload svg{color:var(--text-muted);margin-bottom:12px}.file-upload p{color:var(--text-secondary);font-size:14px}.file-upload .file-hint{font-size:12px;color:var(--text-muted);margin-top:4px}.search-bar{position:relative;max-width:320px}.search-bar svg{position:absolute;left:12px;top:50%;transform:translateY(-50%);color:var(--text-muted);width:18px;height:18px}.search-bar input{padding-left:40px}.product-thumb{width:40px;height:40px;border-radius:var(--radius-sm);background:var(--bg-input);display:flex;align-items:center;justify-content:center;overflow:hidden;color:var(--text-muted);font-size:18px}.product-thumb img{width:100%;height:100%;object-fit:cover}.product-info{display:flex;align-items:center;gap:12px}.product-info .name{font-weight:600;font-size:14px}.product-info .sku{font-size:12px;color:var(--text-muted)}.editorial-controls{display:flex;flex-direction:column;gap:16px;padding:18px;margin-bottom:20px}.editorial-search{max-width:none}.editorial-filters{display:flex;flex-wrap:wrap;gap:8px}.editorial-filters button{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border:1px solid var(--border-color);border-radius:var(--radius-sm);background:var(--bg-input);color:var(--text-secondary);cursor:pointer}.editorial-filters button.active{border-color:var(--accent-primary);background:#6366f126;color:var(--text-primary)}.editorial-filters span{min-width:22px;padding:2px 6px;border-radius:999px;background:#94a3b81f;color:var(--text-primary);font-size:12px;text-align:center}.editorial-thumb{width:44px;height:58px}.editorial-subject-list,.editorial-issues{display:flex;flex-wrap:wrap;gap:6px}.editorial-subject-list span{padding:4px 8px;border-radius:999px;background:#6366f11f;color:var(--accent-primary-hover);font-size:12px}.editorial-subject-list em{color:var(--text-muted);font-style:normal}.stock-bar{width:80px;height:6px;background:#ffffff14;border-radius:999px;overflow:hidden}.stock-bar-fill{height:100%;border-radius:999px;transition:width .5s ease}.stock-bar-fill.high{background:var(--accent-success)}.stock-bar-fill.medium{background:var(--accent-warning)}.stock-bar-fill.low{background:var(--accent-danger)}.channel-icons{display:flex;gap:6px}.channel-dot{width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:800}.channel-dot.ml{background:#ffe60026;color:var(--accent-ml)}.channel-dot.shopee{background:#ee4d2d26;color:var(--accent-shopee)}.channel-dot.site{background:#ffcf242e;color:#ffcf24}.channel-dot.inactive{opacity:.3}.empty-state{text-align:center;padding:60px 24px}.empty-state svg{color:var(--text-muted);margin-bottom:16px}.empty-state h3{font-size:18px;margin-bottom:8px}.empty-state p{color:var(--text-secondary);font-size:14px;max-width:400px;margin:0 auto 24px}.toast-container{position:fixed;bottom:24px;right:24px;z-index:2000;display:flex;flex-direction:column;gap:8px}.toast{background:var(--bg-card);border:1px solid var(--border-color);border-radius:var(--radius-sm);padding:14px 20px;display:flex;align-items:center;gap:12px;box-shadow:var(--shadow-lg);animation:slideIn .3s ease;min-width:300px}.toast.success{border-left:3px solid var(--accent-success)}.toast.error{border-left:3px solid var(--accent-danger)}.toast.info{border-left:3px solid var(--accent-primary)}.tabs{display:flex;gap:4px;border-bottom:1px solid var(--border-color);margin-bottom:24px}.tab-btn{padding:10px 20px;font-size:14px;font-weight:500;color:var(--text-muted);background:none;border:none;border-bottom:2px solid transparent;cursor:pointer;transition:var(--transition);font-family:Inter,sans-serif}.tab-btn:hover{color:var(--text-primary)}.tab-btn.active{color:var(--accent-primary);border-bottom-color:var(--accent-primary);font-weight:600}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes slideIn{0%{opacity:0;transform:translate(40px)}to{opacity:1;transform:translate(0)}}.fade-in{animation:fadeIn .4s ease}.slide-up{animation:slideUp .4s ease}@media (max-width: 768px){.sidebar{transform:translate(-100%)}.sidebar.open{transform:translate(0)}.main-content{margin-left:0;padding:16px}.stats-grid{grid-template-columns:1fr 1fr}.page-header{flex-direction:column;align-items:flex-start;gap:16px}.form-row{grid-template-columns:1fr}}@media (max-width: 480px){.stats-grid{grid-template-columns:1fr}}::-webkit-scrollbar{width:6px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:var(--border-color);border-radius:999px}::-webkit-scrollbar-thumb:hover{background:var(--text-muted)}.storefront{min-height:100vh;padding-top:92px;overflow-x:hidden;background:#fff9e8;color:#1f1f1f}.storefront-header{position:fixed;top:0;left:0;right:0;z-index:80;display:grid;grid-template-columns:auto 1fr;gap:16px;align-items:center;min-height:92px;padding:14px 5vw;background:#ffcf24;border-bottom:1px solid rgba(31,31,31,.14);box-shadow:0 10px 28px #1f1f1f1f}.storefront-brand{display:inline-flex;align-items:center;justify-content:center;width:104px;height:64px;overflow:hidden;border-radius:6px;background:transparent}.storefront-brand img{width:100%;height:100%;object-fit:contain}.storefront-discovery{position:relative;display:grid;grid-template-columns:minmax(220px,1fr) minmax(160px,220px);gap:10px;align-items:center}.storefront-header-actions{justify-self:end;display:flex;align-items:center;gap:10px}.storefront-header-link{display:inline-flex;align-items:center;min-height:38px;padding:0 13px;border:1px solid rgba(31,31,31,.14);border-radius:999px;background:#ffffff57;color:#1f1f1f;font-size:12px;font-weight:900;text-decoration:none;text-transform:uppercase}.storefront-menu-button{width:44px;height:44px;display:inline-flex;align-items:center;justify-content:center;border:0;border-radius:999px;background:transparent;color:#1f1f1f;cursor:pointer}.storefront-search{display:grid;grid-template-columns:1fr 40px;align-items:center;gap:10px;padding:6px 6px 6px 14px;border:1px solid rgba(31,31,31,.16);border-radius:999px;background:#ffffffeb;box-shadow:none}.storefront-subject-select{width:100%;min-width:0;height:48px;padding:0 38px 0 14px;border:1px solid rgba(31,31,31,.18);border-radius:8px;background:linear-gradient(45deg,transparent 50%,#1f1f1f 50%) right 16px center / 7px 7px no-repeat,linear-gradient(135deg,#1f1f1f 50%,transparent 50%) right 11px center / 7px 7px no-repeat,#fff8d6;color:#1f1f1f;font:inherit;font-weight:800;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;box-shadow:0 8px 24px #1f1f1f0d}.storefront-search input{min-width:0;border:0;outline:0;color:#1f1f1f;font:inherit}.storefront-search button,.storefront-section-title button,.store-product-card button,.storefront-checkout{border:0;border-radius:8px;background:#1f1f1f;color:#fff;font-weight:800;cursor:pointer;transition:transform .18s ease,box-shadow .18s ease}.storefront-search button{width:36px;height:36px;padding:0;border-radius:999px;background:transparent;color:#1f1f1f}.storefront-search button span{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}.storefront-search-menu{grid-column:1 / -1;display:grid;gap:20px;padding:22px 0 8px;border-top:1px solid rgba(31,31,31,.1)}.storefront-search-menu-groups{display:grid;grid-template-columns:minmax(220px,.85fr) minmax(260px,1.15fr);gap:26px}.storefront-search-menu-group>span{display:block;margin-bottom:8px;color:#6c4a00;font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.storefront-search-menu-list button,.storefront-search-menu-list a{border:0;background:transparent;color:#1f1f1f;cursor:pointer}.storefront-search-menu-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 22px}.storefront-search-menu-list button,.storefront-search-menu-list a{padding:13px 0;border-bottom:1px solid rgba(31,31,31,.08);text-align:left;font:inherit;font-size:16px;font-weight:800;line-height:1.15;text-decoration:none}.storefront-search-menu-list button:after,.storefront-search-menu-list a:after{content:"→";float:right;color:#8a6b00}.storefront-search button:hover,.storefront-section-title button:hover,.store-product-card button:hover,.storefront-checkout:hover{transform:translateY(-1px);box-shadow:0 8px 18px #1f1f1f2e}.storefront-cart-pill{position:relative;display:inline-flex;align-items:center;gap:8px;width:44px;height:44px;justify-content:center;padding:0;border:1px solid rgba(31,31,31,.16);border-radius:999px;background:#ffffffb8;color:#1f1f1f;font-weight:800;white-space:nowrap;cursor:pointer}.storefront-main{padding:28px 5vw 48px}.storefront-hero{position:relative;min-height:430px;display:grid;grid-template-columns:minmax(280px,.72fr);gap:36px;align-items:end;padding:42px;border-radius:8px;background:linear-gradient(90deg,#14130fe6,#14130f94 46%,#14130f14),url(/nobel-frente-loja.jpeg) center 20% / cover no-repeat;border:1px solid rgba(255,207,36,.26);overflow:hidden;box-shadow:0 18px 46px #1f1f1f24}.storefront-hero-copy{align-self:stretch;display:flex;flex-direction:column;align-items:flex-start}.storefront-hero-copy span{display:inline-block;margin-bottom:14px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;color:#ffcf24}.storefront-hero-copy h1{max-width:700px;font-size:clamp(34px,4.3vw,60px);line-height:1.02;letter-spacing:0;margin-bottom:20px;color:#ffcf24}.storefront-hero-copy p{max-width:620px;font-size:18px;line-height:1.5;color:#ffffffc7}.storefront-hero-meta{display:flex;flex-wrap:wrap;gap:8px;margin-top:auto;padding-top:22px}.storefront-hero-meta span,.storefront-hero-meta a{display:inline-flex;align-items:center;gap:6px;padding:8px 10px;border-radius:8px;border:1px solid rgba(255,207,36,.28);background:#ffcf2429;color:#fff;font-size:13px;font-weight:800;text-transform:none;letter-spacing:0;text-decoration:none}.storefront-hero-meta a:hover{border-color:#ffcf2480;background:#ffcf243d}.storefront-quick-links{display:grid;grid-template-columns:repeat(6,minmax(150px,1fr));gap:20px;margin-top:20px}.storefront-mobile-shortcuts{position:relative;display:block;margin-top:20px}.storefront-mobile-shortcuts-controls{position:absolute;top:16px;right:0;bottom:0;left:0;z-index:3;display:flex;align-items:center;justify-content:space-between;pointer-events:none}.storefront-mobile-shortcuts-controls button{width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;padding:0;border:1px solid rgba(31,31,31,.14);border-radius:999px;background:#fffdf7f5;color:#1f1f1f;pointer-events:auto;box-shadow:0 12px 28px #1f1f1f29}.storefront-mobile-shortcuts-controls button:first-child{transform:translate(-10px)}.storefront-mobile-shortcuts-controls button:last-child{transform:translate(10px)}.storefront-mobile-shortcuts-track{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(176px,190px);gap:12px;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x proximity;padding:2px 10px 10px;scrollbar-width:none}.storefront-mobile-shortcuts-track::-webkit-scrollbar{display:none}.storefront-mobile-shortcut{position:relative;min-height:106px;display:flex;flex-direction:column;justify-content:space-between;gap:14px;padding:13px;border:1px solid rgba(161,92,0,.15);border-radius:8px;background:radial-gradient(circle at top right,rgba(255,207,36,.34),transparent 42%),#fff8d6;color:#1f1f1f;text-align:left;scroll-snap-align:start;box-shadow:0 10px 24px #1f1f1f0f}.storefront-mobile-shortcut.gold{border-color:#a15c0033;background:#ffcf24;color:#1f1f1f}.storefront-mobile-shortcut.dark{border-color:#ffcf2457;background:radial-gradient(circle at top right,rgba(255,207,36,.2),transparent 44%),#111;color:#fff8d6;box-shadow:0 12px 28px #1f1f1f2e}.storefront-mobile-shortcut-icon{width:38px;height:38px;display:inline-flex;align-items:center;justify-content:center;border-radius:8px;background:#ffcf24;color:#1f1f1f}.storefront-mobile-shortcut.gold .storefront-mobile-shortcut-icon,.storefront-mobile-shortcut.dark .storefront-mobile-shortcut-icon{background:#ffffff5c}.storefront-mobile-shortcut.dark .storefront-mobile-shortcut-icon{color:#ffcf24}.storefront-mobile-shortcut-arrow{position:absolute;right:13px;top:20px;color:currentColor;opacity:.58}.storefront-mobile-shortcut-copy{display:grid;gap:4px;min-width:0}.storefront-mobile-shortcut strong{min-width:0;overflow:hidden;font-size:14px;font-weight:900;line-height:1.08;white-space:normal}.storefront-mobile-shortcut em{min-width:0;overflow:hidden;color:#6c4a00db;font-size:11px;font-style:normal;font-weight:800;line-height:1.18;white-space:normal}.storefront-mobile-shortcut.gold em{color:#1f1f1fc2}.storefront-mobile-shortcut.dark em{color:#d5ac42}.storefront-quick-links .storefront-quick-card:not(.storefront-quick-card-kids){display:none}.storefront-quick-card{position:relative;min-height:210px;padding:26px;border:1px solid rgba(31,31,31,.1);border-radius:8px;overflow:hidden;text-align:left;cursor:pointer;text-decoration:none;box-shadow:0 18px 42px #1f1f1f14;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease,background .2s ease}.storefront-quick-card:before{content:"";position:absolute;inset:0 auto 0 0;width:5px;background:#ffcf24;opacity:.95}.storefront-pathway-card{display:grid;align-content:space-between;background:radial-gradient(circle at top right,rgba(255,207,36,.22),transparent 34%),linear-gradient(145deg,#fff,#fff9e8 62%,#fff2bd)}.storefront-pathway-card:after{content:"";position:absolute;right:-42px;bottom:-48px;width:148px;height:148px;border-radius:999px;border:1px solid rgba(161,92,0,.16);background:#ffcf240f}.storefront-pathway-releases{grid-column:span 2;min-height:210px;padding-right:132px;background:radial-gradient(circle at 88% 22%,rgba(255,207,36,.42),transparent 30%),linear-gradient(145deg,#fff,#fff7d7 56%,#ffe78a);border-color:#ffcf249e;box-shadow:0 20px 48px #a15c001f}.storefront-pathway-releases:before{display:none}.storefront-pathway-releases h2{max-width:430px;font-size:34px;color:#1f1f1f}.storefront-pathway-releases strong{margin-top:0;background:#1f1f1f;color:#fff}.storefront-pathway-releases span{color:#9a6400}.storefront-pathway-releases p{max-width:310px;margin-top:8px}.storefront-pathway-releases:hover strong{background:#ffcf24;color:#1f1f1f}.storefront-catalog-search-card{cursor:default}.storefront-catalog-search-card label{width:min(100%,430px);min-height:50px;display:grid;grid-template-columns:1fr 38px;align-items:center;margin-top:12px;padding:6px 6px 6px 16px;border:1px solid rgba(31,31,31,.14);border-radius:999px;background:#ffffffeb;color:#1f1f1f;box-shadow:0 10px 24px #1f1f1f0f}.storefront-catalog-search-card input{min-width:0;border:0;outline:0;background:transparent;color:#1f1f1f;font:inherit;font-weight:800}.storefront-catalog-search-card input::placeholder{color:#1f1f1f85}.storefront-catalog-search-card button{width:38px;height:38px;display:inline-flex;align-items:center;justify-content:center;margin:0;border:0;border-radius:999px;background:transparent;color:#1f1f1f;cursor:pointer;transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease}.storefront-catalog-search-card button:hover,.storefront-catalog-search-card button:focus-visible{background:#ffcf24;color:#1f1f1f;box-shadow:0 12px 24px #a15c002e}.storefront-quick-card:hover{transform:translateY(-4px);box-shadow:0 26px 58px #1f1f1f24;border-color:#a15c0047}.storefront-quick-card>div{position:relative;z-index:1}.storefront-quick-card span{display:block;color:#8a5a00;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}.storefront-quick-card h2{margin-top:8px;color:#1f1f1f;font-size:32px;line-height:1.04;letter-spacing:0}.storefront-quick-card p{max-width:260px;margin-top:14px;color:#504735;font-size:14px;line-height:1.5}.storefront-quick-card strong{display:inline-flex;align-items:center;gap:8px;margin-top:20px;padding:12px 16px;border-radius:8px;background:#1f1f1f;color:#fff;font-size:13px;font-weight:900}.storefront-quick-card strong:after{content:"→"}.storefront-quick-card:not(.storefront-quick-card-kids) strong,.storefront-release-add,.store-product-card .store-product-add,.storefront-load-more button,.storefront-checkout,.storefront-service-cta{transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease}.storefront-quick-card:not(.storefront-quick-card-kids):hover strong,.storefront-release-add:hover,.store-product-card .store-product-add:hover,.storefront-load-more button:hover,.storefront-checkout:hover,.storefront-service-cta:hover,.storefront-quick-card:not(.storefront-quick-card-kids):focus-visible strong,.storefront-release-add:focus-visible,.store-product-card .store-product-add:focus-visible,.storefront-load-more button:focus-visible,.storefront-checkout:focus-visible,.storefront-service-cta:focus-visible{background:#ffcf24;color:#1f1f1f;box-shadow:0 12px 24px #a15c002e}.storefront-release-add:hover svg,.store-product-card .store-product-add:hover svg,.storefront-load-more button:hover svg,.storefront-checkout:hover svg,.storefront-service-cta:hover svg,.storefront-release-add:focus-visible svg,.store-product-card .store-product-add:focus-visible svg,.storefront-load-more button:focus-visible svg,.storefront-checkout:focus-visible svg,.storefront-service-cta:focus-visible svg{color:#1f1f1f}@media (hover: none){.storefront-quick-card:not(.storefront-quick-card-kids):active strong,.storefront-release-add:active,.store-product-card .store-product-add:active,.storefront-load-more button:active,.storefront-checkout:active,.storefront-service-cta:active{background:#ffcf24;color:#1f1f1f;box-shadow:0 10px 20px #a15c002e}.storefront-release-add:active svg,.store-product-card .store-product-add:active svg,.storefront-load-more button:active svg,.storefront-checkout:active svg,.storefront-service-cta:active svg{color:#1f1f1f}}.storefront-quick-card-kids{grid-column:span 2;min-height:280px;display:block;padding:24px;background:#ffe47a;border-color:#ffcf2494}.storefront-featured-kids{grid-column:1 / -1;justify-self:center;width:min(920px,100%);min-height:280px}.storefront-quick-card-kids .storefront-kids-shelf{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;object-fit:cover;object-position:center 10%;opacity:1;filter:none;pointer-events:none}.storefront-quick-card-kids:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;background:linear-gradient(90deg,#14130fb8,#14130f47 44%,#14130f0a 72%),linear-gradient(180deg,#ffcf2414,#ffcf241f)}.storefront-kids-mascot{position:absolute;z-index:2;right:22px;bottom:0;width:min(42%,220px);max-height:104%;object-fit:contain;pointer-events:none;filter:drop-shadow(0 12px 18px rgba(31,31,31,.16));animation:storefrontKidsMascotFloat 4.2s ease-in-out infinite}.storefront-quick-card-kids>div{position:absolute;z-index:3;left:26px;bottom:14px;max-width:43%;text-align:left}.storefront-quick-card-kids h2{max-width:390px;margin-inline:0;font-size:32px;line-height:1.04;color:#ffcf24;text-shadow:0 2px 12px rgba(0,0,0,.45);text-wrap:balance}.storefront-quick-card-kids strong{position:absolute;left:50%;bottom:28px;transform:translate(-50%);z-index:4;margin:0;background:#bfe8ef;color:#1f1f1f;box-shadow:0 10px 22px #1f1f1f29;animation:storefrontKidsCtaPulse 4.2s ease-in-out infinite}.storefront-quick-card-kids strong:after{content:none}.storefront-quick-card-kids strong svg{color:#137c9a}.storefront-quick-card-kids:hover strong{background:#d8f5fa;color:#1f1f1f}@keyframes storefrontKidsMascotFloat{0%,to{transform:translateY(0) rotate(0)}50%{transform:translateY(-7px) rotate(-1deg)}}@keyframes storefrontKidsCtaPulse{0%,to{background:#bfe8ef;box-shadow:0 10px 22px #1f1f1f29}50%{background:#e4fbff;box-shadow:0 0 0 5px #bfe8ef38,0 14px 26px #1f1f1f2e}}.storefront-featured-kids>div{max-width:46%}.storefront-featured-kids h2{font-size:clamp(32px,3vw,42px);line-height:1.02}.storefront-featured-kids p{max-width:330px}.storefront-featured-kids .storefront-kids-mascot{right:8%;bottom:-4px;width:min(34%,260px)}.storefront-quick-card-preorder{display:grid;align-content:space-between;background:linear-gradient(145deg,#ffffffeb,#f6f0e1db),#fffdf7}.storefront-quick-card-conecta{display:grid;align-content:space-between;border-color:#d6b05242;background:radial-gradient(circle at top right,rgba(214,176,82,.18),transparent 38%),linear-gradient(145deg,#050505,#15120b 58%,#090909);color:#fff}.storefront-quick-card-conecta:after{content:"";position:absolute;right:-34px;top:-34px;width:148px;height:148px;border-radius:999px;border:1px solid rgba(214,176,82,.18)}.storefront-conecta-mark{display:inline-flex;align-items:center;justify-content:center;width:68px;height:68px;margin-bottom:18px;border-radius:16px;background:linear-gradient(145deg,#d8b657,#a8842d);color:#090909;box-shadow:0 16px 34px #00000047}.storefront-quick-card-conecta span{color:#d8b657}.storefront-quick-card-conecta h2{max-width:260px;color:#f7f1df;font-family:Georgia,Times New Roman,serif;font-size:clamp(24px,2vw,30px);line-height:1.02;font-weight:900;overflow-wrap:normal}.storefront-quick-card-conecta p{color:#ebf4ffd1}.storefront-quick-card-conecta strong{background:#f7f1df;color:#090909}.storefront-quick-covers{display:flex;align-items:flex-end;min-height:96px;margin-bottom:18px}.storefront-quick-covers img{width:70px;height:104px;object-fit:cover;border-radius:5px;background:#f2ead2;box-shadow:0 10px 24px #1f1f1f24}.storefront-quick-covers img+img{margin-left:-18px}.storefront-quick-covers img:nth-child(2){transform:translateY(-10px)}.storefront-quick-placeholder,.storefront-quick-trophy{display:inline-flex;align-items:center;justify-content:center;width:82px;height:82px;margin-bottom:20px;border-radius:999px;background:linear-gradient(145deg,#ffcf24d1,#ffed968f);color:#1f1f1f;box-shadow:0 12px 26px #a15c0021}.storefront-quick-card-best{display:grid;align-content:space-between;background:radial-gradient(circle at top right,rgba(255,207,36,.3),transparent 36%),linear-gradient(145deg,#fff,#fff8df 58%,#ffed9d);border-color:#a15c0024}.storefront-quick-card-best h2{color:#b45f00;font-size:34px}.storefront-campaigns{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:18px;margin-top:24px}.storefront-campaign-card{position:relative;min-height:220px;display:flex;align-items:end;justify-content:space-between;gap:18px;padding:24px;border:0;border-radius:8px;background:linear-gradient(90deg,#14130fbd,#14130f1f),#1f1f1f;background-size:cover;background-position:center;color:#fff;text-align:left;cursor:pointer;overflow:hidden;box-shadow:0 16px 34px #1f1f1f29}.storefront-campaign-card:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;background:linear-gradient(90deg,#14130feb,#14130f6b 48%,#14130f1f),radial-gradient(circle at 78% 34%,rgba(255,207,36,.22),transparent 30%);pointer-events:none}.storefront-campaign-cover-mosaic{position:absolute;right:22px;top:18px;bottom:18px;width:min(48%,330px);display:flex;align-items:center;justify-content:flex-end;gap:10px;z-index:0;pointer-events:none}.storefront-campaign-cover-mosaic img{width:clamp(64px,9vw,112px);aspect-ratio:.68;object-fit:cover;border-radius:5px;box-shadow:0 18px 34px #0000005c;transform:rotate(var(--cover-tilt, -4deg))}.storefront-campaign-cover-mosaic img:nth-child(2n){--cover-tilt: 4deg;margin-top:28px}.storefront-campaign-cover-mosaic img:nth-child(n+4){display:none}.storefront-campaign-card>div,.storefront-campaign-card>strong{position:relative;z-index:2}.storefront-campaign-card span{color:#ffcf24;font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.storefront-campaign-card h2{max-width:620px;margin-top:6px;color:#fff;font-size:30px;line-height:1.08}.storefront-campaign-card p{max-width:560px;margin-top:8px;color:#ffffffd1;font-weight:700;line-height:1.35}.storefront-campaign-card strong{flex:0 0 auto;padding:10px 14px;border-radius:999px;background:#ffcf24;color:#1f1f1f;font-weight:900}.storefront-promo-showcase{display:none;grid-template-columns:minmax(190px,250px) minmax(0,1fr);gap:18px;margin-top:24px;padding:18px 20px;border-radius:8px;background:radial-gradient(circle at 94% 18%,rgba(255,207,36,.22),transparent 28%),#1f1f1f;color:#fff;overflow:hidden}.storefront-promo-copy{display:flex;flex-direction:column;justify-content:center;min-width:0}.storefront-promo-copy span{color:#ffcf24;font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.storefront-promo-copy h2{margin-top:8px;color:#fff;font-size:28px;line-height:1.04}.storefront-promo-copy p{margin-top:8px;color:#ffffffc2;font-size:14px;font-weight:700;line-height:1.4}.storefront-promo-copy button{width:fit-content;display:inline-flex;align-items:center;gap:8px;margin-top:14px;padding:10px 14px;border:0;border-radius:999px;background:#ffcf24;color:#1f1f1f;font-weight:900;cursor:pointer}.storefront-promo-stage{position:relative;min-width:0}.storefront-promo-controls{justify-content:flex-end;margin-bottom:8px}.storefront-promo-rail{display:grid;grid-auto-flow:column;grid-auto-columns:102px;gap:14px;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x proximity;padding:4px 2px 10px;scrollbar-width:none}.storefront-promo-rail::-webkit-scrollbar{display:none}.storefront-promo-book{display:grid;grid-template-rows:150px;gap:8px;min-width:0;padding:0;border:0;background:transparent;color:#fff;text-align:left;scroll-snap-align:start;cursor:pointer}.storefront-promo-book>span{min-width:0;overflow:hidden;color:#ffcf24;font-size:10px;font-weight:900;text-overflow:ellipsis;text-transform:uppercase;white-space:nowrap}.storefront-promo-book img{width:100%;height:150px;object-fit:contain;border-radius:6px;background:#fff8d614;box-shadow:0 18px 34px #00000052}.storefront-promo-book strong{display:-webkit-box;overflow:hidden;color:#fff;font-size:14px;line-height:1.18;-webkit-box-orient:vertical;-webkit-line-clamp:2}.storefront-promo-book .storefront-price{margin-top:0}.storefront-promo-book.compact{grid-template-rows:150px}.storefront-promo-campaigns{grid-column:1 / -1;display:flex;gap:10px;overflow-x:auto;padding-top:4px;scrollbar-width:none}.storefront-promo-campaigns::-webkit-scrollbar{display:none}.storefront-promo-campaigns button{min-width:160px;display:grid;gap:3px;padding:12px;border:1px solid rgba(255,255,255,.12);border-radius:8px;background:#ffffff14;color:#fff;text-align:left;cursor:pointer}.store-product-promo-label{display:inline-flex;width:fit-content;max-width:100%;margin-bottom:6px;padding:4px 7px;border-radius:999px;background:#ffcf244d;color:#6c4a00;font-size:10px;font-weight:900;text-transform:uppercase}.storefront-promo-campaigns span{color:#ffcf24;font-size:10px;font-weight:900;text-transform:uppercase}.storefront-promo-campaigns strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.storefront-promo-campaigns em{color:#ffffffad;font-size:12px;font-style:normal;font-weight:800}.storefront-releases{margin-top:24px;padding:24px 0 26px;border-radius:8px;background:#ffffffc7;border:1px solid rgba(31,31,31,.1);overflow:hidden;scroll-margin-top:112px}.storefront-releases-header{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:0 22px 18px}.storefront-releases-header span{color:#a15c00;font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.storefront-releases-header h2{color:#1f1f1f;font-size:30px;line-height:1.1}.storefront-release-controls{display:flex;gap:8px}.storefront-release-controls button{width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(31,31,31,.14);border-radius:999px;background:#fff8d6;color:#1f1f1f;cursor:pointer}.storefront-release-rail{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(150px,180px);gap:20px;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x proximity;padding:0 22px 8px}.storefront-release-card{display:grid;grid-template-rows:auto 1fr auto;gap:10px;min-width:0;scroll-snap-align:start}.storefront-release-cover{aspect-ratio:2 / 3;height:auto;padding:0;border:0;border-radius:6px;background:#fff;overflow:hidden;cursor:pointer}.storefront-release-cover img{width:100%;height:100%;object-fit:contain;display:block}.storefront-release-cover.square img{object-fit:contain}.storefront-release-card h3{color:#1f1f1f;font-size:15px;line-height:1.25}.storefront-release-card p{margin-top:4px;color:#6b6250;font-size:13px;line-height:1.25}.storefront-release-card strong{display:block;margin-top:8px;color:#1f1f1f;font-size:16px}.storefront-release-add{display:inline-flex;align-items:center;justify-content:center;gap:6px;width:100%;padding:10px 12px;border:0;border-radius:8px;background:#1f1f1f;color:#fff;font-weight:800;cursor:pointer}.storefront-release-empty{display:grid;justify-items:center;gap:8px;margin:0 22px 2px;padding:34px 20px;border:1px dashed rgba(161,92,0,.24);border-radius:8px;background:#fff8dfc2;color:#6b6250;text-align:center}.storefront-release-empty svg{color:#a15c00}.storefront-release-empty strong{color:#1f1f1f;font-size:16px}.storefront-release-empty span{max-width:360px;font-size:14px;line-height:1.45}.storefront-feature-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,360px);gap:20px;align-items:stretch;margin-top:24px}.storefront-feature-grid .storefront-releases,.storefront-feature-grid .storefront-editorial-section{margin-top:0;height:100%}.storefront-editorial-section{margin-top:0;padding:0;border-radius:0;background:transparent;border:0;overflow:hidden;scroll-margin-top:112px}.storefront-editorial-section .storefront-releases-header h2{color:#1f1f1f}.storefront-editorial-section .storefront-releases-header span{color:#a15c00}.storefront-editorial-grid{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(270px,1fr);grid-template-columns:none;gap:14px;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x proximity;padding:0 2px 4px;scrollbar-width:none}.storefront-editorial-grid::-webkit-scrollbar{display:none}.storefront-editorial-section.compact .storefront-editorial-grid{grid-template-columns:1fr;gap:12px}.storefront-editorial-button{width:100%;padding:0;border:0;background:transparent;color:inherit;text-align:left;cursor:pointer;scroll-snap-align:start}.storefront-editorial-card{position:relative;min-height:172px;display:flex;align-items:flex-end;overflow:hidden;border-radius:8px;border:1px solid rgba(31,31,31,.1);background:linear-gradient(135deg,#ffcf2421,#ffffffc7),#fffdf7;background-position:center;background-size:cover;box-shadow:none;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}.storefront-editorial-card:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(90deg,#fffdf7f5,#fffdf7d1 58%,#fffdf74d),radial-gradient(circle at top right,rgba(255,207,36,.18),transparent 42%)}.storefront-editorial-card:after{content:"";position:absolute;right:-28px;bottom:-36px;width:120px;height:120px;border-radius:999px;border:1px solid rgba(161,92,0,.16)}.storefront-editorial-button:hover .storefront-editorial-card{transform:translateY(-2px);border-color:#a15c002e;box-shadow:0 14px 30px #1f1f1f1a}.storefront-editorial-card>div{position:relative;z-index:1;padding:20px}.storefront-editorial-card h3{max-width:260px;color:#1f1f1f;font-size:20px;line-height:1.12}.storefront-editorial-card p{margin-top:8px;max-width:270px;color:#5b5140;font-size:13px;line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.storefront-editorial-card span{display:inline-block;margin-top:12px;color:#a15c00;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.04em}.storefront-feature-grid .storefront-editorial-section{padding:24px 20px}.storefront-feature-grid .storefront-editorial-section .storefront-releases-header{padding:0 2px 16px}.storefront-feature-grid .storefront-editorial-grid{gap:14px;padding:0}.storefront-feature-grid .storefront-editorial-card{min-height:122px;border:1px solid rgba(31,31,31,.1);border-radius:8px;box-shadow:0 8px 22px #1f1f1f0d}.storefront-feature-grid .storefront-editorial-card>div{padding:20px 22px}.storefront-service-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:130;display:flex;justify-content:flex-end;background:#1f1f1f7a}.storefront-service-drawer{position:relative;width:min(480px,100%);height:100%;overflow:auto;padding:36px 28px;background:radial-gradient(circle at 86% 8%,rgba(255,207,36,.34),transparent 26%),linear-gradient(180deg,#e9f7ff,#f7fcff 42%,#fffdf7);color:#1f1f1f;box-shadow:-18px 0 60px #00000047}.storefront-service-drawer--corporate{background:radial-gradient(circle at 100% 88%,rgba(255,207,36,.18),transparent 34%),linear-gradient(180deg,#fffdf7,#fbf8ee);color:#1f1f1f}.storefront-service-mascot{display:block;width:min(180px,48%);height:auto;margin:18px auto 0;pointer-events:none;filter:drop-shadow(0 18px 26px rgba(31,31,31,.16))}.storefront-service-drawer>span{color:#00789a;font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.storefront-service-drawer--corporate>span{color:#ffcf24}.storefront-service-icon{display:inline-flex;align-items:center;justify-content:center;width:64px;height:64px;border:1px solid rgba(255,207,36,.44);border-radius:14px;background:#ffcf241f;color:#00789a}.storefront-service-drawer h2{margin-top:10px;font-size:32px;line-height:1.08}.storefront-service-drawer--corporate h2{color:#0f0f0f}.storefront-service-title-split{margin-top:40px;font-size:clamp(32px,6vw,44px);line-height:1.02}.storefront-service-title-split span{color:#ffcf24}.storefront-service-drawer p{margin-top:16px;color:#334c58;font-size:16px;line-height:1.6}.storefront-service-drawer--corporate p{max-width:620px;color:#5f5849;font-size:17px;line-height:1.7}.storefront-service-benefits{display:grid;gap:16px;margin:32px 0 0;padding:0;list-style:none}.storefront-service-benefits li{display:grid;grid-template-columns:22px minmax(0,1fr);gap:12px;align-items:start;color:#5f5849;font-size:16px;line-height:1.45}.storefront-service-benefits svg{margin-top:2px;color:#ffcf24}.storefront-service-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:22px}.storefront-service-gallery img{width:100%;aspect-ratio:1.25;object-fit:cover;border-radius:8px;background:#f2ead2}.storefront-service-cta{position:relative;z-index:1;display:inline-flex;align-items:center;justify-content:center;gap:8px;width:100%;margin-top:24px;padding:14px 16px;border-radius:8px;background:#bff5ff;color:#12323d;border:1px solid rgba(0,120,154,.18);font-weight:900;text-decoration:none;text-align:center;line-height:1.25}.storefront-service-drawer--corporate .storefront-service-cta{width:auto;min-width:min(100%,300px);margin-top:36px;padding:15px 24px;border-radius:999px;background:#ffcf24;color:#111820;border-color:#ffcf2459;box-shadow:0 18px 36px #ffcf2442}.storefront-service-cta svg{color:#00789a}.storefront-service-drawer--corporate .storefront-service-cta svg{color:#111820}.storefront-content{display:grid;grid-template-columns:minmax(0,1fr);gap:24px;align-items:start;margin-top:24px;scroll-margin-top:104px}.storefront-content.results-mode{margin-top:0}.storefront-projects-area{display:grid;gap:22px;margin-top:42px;padding:30px 22px 32px;border-top:1px solid rgba(31,31,31,.1);border-bottom:1px solid rgba(31,31,31,.08);background:#fffdf78f}.storefront-projects-area .storefront-releases-header{padding:0 2px 18px}.storefront-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:18px;margin-top:24px;padding:18px 22px;border-radius:8px;border:1px solid rgba(31,31,31,.12);background:#1f1f1f;color:#fff8d6}.storefront-footer div,.storefront-footer a{display:flex;flex-direction:column;gap:2px;min-width:min(260px,100%)}.storefront-footer strong{color:#ffcf24;font-size:12px;text-transform:uppercase;letter-spacing:.08em}.storefront-footer span{color:#ffffffd1;font-size:14px;font-weight:700}.storefront-footer a{min-width:auto;flex-direction:row;align-items:center;color:#fff;font-weight:800;text-decoration:none}.storefront-products,.storefront-cart{border-radius:8px;background:#ffffffeb;border:1px solid rgba(31,31,31,.12);box-shadow:0 12px 34px #1f1f1f0d}.storefront-products{padding:22px}.storefront-products.campaign-view{padding:0;overflow:hidden}.storefront-products.campaign-view .storefront-section-title,.storefront-products.campaign-view .storefront-grid,.storefront-products.campaign-view .storefront-empty,.storefront-products.campaign-view .storefront-loading,.storefront-products.campaign-view .storefront-alert{margin-right:22px;margin-left:22px}.storefront-products.campaign-view .storefront-section-title{margin-top:20px}.storefront-campaign-view-header{position:relative;min-height:310px;display:grid;grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr);grid-template-rows:auto 1fr;align-items:center;gap:24px 36px;padding:30px 36px;border-radius:8px 8px 0 0;background:#171812;color:#fff;overflow:hidden}.storefront-campaign-view-header:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;background:linear-gradient(90deg,rgba(8,8,7,.5),transparent 54%),radial-gradient(circle at 78% 38%,rgba(255,207,36,.2),transparent 36%);pointer-events:none}.storefront-campaign-view-header .storefront-campaign-cover-mosaic{position:relative;inset:auto;grid-column:2;grid-row:1 / span 2;width:100%;height:250px;justify-content:center;gap:18px;z-index:2}.storefront-campaign-view-header .storefront-campaign-cover-mosaic img{width:clamp(112px,11vw,154px)}.storefront-campaign-view-header .storefront-back-button{position:relative;grid-column:1;grid-row:1;align-self:start;z-index:2;width:fit-content;background:#ffcf24}.storefront-campaign-view-copy{position:relative;grid-column:1;grid-row:2;align-self:end;z-index:2}.storefront-campaign-view-header span{display:block;margin-bottom:6px;color:#ffcf24;font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.storefront-campaign-view-header h2{max-width:720px;color:#fff;font-size:36px;line-height:1.05}.storefront-campaign-view-header p{max-width:620px;margin-top:8px;color:#ffffffd6;font-weight:800;line-height:1.35}.storefront-campaign-view-header strong{display:inline-flex;width:fit-content;margin-top:16px;padding:10px 14px;border-radius:999px;background:#fff8d6;color:#1f1f1f;font-size:13px;font-weight:900}.storefront-section-title,.storefront-cart-header,.storefront-cart-total{display:flex;align-items:center;justify-content:space-between;gap:16px}.storefront-section-title{margin-bottom:18px}.storefront-section-title.kids{position:relative;min-height:170px;align-items:center;padding:22px 520px 22px 22px;border-radius:8px;background:linear-gradient(90deg,#ffcf2433,#fffdf7d1),#fff8d6;border:1px solid rgba(255,207,36,.42);overflow:hidden}.storefront-kids-title-art{position:absolute;right:34px;bottom:14px;width:460px;max-width:38%;max-height:142px;height:auto;object-fit:contain;object-position:center bottom;pointer-events:none;opacity:.98}.storefront-section-title.kids>button{position:relative;z-index:2;justify-self:end}.storefront-section-title.kids p,.storefront-section-title.kids .storefront-refresh-button,.storefront-refresh-link{display:none}.storefront-title-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap;width:min(100%,520px)}.storefront-title-row .storefront-preorder-link{margin-left:auto}.storefront-back-button{display:inline-flex;align-items:center;gap:6px;padding:9px 12px;border:1px solid rgba(31,31,31,.14);border-radius:8px;background:#fff8d6;color:#1f1f1f;font-weight:800;cursor:pointer}.storefront-section-title .storefront-back-button{background:#fff8d6;color:#1f1f1f;border:1px solid rgba(31,31,31,.14)}.storefront-section-title h2,.storefront-cart-header h2{font-size:24px;line-height:1.1}.storefront-section-title p,.storefront-cart-header span{color:#6b6250}.storefront-inline-search{width:min(100%,520px);min-height:48px;display:grid;grid-template-columns:1fr 40px;align-items:center;gap:8px;margin-top:14px;padding:6px 6px 6px 16px;border:1px solid rgba(31,31,31,.14);border-radius:999px;background:#fff;box-shadow:0 8px 20px #1f1f1f0d}.storefront-inline-search input{min-width:0;border:0;outline:0;background:transparent;color:#1f1f1f;font:inherit;font-weight:800}.storefront-inline-search input::placeholder{color:#1f1f1f85}.storefront-inline-search button{width:38px;height:38px;display:inline-flex;align-items:center;justify-content:center;padding:0;border:0;border-radius:999px;background:transparent;color:#1f1f1f;cursor:pointer}.storefront-preorder-link{display:inline-flex;align-items:center;justify-content:center;gap:8px;width:fit-content;margin:0;padding:9px 13px;border:1px solid rgba(161,92,0,.18);border-radius:999px;background:radial-gradient(circle at 100% 0%,rgba(255,255,255,.48),transparent 36%),#ffcf24;color:#1f1f1f;font-weight:900;box-shadow:0 14px 28px #ffcf2438;cursor:pointer}.storefront-preorder-link:hover,.storefront-preorder-link:focus-visible{background:#1f1f1f;color:#ffcf24;transform:translateY(-1px)}.storefront-section-title button{display:inline-flex;align-items:center;gap:8px;padding:10px 14px}.storefront-section-title .storefront-inline-search button{width:38px;height:38px;justify-content:center;gap:0;padding:0;background:transparent;color:#1f1f1f;box-shadow:none}.storefront-section-title .storefront-preorder-link{width:fit-content;height:auto;padding:9px 13px;background:radial-gradient(circle at 100% 0%,rgba(255,255,255,.48),transparent 36%),#ffcf24;color:#1f1f1f;box-shadow:0 14px 28px #ffcf2438}.storefront-section-title .storefront-preorder-link:hover,.storefront-section-title .storefront-preorder-link:focus-visible{background:#1f1f1f;color:#ffcf24}.storefront-products>.storefront-refresh-link{justify-self:end;margin:-8px 2px 18px auto;padding:0;border:0;background:transparent;color:#8a6b00;font-size:15px;font-weight:900;font-style:italic;text-decoration:underline;text-underline-offset:4px;box-shadow:none}.storefront-products>.storefront-refresh-link:hover{transform:none;box-shadow:none;color:#1f1f1f}.storefront-subjects{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin:-4px 0 18px;padding-bottom:16px;border-bottom:1px solid rgba(31,31,31,.08)}.storefront-subjects span{color:#6b6250;font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.storefront-subjects button{padding:8px 10px;border:1px solid rgba(31,31,31,.12);border-radius:999px;background:#fff8d6;color:#1f1f1f;font-size:13px;font-weight:800;cursor:pointer}.storefront-subjects button.active{border-color:#1f1f1f;background:#1f1f1f;color:#ffcf24}.storefront-subjects button.clear{background:transparent;color:#6b6250}.storefront-alert,.storefront-empty,.storefront-loading,.storefront-cart-empty{padding:28px;border-radius:8px;background:#fff8d6;color:#6b6250;text-align:center}.storefront-loading{display:flex;justify-content:center;align-items:center;gap:12px}.storefront-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:22px}.storefront-load-more{display:flex;justify-content:center;margin-top:22px}.storefront-load-more button{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-width:220px;padding:12px 18px;border:0;border-radius:8px;background:#1f1f1f;color:#fff;font-weight:800;cursor:pointer}.storefront-load-more button:disabled{cursor:wait;opacity:.75}.store-product-card{display:grid;grid-template-rows:246px minmax(108px,1fr) auto;gap:11px;min-width:0;padding:12px;border:1px solid rgba(31,31,31,.09);border-radius:8px;background:#fffdf7e6;box-shadow:0 10px 26px #1f1f1f0d;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}.store-product-card:hover{transform:translateY(-2px);border-color:#a15c0033;box-shadow:0 16px 34px #1f1f1f14}.store-product-cover{position:relative;width:100%;height:246px;display:flex;align-items:center;justify-content:center;border-radius:7px;overflow:hidden;background:linear-gradient(180deg,#fff,#fff8e6);box-shadow:inset 0 0 0 1px #1f1f1f0f}.store-product-cover img{width:auto;height:auto;max-width:100%;max-height:100%;object-fit:contain;display:block}.store-product-cover.square img{object-fit:contain}.store-product-cover.landscape{background:#f7f0df;padding:8px}.store-product-cover.landscape img{width:100%;height:auto;max-height:100%}.store-stock{justify-self:start;align-self:start;margin-top:-2px;padding:5px 8px;border-radius:999px;background:#ffcf2447;color:#5f4200;font-size:10px;font-weight:900;line-height:1}.store-stock.low{background:#fff1bd;color:#a15c00}.store-product-info h3{display:-webkit-box;overflow:hidden;-webkit-line-clamp:3;-webkit-box-orient:vertical;font-size:16px;line-height:1.25;margin-bottom:6px}.store-product-info p{display:-webkit-box;min-height:36px;overflow:hidden;-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#6b6250;font-size:13px;line-height:1.35}.store-product-info strong{display:block;margin-top:10px;font-size:18px}.storefront-price{display:grid;gap:2px;margin-top:10px}.storefront-price span{color:#8a6b00;font-size:12px;font-weight:800;text-decoration:line-through}.storefront-price strong{margin-top:0;color:#b91c1c;font-size:20px}.storefront-price.compact{margin-top:8px}.storefront-price.compact strong{font-size:16px}.store-product-info .storefront-price strong,.storefront-release-card .storefront-price strong,.storefront-product-detail .storefront-price strong{display:block}.store-product-actions{display:grid;grid-template-columns:minmax(0,1fr) 44px;gap:8px}.store-product-card button{display:inline-flex;justify-content:center;align-items:center;gap:8px;min-height:40px;padding:9px 10px;min-width:0;white-space:nowrap}.store-product-card .store-product-details{width:auto;padding-inline:10px;background:#fff8d6;color:#1f1f1f;border:1px solid rgba(31,31,31,.14)}.store-product-card .store-product-add{width:44px;padding-inline:0;background:#ffcf24;color:#1f1f1f;box-shadow:0 8px 18px #a15c0024}.store-product-card .store-product-add svg{color:#1f1f1f}.store-product-card .store-product-add span{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}.storefront-product-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:140;display:flex;align-items:center;justify-content:center;padding:24px;overflow:auto;background:#1f1f1f9e}.storefront-product-dialog{position:relative;display:grid;grid-template-columns:minmax(210px,280px) minmax(0,1fr);gap:24px;width:min(860px,100%);max-height:min(720px,92vh);overflow:auto;padding:24px;border-radius:8px;background:#fffdf7;box-shadow:0 22px 70px #00000052}.storefront-product-dialog:has(.storefront-product-detail-cover.landscape){grid-template-columns:minmax(260px,360px) minmax(0,1fr);width:min(920px,100%)}.storefront-product-close{position:sticky;top:0;grid-column:1 / -1;justify-self:end;z-index:3;margin:-8px -8px -12px 0;width:36px;height:36px;display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(31,31,31,.14);border-radius:8px;background:#fff8d6;color:#1f1f1f;cursor:pointer;box-shadow:0 8px 24px #00000029}.storefront-product-detail-cover{aspect-ratio:2 / 3;min-height:0;max-height:460px;display:flex;align-items:center;justify-content:center;overflow:hidden;border-radius:8px;background:#fff;box-shadow:inset 0 0 0 1px #1f1f1f14}.storefront-product-detail-cover img{width:100%;height:100%;object-fit:contain;display:block}.storefront-product-detail-cover.square img{object-fit:contain}.storefront-product-detail-cover.landscape{aspect-ratio:16 / 10;min-height:0;max-height:260px;width:100%;align-self:start;background:#f7f0df;padding:16px}.storefront-product-detail-cover.landscape img{width:100%;height:100%;object-fit:contain}.storefront-product-detail{min-width:0;padding-right:28px}.storefront-product-detail>span{display:inline-flex;max-width:min(100%,360px);padding:4px 9px;border-radius:999px;background:#ffcf2438;margin-bottom:10px;color:#8a6b00;font-size:12px;font-weight:900;line-height:1.25}.storefront-product-detail h2{max-width:560px;font-size:30px;line-height:1.12;margin-bottom:8px}.storefront-product-author{color:#6b6250;margin-bottom:14px}.storefront-product-detail strong{display:block;font-size:24px;margin-bottom:14px}.storefront-product-detail .storefront-price{margin:4px 0 14px}.storefront-product-detail .storefront-price span{color:#8a6b00;font-size:13px;font-weight:900;text-decoration:line-through}.storefront-product-detail .storefront-price strong{color:#b91c1c;font-size:26px;margin-bottom:0}.storefront-product-stock{width:fit-content;margin:-6px 0 14px;padding:5px 9px;border-radius:999px;background:#ffcf2447;color:#5f4200;font-size:11px;font-weight:900}.storefront-product-stock.low{background:#fff1bd;color:#a15c00}.storefront-product-stock.preorder{background:#e0f2fe;color:#075985}.storefront-product-detail dl{display:grid;grid-template-columns:auto 1fr;gap:8px 14px;margin:0 0 18px;padding:14px 0;border-top:1px solid rgba(31,31,31,.1);border-bottom:1px solid rgba(31,31,31,.1)}.storefront-product-detail dt{color:#6b6250;font-weight:800}.storefront-product-detail dd{margin:0}.storefront-product-description{color:#3d3524;line-height:1.6;margin-bottom:18px}.storefront-product-description.muted{color:#8d846f}.storefront-product-detail .storefront-product-reserve{display:inline-flex;align-items:center;justify-content:center;gap:8px;margin-bottom:18px;border:0;border-radius:8px;background:#ffcf24;color:#1f1f1f;padding:12px 16px;font-weight:900;cursor:pointer;box-shadow:0 10px 22px #a15c0024}.storefront-cart{position:sticky;top:104px;max-height:calc(100vh - 124px);overflow:auto;padding:20px}.storefront-cart-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:70;display:flex;justify-content:flex-end;padding:84px 24px 24px;background:#1f1f1f70}.storefront-cart-overlay .storefront-cart{position:relative;top:auto;width:min(430px,100%);max-height:calc(100vh - 108px);overflow:auto;background:#fffdf7;box-shadow:0 22px 70px #00000052}.storefront-cart-close{width:36px;height:36px;display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(31,31,31,.14);border-radius:8px;background:#fff8d6;color:#1f1f1f;cursor:pointer}.storefront-cart-items{display:flex;flex-direction:column;gap:14px;margin:18px 0;max-height:420px;overflow:auto}.storefront-cart-item{display:grid;grid-template-columns:1fr auto;gap:12px;padding-bottom:14px;border-bottom:1px solid rgba(31,31,31,.1)}.storefront-cart-item strong{display:block;font-size:14px;line-height:1.25;margin-bottom:4px}.storefront-cart-item span{color:#6b6250;font-size:13px}.storefront-qty{display:grid;grid-template-columns:30px 28px 30px;align-items:center;gap:4px;text-align:center}.storefront-qty button{width:30px;height:30px;display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(31,31,31,.16);border-radius:6px;background:#fff8d6;color:#1f1f1f;cursor:pointer}.storefront-cart-total{margin:16px 0;padding-top:16px;border-top:2px solid rgba(31,31,31,.12)}.storefront-cart-total strong{font-size:22px}.storefront-customer{display:grid;gap:10px;margin:16px 0}.storefront-customer label{display:grid;gap:6px;color:#5c543f;font-size:12px;font-weight:800;text-transform:uppercase}.storefront-customer input,.storefront-customer textarea{width:100%;border:1px solid rgba(31,31,31,.16);border-radius:6px;background:#fffdf2;color:#1f1f1f;font:inherit;font-size:14px;padding:10px 11px;outline:none}.storefront-continue-shopping{width:100%;min-height:46px;display:inline-flex;align-items:center;justify-content:center;gap:8px;margin:4px 0 10px;border:1px solid rgba(31,31,31,.14);border-radius:8px;background:#fff8d6;color:#1f1f1f;font-weight:900;cursor:pointer}.storefront-customer input:focus,.storefront-customer textarea:focus{border-color:#1f1f1f;box-shadow:0 0 0 3px #1f1f1f14}.storefront-customer textarea{min-height:76px;resize:vertical}.storefront-customer p{color:#6b6250;font-size:12px;line-height:1.45}.storefront-anti-bot{position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden;opacity:0;pointer-events:none}.storefront-checkout{width:100%;padding:14px 16px;font-size:15px;display:inline-flex;align-items:center;justify-content:center;gap:8px}.storefront-checkout:disabled{opacity:.72;cursor:not-allowed;transform:none}.settings-grid{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);gap:24px;align-items:start}.settings-preview{display:grid;gap:8px;margin-top:18px;padding:16px;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-primary)}.settings-preview span{color:var(--text-muted);font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.settings-preview p{margin:0;color:var(--text-secondary);line-height:1.4}.store-builder-grid{display:grid;gap:20px}.store-builder-section .card-header p{margin-top:4px;color:var(--text-muted);font-size:12px}.store-builder-toggle{display:inline-flex;align-items:center;gap:8px;color:var(--text-secondary);font-size:13px;font-weight:700}.store-builder-note{padding:14px;border:1px solid rgba(245,158,11,.24);border-radius:8px;background:#f59e0b14;color:var(--text-secondary);font-size:13px}.store-builder-picker{margin-bottom:14px}.store-builder-products,.store-builder-cards{display:grid;gap:10px}.store-builder-product{display:grid;grid-template-columns:auto 44px minmax(0,1fr) auto auto auto;align-items:center;gap:10px;padding:10px;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary)}.store-builder-product strong{display:block;font-size:13px;line-height:1.3}.store-builder-product span{color:var(--text-muted);font-size:12px}.store-builder-card-editor{overflow:hidden;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary)}.store-builder-card-editor .card-header{padding:12px 14px}.store-builder-card-editor h4{font-size:14px}.store-builder-card-editor .form-row,.store-builder-card-editor .form-group{padding:0 14px}.store-builder-card-editor .form-row{padding-top:14px}.store-builder-card-editor .form-group:last-child{padding-bottom:14px}.store-builder-actions{display:flex;justify-content:flex-end;margin-top:18px}.campaigns-layout{display:grid;grid-template-columns:minmax(260px,320px) minmax(0,1fr);gap:20px;align-items:start}.campaigns-list{position:sticky;top:24px}.campaigns-list-body{display:grid;gap:8px;padding:14px}.campaign-list-item{display:grid;gap:5px;width:100%;padding:12px;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-input);color:var(--text-secondary);text-align:left;cursor:pointer}.campaign-list-item.active,.campaign-list-item:hover{border-color:var(--accent-primary);background:#6366f11f;color:var(--text-primary)}.campaign-list-item strong,.campaign-list-item span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.campaign-list-item span{color:var(--text-muted);font-size:12px}.campaign-status{width:fit-content;padding:3px 8px;border-radius:999px;background:#94a3b81f;color:var(--text-secondary);font-size:10px;font-style:normal;font-weight:800;text-transform:uppercase}.campaign-status.active{background:var(--accent-success-bg);color:var(--accent-success)}.campaign-status.ended{background:var(--accent-danger-bg);color:var(--accent-danger)}.campaign-editor{display:grid;gap:20px}.campaign-actions{display:flex;gap:10px;align-items:end;flex-wrap:wrap}.campaign-actions{justify-content:flex-end;max-width:430px}.campaign-actions .btn{min-height:40px}.campaign-import-card .card-header p,.campaign-editor .card-header p{margin-top:4px;color:var(--text-muted);font-size:12px}.campaign-stats{display:flex;flex-wrap:wrap;gap:10px;padding:16px 24px;border-bottom:1px solid var(--border-color)}.campaign-stats span{padding:10px 12px;border-radius:8px;background:var(--bg-secondary);color:var(--text-secondary);font-size:13px}.campaign-stats strong{color:var(--text-primary)}.campaign-products-table{overflow-x:auto}.campaign-row-subtitle{display:block;margin-top:3px;color:var(--text-muted);font-size:12px}.muted{color:var(--text-muted)}.text-danger{color:var(--accent-danger)}.empty-state.compact{min-height:160px;padding:28px}@media (max-width: 980px){.campaigns-layout{grid-template-columns:1fr}.campaigns-list{position:static}.campaign-actions{width:100%;max-width:none;justify-content:flex-start}.storefront-hero,.storefront-content{grid-template-columns:1fr}.storefront-brand{width:96px}.storefront-feature-grid,.storefront-quick-links{grid-template-columns:1fr}.storefront-quick-card{min-height:190px}.storefront-campaign-card{min-height:190px;align-items:start;flex-direction:column}.storefront-campaign-cover-mosaic{right:12px;top:30px;bottom:18px;width:42%;gap:6px;opacity:.72}.storefront-campaign-cover-mosaic img{width:58px}.storefront-campaign-cover-mosaic img:nth-child(n+3){display:none}.storefront-campaign-card h2{font-size:24px}.storefront-promo-showcase{grid-template-columns:1fr;gap:12px;padding:14px}.storefront-promo-copy h2{font-size:24px}.storefront-promo-copy p{display:none}.storefront-promo-copy button{min-height:42px;margin-top:14px}.storefront-promo-controls{margin-top:-4px}.storefront-promo-rail{grid-auto-columns:86px;gap:12px}.storefront-promo-book{grid-template-rows:126px}.storefront-promo-book img{height:126px}.storefront-promo-campaigns button{min-width:166px}.storefront-quick-card-kids{min-height:230px}.storefront-hero{padding:28px;min-height:390px;background:linear-gradient(180deg,#14130fe6,#14130f6b),url(/nobel-frente-loja.jpeg) 52% 20% / cover no-repeat}.storefront-cart{max-height:calc(100vh - 40px)}.storefront-cart-overlay{align-items:flex-end;padding:16px}.storefront-cart-overlay .storefront-cart{width:100%;max-height:calc(100vh - 32px)}.storefront-product-dialog{grid-template-columns:1fr;padding:18px}.storefront-product-dialog:has(.storefront-product-detail-cover.landscape){grid-template-columns:1fr;width:min(860px,100%)}.storefront-product-detail{padding-right:0}.storefront-product-detail-cover{width:min(260px,100%);justify-self:center}.storefront-product-detail-cover.landscape{width:100%;max-height:230px}.settings-grid{grid-template-columns:1fr}}@media (max-width: 560px){html,body,#root{width:100%;max-width:100%;overflow-x:hidden}body:has(.storefront){overflow-y:auto;overflow-x:hidden}.storefront{width:100%;max-width:100vw;min-height:100dvh;padding-top:82px;overflow-y:visible}.storefront-header{position:fixed;top:0;left:0;right:0;grid-template-columns:auto 1fr;gap:10px;align-items:center;min-height:82px;padding:10px 12px;background:#ffcf24}.storefront-brand{grid-column:1;grid-row:1;width:126px;height:52px}.storefront-header-actions{grid-column:2;grid-row:1;gap:6px}.storefront-cart-pill{min-height:42px}.storefront-header-link{display:none}.storefront-main{padding:12px 12px 32px;width:100%;max-width:100vw;overflow:visible}.storefront-header,.storefront-hero,.storefront-quick-links,.storefront-feature-grid,.storefront-content,.storefront-products,.storefront-releases,.storefront-editorial-section{width:100%;max-width:100%}.storefront-search{grid-template-columns:minmax(0,1fr) 40px;min-height:46px;padding:5px 5px 5px 12px}.storefront-search button{grid-column:auto;width:36px;height:36px;padding:0}.storefront-search-menu{grid-column:1 / -1;position:fixed;left:0;right:0;top:82px;z-index:79;display:grid;gap:18px;max-height:calc(100dvh - 82px);overflow:auto;padding:18px 16px 24px;border-top:1px solid rgba(31,31,31,.1);border-radius:0;background:#ffcf24;box-shadow:0 18px 40px #1f1f1f29}.storefront-search-menu-groups{grid-template-columns:1fr;gap:18px}.storefront-search-menu-group>span{margin-bottom:4px;font-size:11px}.storefront-search-menu-list{grid-template-columns:1fr;gap:0}.storefront-search-menu-list button,.storefront-search-menu-list a{padding:14px 0;font-size:18px}.storefront-subject-select{display:none}.storefront-cart-pill{width:42px;height:42px;justify-content:center;padding:0}.storefront-cart-pill span{position:absolute;right:-5px;top:-5px;min-width:18px;height:18px;display:inline-flex;align-items:center;justify-content:center;padding:0 5px;border-radius:999px;background:#1f1f1f;color:#fff;font-size:10px;line-height:1}.storefront-hero{min-height:235px;padding:18px;background:linear-gradient(180deg,#14130fe0,#14130f61),url(/nobel-frente-loja.jpeg) 52% 18% / cover no-repeat}.storefront-hero-copy h1{max-width:270px;font-size:29px}.storefront-hero-copy p{max-width:260px;font-size:14px;line-height:1.42}.storefront-hero-meta{padding-top:12px}.storefront-mobile-shortcuts{position:relative;display:block;margin-top:10px}.storefront-mobile-shortcuts-controls{position:absolute;top:12px;right:0;bottom:0;left:0;z-index:3;display:flex;align-items:center;justify-content:space-between;pointer-events:none}.storefront-mobile-shortcuts-controls button{width:38px;height:38px;display:inline-flex;align-items:center;justify-content:center;padding:0;border:1px solid rgba(31,31,31,.14);border-radius:999px;background:#fffdf7f2;color:#1f1f1f;pointer-events:auto;box-shadow:0 10px 24px #1f1f1f29}.storefront-mobile-shortcuts-controls button:first-child{transform:translate(-8px)}.storefront-mobile-shortcuts-controls button:last-child{transform:translate(8px)}.storefront-mobile-shortcuts-track{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(174px,188px);gap:12px;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x proximity;padding:2px 8px 8px;scrollbar-width:none}.storefront-mobile-shortcuts-track::-webkit-scrollbar{display:none}.storefront-mobile-shortcut{position:relative;min-height:106px;display:flex;flex-direction:column;justify-content:space-between;gap:14px;padding:13px;border:1px solid rgba(161,92,0,.15);border-radius:8px;background:radial-gradient(circle at top right,rgba(255,207,36,.34),transparent 42%),#fff8d6;color:#1f1f1f;text-align:left;scroll-snap-align:start;box-shadow:0 10px 24px #1f1f1f0f}.storefront-mobile-shortcut.gold{border-color:#a15c0033;background:#ffcf24;color:#1f1f1f}.storefront-mobile-shortcut.dark{border-color:#ffcf2457;background:radial-gradient(circle at top right,rgba(255,207,36,.2),transparent 44%),#111;color:#fff8d6;box-shadow:0 12px 28px #1f1f1f2e}.storefront-mobile-shortcut-icon{width:38px;height:38px;display:inline-flex;align-items:center;justify-content:center;border-radius:8px;background:#ffcf24;color:#1f1f1f}.storefront-mobile-shortcut.gold .storefront-mobile-shortcut-icon,.storefront-mobile-shortcut.dark .storefront-mobile-shortcut-icon{background:#ffffff5c}.storefront-mobile-shortcut.dark .storefront-mobile-shortcut-icon{color:#ffcf24}.storefront-mobile-shortcut-arrow{position:absolute;right:13px;top:20px;color:currentColor;opacity:.58}.storefront-mobile-shortcut-copy{display:grid;gap:4px;min-width:0}.storefront-mobile-shortcut strong{min-width:0;overflow:hidden;font-size:14px;font-weight:900;line-height:1.08;white-space:normal}.storefront-mobile-shortcut em{min-width:0;overflow:hidden;color:#6c4a00db;font-size:11px;font-style:normal;font-weight:800;line-height:1.18;white-space:normal}.storefront-mobile-shortcut.gold em{color:#1f1f1fc2}.storefront-mobile-shortcut.dark em{color:#d5ac42}.storefront-promo-showcase{display:none}.storefront-quick-links{display:block;margin-top:6px;overflow:visible;padding-bottom:0}.storefront-quick-links .storefront-quick-card:not(.storefront-quick-card-kids){display:none}.storefront-quick-links::-webkit-scrollbar,.storefront-release-rail::-webkit-scrollbar,.storefront-editorial-grid::-webkit-scrollbar,.storefront-grid::-webkit-scrollbar{display:none}.storefront-quick-card{min-height:160px;padding:16px 16px 15px;scroll-snap-align:none;box-shadow:0 12px 28px #1f1f1f14}.storefront-quick-card h2{font-size:23px;line-height:1.05}.storefront-quick-card p{margin-top:8px}.storefront-quick-card strong{margin-top:14px}.storefront-quick-card-kids{grid-column:1 / -1;aspect-ratio:16 / 9;min-height:0;align-self:start;padding:14px;background:#ffe47a}.storefront-featured-kids{width:100%;min-height:0}.storefront-quick-card-kids .storefront-kids-shelf{object-fit:cover;object-position:center 18%}.storefront-quick-card-kids:before{background:linear-gradient(90deg,#14130fad,#14130f3d 55%,#14130f0a),linear-gradient(180deg,#ffcf240f,#ffcf241f)}.storefront-kids-mascot{right:8px;bottom:-2px;width:38%}.storefront-featured-kids .storefront-kids-mascot{right:6px;width:39%}.storefront-quick-card-kids>div{left:14px;bottom:10px;max-width:38%;text-align:left}.storefront-featured-kids>div{max-width:40%}.storefront-quick-card-kids h2{max-width:110px;font-size:16px;line-height:1.02;color:#ffcf24;text-shadow:0 2px 10px rgba(0,0,0,.48)}.storefront-quick-card-kids strong{left:50%;bottom:14px;padding:8px 12px;background:#bfe8ef;color:#1f1f1f}.storefront-conecta-mark,.storefront-quick-placeholder,.storefront-quick-trophy{width:48px;height:48px;margin-bottom:10px}.storefront-quick-card-conecta h2{font-size:21px}.storefront-quick-card-conecta,.storefront-quick-card-best{min-height:166px}.storefront-pathway-releases{grid-column:span 1;width:100%;justify-self:center;min-height:170px;padding:15px;background:radial-gradient(circle at 88% 20%,rgba(255,207,36,.38),transparent 30%),linear-gradient(145deg,#fff,#fff7d7 58%,#ffe78a)}.storefront-pathway-releases:before{right:8px;top:10px;width:30px;height:30px;border-radius:10px;background:linear-gradient(#1f1f1f,#1f1f1f) 9px 9px / 12px 2px no-repeat,linear-gradient(#1f1f1f,#1f1f1f) 9px 14px / 12px 2px no-repeat,linear-gradient(#1f1f1f,#1f1f1f) 9px 19px / 12px 2px no-repeat,#ffcf2461;opacity:.82}.storefront-pathway-releases span{max-width:82px;font-size:11px}.storefront-pathway-releases h2{max-width:118px;font-size:19px;line-height:1.08}.storefront-pathway-releases p{max-width:112px;font-size:11px;line-height:1.32}.storefront-pathway-releases strong{width:100%;justify-content:center;padding:9px 10px;font-size:12px}.storefront-catalog-search-card label{min-height:44px;margin-top:8px;padding-inline:12px}.storefront-catalog-search-card button{width:34px;height:34px}.storefront-quick-card-conecta{grid-column:1 / -1}.storefront-quick-card-conecta h2{max-width:230px;font-size:24px}.storefront-quick-card-conecta p,.storefront-quick-card-best p{display:none}.storefront-quick-card-conecta strong,.storefront-quick-card-best strong{padding:9px 11px;font-size:12px}.storefront-quick-card-best{min-height:170px;padding:15px}.storefront-quick-card-best h2{font-size:21px}.storefront-quick-card-best .storefront-quick-trophy{width:44px;height:44px;margin-bottom:8px}.storefront-quick-card-best .storefront-quick-trophy svg{width:28px;height:28px}.storefront-releases,.storefront-editorial-section{margin-top:16px;padding:18px 0 20px}.storefront-releases-header{padding:0 16px 14px}.storefront-releases-header h2{font-size:26px}.storefront-release-controls button{width:38px;height:38px}.storefront-release-rail{grid-auto-columns:minmax(132px,148px);gap:14px;padding:0 16px 6px;scrollbar-width:none}.storefront-release-card h3{display:-webkit-box;min-height:52px;max-height:68px;overflow:hidden;-webkit-line-clamp:4;-webkit-box-orient:vertical;font-size:14px}.storefront-editorial-grid{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(222px,calc(100vw - 92px));grid-template-columns:none;gap:12px;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x proximity;padding:0 16px;scrollbar-width:none}.storefront-editorial-button{scroll-snap-align:start}.storefront-editorial-card{min-height:132px;align-items:flex-start}.storefront-editorial-card>div{padding:14px}.storefront-editorial-card h3{font-size:16px}.storefront-editorial-card p{font-size:12px;-webkit-line-clamp:1}.storefront-editorial-card span{margin-top:10px;font-size:10px}.storefront-products{padding:18px 14px}.storefront-products.campaign-view{padding:0 0 18px}.storefront-products.campaign-view .storefront-section-title,.storefront-products.campaign-view .storefront-grid,.storefront-products.campaign-view .storefront-empty,.storefront-products.campaign-view .storefront-loading,.storefront-products.campaign-view .storefront-alert{margin-right:14px;margin-left:14px}.storefront-campaign-view-header{min-height:0;grid-template-columns:auto minmax(0,1fr);grid-template-rows:126px auto;align-items:start;gap:12px 10px;padding:16px 14px 20px}.storefront-campaign-view-header .storefront-campaign-cover-mosaic{position:relative;inset:auto;grid-column:2;grid-row:1;width:100%;height:126px;justify-content:flex-end;gap:6px;opacity:1;overflow:hidden}.storefront-campaign-view-header .storefront-campaign-cover-mosaic img{width:72px}.storefront-campaign-view-header .storefront-back-button{position:relative;grid-column:1;grid-row:1;align-self:start;margin-top:10px;z-index:3}.storefront-campaign-view-copy{grid-column:1 / -1;grid-row:2}.storefront-campaign-view-header h2{max-width:280px;font-size:29px}.storefront-campaign-view-header p{font-size:14px}.storefront-section-title{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:start;gap:10px;margin-bottom:16px}.storefront-section-title.kids{min-height:228px;align-items:start;padding:18px 14px 140px}.storefront-kids-title-art{right:3%;bottom:8px;width:94%;max-width:94%;height:auto;object-fit:contain;object-position:center bottom}.storefront-section-title.kids h2{white-space:nowrap;font-size:28px}.storefront-section-title.kids>button{justify-self:end}.storefront-products>.storefront-refresh-link{margin:-6px 2px 16px auto;font-size:14px}.storefront-section-title h2,.storefront-cart-header h2{font-size:27px}.storefront-section-title button{max-width:116px;padding:10px 11px;white-space:nowrap;overflow:hidden}.storefront-section-title .storefront-preorder-link{display:none}.storefront-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));column-gap:14px;row-gap:30px;overflow:visible;padding-bottom:0}.store-product-card{display:grid;grid-template-columns:1fr;grid-template-rows:210px auto auto;gap:8px;padding:0;border:0;border-radius:0;background:transparent;box-shadow:none;scroll-snap-align:none}.store-product-card:hover{transform:none;box-shadow:none}.store-product-actions{grid-template-columns:minmax(0,1fr) 42px;gap:8px}.store-product-card .store-product-details{width:auto;padding:6px}.store-stock{justify-self:start;margin:0;padding:4px 6px;font-size:9px}.store-product-cover{width:100%;height:210px;padding:0;border-radius:0;background:transparent;box-shadow:none}.store-product-cover img,.store-product-cover.landscape img{width:auto;height:auto;max-width:100%;max-height:100%;object-fit:contain}.store-product-info{min-width:0;padding-top:0}.store-product-info h3{display:-webkit-box;min-height:0;overflow:hidden;-webkit-line-clamp:2;-webkit-box-orient:vertical;font-size:13px;line-height:1.22}.store-product-info p{display:-webkit-box;margin-top:6px;min-height:0;overflow:hidden;-webkit-line-clamp:1;-webkit-box-orient:vertical;font-size:12px;line-height:1.25}.store-product-info strong{margin-top:8px;font-size:15px}.store-product-card button{min-height:34px;padding:7px 6px;font-size:12px;gap:6px;border-radius:7px}.store-product-card .store-product-details{min-height:32px;padding:6px;background:#fff8d6b8}.store-product-card .store-product-add{width:42px;padding:0;background:#ffcf24;color:#1f1f1f;box-shadow:0 8px 18px #a15c0024}.store-product-card .store-product-add svg{color:#1f1f1f}.store-product-card .store-product-add span{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}.store-product-card .store-product-details,.store-product-card button:not(.store-product-details){width:auto}.store-product-card .store-product-details{justify-self:stretch;margin:2px 0 0}.store-product-card .store-product-add{justify-self:stretch;margin:0}.storefront-product-modal{align-items:flex-start;padding:10px}.storefront-product-dialog,.storefront-product-dialog:has(.storefront-product-detail-cover.landscape){display:flex;flex-direction:column;gap:16px;width:min(100%,360px);max-height:calc(100dvh - 20px);padding:16px;overflow:auto}.storefront-product-close{position:absolute;top:12px;right:12px;margin:0}.storefront-product-detail-cover,.storefront-product-detail-cover.landscape{width:100%;height:280px;flex:0 0 280px;max-height:none;aspect-ratio:auto;padding:10px}.storefront-product-detail-cover img,.storefront-product-detail-cover.landscape img{width:auto;height:auto;max-width:100%;max-height:100%;object-fit:contain}.storefront-product-detail>span{margin-bottom:7px;font-size:11px}.storefront-product-detail h2{font-size:25px;line-height:1.08}.storefront-product-author{margin-bottom:10px}.storefront-product-detail strong{margin-bottom:12px;font-size:23px}.storefront-product-detail .storefront-product-reserve{width:100%;margin-bottom:14px}.storefront-product-detail dl{grid-template-columns:84px minmax(0,1fr);font-size:14px}.storefront-product-detail dd{overflow-wrap:anywhere}.storefront-projects-area{margin-top:30px;padding:24px 14px 26px;border-radius:8px}}.reconciliation-alert{display:flex;gap:12px;align-items:flex-start;margin-bottom:20px;padding:16px;border:1px solid rgba(34,197,94,.24);border-radius:8px;background:#22c55e14}.reconciliation-alert svg{flex-shrink:0;margin-top:2px;color:var(--accent-success)}.reconciliation-alert strong,.reconciliation-alert span{display:block}.reconciliation-alert span{margin-top:4px;color:var(--text-secondary);font-size:14px}.ml-discovery-panel{margin-bottom:20px;overflow:hidden;border:1px solid rgba(255,230,0,.24);border-radius:10px;background:#ffe6000b}.ml-discovery-heading{display:flex;gap:18px;align-items:center;justify-content:space-between;padding:18px}.ml-discovery-heading strong,.ml-discovery-heading span{display:block}.ml-discovery-heading span{max-width:720px;margin-top:5px;color:var(--text-secondary);font-size:13px;line-height:1.5}.ml-discovery-results{padding:0 18px 18px}.ml-discovery-summary{display:grid;grid-template-columns:repeat(4,minmax(140px,1fr));gap:10px;padding-top:16px;border-top:1px solid var(--border-color)}.ml-discovery-summary>div{padding:12px 14px;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary)}.ml-discovery-summary span,.ml-discovery-summary strong{display:block}.ml-discovery-summary span{color:var(--text-muted);font-size:11px;text-transform:uppercase}.ml-discovery-summary strong{margin-top:4px;font-size:22px}.ml-discovery-summary .safe strong{color:var(--accent-success)}.ml-discovery-summary .warning strong{color:var(--accent-warning)}.ml-discovery-blocked{display:flex;gap:10px;align-items:center;margin-top:12px;padding:12px 14px;border:1px solid rgba(239,68,68,.28);border-radius:8px;background:#ef444414;color:var(--accent-danger);font-size:13px}.ml-match-list{margin-top:14px;overflow:hidden;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary)}.ml-match-row{display:grid;grid-template-columns:24px minmax(260px,1.4fr) minmax(240px,1.2fr) minmax(190px,.8fr);gap:14px;align-items:center;padding:13px 14px;border-top:1px solid var(--border-color)}.ml-match-row:first-child{border-top:0}.ml-match-row input[type=checkbox]{width:16px;height:16px;accent-color:var(--accent-primary)}.ml-match-row strong,.ml-match-row small{display:block}.ml-match-row small{margin-top:4px;color:var(--text-muted);font-size:12px}.ml-match-row small a{display:inline-flex;margin-left:7px;color:var(--accent-primary);vertical-align:middle}.ml-match-head{color:var(--text-muted);font-size:11px;font-weight:700;text-transform:uppercase}.ml-exact-match{display:inline-flex;gap:6px;align-items:center;color:var(--accent-success);font-size:12px;font-weight:700}.ml-match-actions{display:flex;flex-wrap:wrap;gap:14px;align-items:center;justify-content:flex-end;padding:14px;border-top:1px solid var(--border-color);color:var(--text-secondary);font-size:13px}.ml-linked-audit{margin-top:14px;overflow:hidden;border:1px solid rgba(59,130,246,.3);border-radius:8px;background:var(--bg-secondary)}.ml-linked-audit>summary{cursor:pointer;padding:14px;color:var(--text-primary);font-weight:800}.ml-audit-summary{display:grid;grid-template-columns:repeat(6,minmax(105px,1fr));gap:8px;padding:0 14px 12px}.ml-audit-summary>div{padding:10px 12px;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-primary)}.ml-audit-summary span,.ml-audit-summary strong{display:block}.ml-audit-summary span{color:var(--text-muted);font-size:11px;text-transform:uppercase}.ml-audit-summary strong{margin-top:3px;color:var(--accent-warning);font-size:20px}.ml-audit-summary .safe strong{color:var(--accent-success)}.ml-audit-filter{padding:0 14px 14px}.ml-audit-table{border-top:1px solid var(--border-color)}.ml-audit-row{display:grid;grid-template-columns:minmax(260px,1.5fr) minmax(160px,.9fr) minmax(120px,.65fr) minmax(120px,.65fr) minmax(180px,.8fr);gap:12px;align-items:center;padding:12px 14px;border-top:1px solid var(--border-color)}.ml-audit-row:first-child{border-top:0}.ml-audit-row strong,.ml-audit-row small{display:block}.ml-audit-row small{margin-top:4px;color:var(--text-muted)}.ml-audit-row small a{margin-left:7px;color:var(--accent-primary)}.ml-audit-head{color:var(--text-muted);font-size:11px;font-weight:700;text-transform:uppercase}.ml-audit-badges{display:flex;gap:6px;flex-wrap:wrap}.ml-audit-ok{color:var(--accent-success)!important}.ml-audit-different,.ml-audit-missing{color:var(--accent-warning)!important}.ml-unresolved-list{margin-top:14px;padding:13px 14px;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary)}.ml-unresolved-list summary{cursor:pointer;color:var(--text-secondary);font-weight:700}.ml-unresolved-list>div{display:grid;grid-template-columns:minmax(260px,1fr) minmax(240px,1fr);gap:12px;padding:10px 0;border-top:1px solid var(--border-color)}.ml-unresolved-list>div:first-of-type{margin-top:10px}.ml-unresolved-list small{color:var(--accent-warning)}.reconciliation-toolbar{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin-bottom:16px}.segmented-control{display:inline-flex;padding:4px;border-radius:8px;background:var(--bg-secondary)}.segmented-control button{min-height:36px;padding:0 14px;border:0;border-radius:6px;background:transparent;color:var(--text-secondary);font-weight:600}.segmented-control button.active{background:var(--accent-primary);color:#fff}.reconciliation-search{display:flex;gap:10px;align-items:center;flex:1 1 320px;min-height:44px;padding:0 14px;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary)}.reconciliation-search input{width:100%;border:0;background:transparent;color:var(--text-primary);outline:none}.inline-checkbox{display:flex;gap:8px;align-items:center;color:var(--text-secondary);font-size:14px}.reconciliation-stats{display:flex;gap:12px;margin-bottom:16px}.reconciliation-stats>div{min-width:180px;padding:14px 16px;border-radius:8px;background:var(--bg-secondary)}.reconciliation-stats span,.reconciliation-stats strong{display:block}.reconciliation-stats span{color:var(--text-muted);font-size:12px}.reconciliation-stats strong{margin-top:4px;font-size:24px}.reconciliation-table{overflow:hidden;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary)}.reconciliation-row{display:grid;grid-template-columns:minmax(240px,2fr) minmax(140px,1fr) minmax(180px,1fr) 120px minmax(220px,1fr);gap:14px;align-items:center;padding:14px 16px;border-top:1px solid var(--border-color)}.reconciliation-row:first-child{border-top:0}.reconciliation-row strong,.reconciliation-row small{display:block}.reconciliation-row small{margin-top:4px;color:var(--text-muted)}.reconciliation-row input{min-height:40px;padding:0 12px;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-primary);color:var(--text-primary)}.reconciliation-head{color:var(--text-muted);font-size:12px;font-weight:700;letter-spacing:0;text-transform:uppercase}.reconciliation-actions{display:flex;gap:8px;flex-wrap:wrap}.reconciliation-empty{padding:28px 16px;color:var(--text-secondary)}@media (max-width: 960px){.ml-discovery-heading{align-items:stretch;flex-direction:column}.ml-discovery-summary{grid-template-columns:repeat(2,minmax(130px,1fr))}.ml-match-row{grid-template-columns:24px 1fr}.ml-audit-summary{grid-template-columns:repeat(2,minmax(120px,1fr))}.ml-audit-row{grid-template-columns:1fr}.ml-audit-head{display:none}.ml-unresolved-list>div{grid-template-columns:1fr}.ml-match-head{display:none}.reconciliation-row,.reconciliation-head{grid-template-columns:1fr}.reconciliation-head{display:none}.reconciliation-stats{flex-direction:column}}.published-listings-alert{display:flex;gap:12px;align-items:flex-start;margin-bottom:20px;padding:16px;border:1px solid rgba(34,197,94,.24);border-radius:8px;background:#22c55e14}.published-listings-alert svg{flex-shrink:0;margin-top:2px;color:var(--accent-success)}.published-listings-alert strong,.published-listings-alert span{display:block}.published-listings-alert span{margin-top:4px;color:var(--text-secondary);font-size:14px}.published-listings-stats{display:grid;grid-template-columns:repeat(5,minmax(140px,1fr));gap:12px;margin-bottom:16px}.published-listings-stats button{padding:14px 16px;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary);color:var(--text-primary);text-align:left;cursor:pointer;transition:var(--transition)}.published-listings-stats button:hover,.published-listings-stats button.active{border-color:var(--accent-primary);background:#6366f11f}.published-listings-stats span,.published-listings-stats strong{display:block}.published-listings-stats span{color:var(--text-muted);font-size:12px}.published-listings-stats strong{margin-top:4px;font-size:24px}.published-listings-search{display:flex;gap:10px;align-items:center;width:100%;min-height:44px;margin-bottom:16px;padding:0 14px;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary)}.published-listings-search input{width:100%;border:0;outline:none;background:transparent;color:var(--text-primary)}.published-listings-table-wrap{overflow-x:auto;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary)}.published-listings-table{min-width:1120px}.published-listings-product{display:flex;gap:12px;align-items:center;min-width:260px}.published-listings-product img,.published-listings-cover-placeholder{width:38px;height:52px;flex-shrink:0;border-radius:4px;object-fit:cover;background:var(--bg-primary)}.published-listings-cover-placeholder{display:grid;place-items:center;color:var(--text-muted);font-size:9px;text-transform:uppercase}.published-listings-product strong,.published-listings-product small{display:block}.published-listings-product small{max-width:280px;margin-top:3px;overflow:hidden;color:var(--text-muted);font-size:12px;text-overflow:ellipsis;white-space:nowrap}.published-channel{display:inline-flex;padding:5px 9px;border-radius:999px;background:#94a3b81f;color:var(--text-secondary);font-size:12px;font-weight:700;white-space:nowrap}.published-channel-site{color:#facc15;background:#facc151f}.published-channel-ml{color:#60a5fa;background:#60a5fa1f}.published-channel-shopee{color:#fb7185;background:#fb71851f}.published-channel-magalu{color:#38bdf8;background:#38bdf81f}.published-listings-empty{padding:32px 16px!important;color:var(--text-secondary);text-align:center}.published-listings-pagination{display:flex;gap:16px;align-items:center;justify-content:space-between;margin-top:14px;color:var(--text-secondary);font-size:13px}@media (max-width: 1100px){.published-listings-stats{grid-template-columns:repeat(auto-fit,minmax(140px,1fr))}}.bulk-cover-dropzone{min-height:180px;margin-bottom:20px;border:2px dashed var(--border-focus);border-radius:8px;background:var(--bg-secondary);color:var(--text-secondary);display:grid;place-items:center;align-content:center;gap:6px;cursor:pointer}.bulk-cover-dropzone.dragging{border-color:var(--accent-primary-hover);background:#6366f11f}.bulk-cover-dropzone input{display:none}.bulk-cover-dropzone strong{color:var(--text-primary)}.bulk-cover-dropzone-actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:16px}.bulk-cover-summary{display:flex;gap:12px;margin-bottom:16px}.bulk-cover-summary>div{min-width:140px;padding:14px 16px;border-radius:8px;background:var(--bg-secondary)}.bulk-cover-summary strong,.bulk-cover-summary span{display:block}.bulk-cover-summary strong{font-size:24px}.bulk-cover-summary span{color:var(--text-muted);font-size:12px}.bulk-cover-toolbar{display:flex;gap:12px;align-items:center;margin-bottom:16px}.bulk-cover-toolbar label{display:flex;gap:10px;align-items:center;flex:1;min-height:44px;padding:0 14px;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary)}.bulk-cover-toolbar input{width:100%;border:0;background:transparent;color:var(--text-primary);outline:none}.bulk-cover-toolbar .bulk-cover-replace-toggle{flex:0 0 auto;min-width:230px;font-size:13px;font-weight:700;color:var(--text-secondary)}.bulk-cover-toolbar .bulk-cover-replace-toggle input{width:16px;height:16px;accent-color:var(--accent-primary)}.bulk-cover-list{overflow:hidden;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-secondary)}.bulk-cover-row{display:grid;grid-template-columns:76px minmax(220px,1.3fr) minmax(260px,1.2fr) 76px 120px;gap:14px;align-items:center;padding:14px 16px;border-top:1px solid var(--border-color)}.bulk-cover-row:first-child{border-top:0}.bulk-cover-row>img,.bulk-cover-current img{width:60px;height:84px;border-radius:6px;object-fit:contain;background:var(--bg-primary)}.bulk-cover-row strong,.bulk-cover-row small{display:block}.bulk-cover-row small{margin-top:4px;color:var(--text-muted)}.bulk-cover-row small b{color:var(--text-secondary)}.bulk-cover-row .bulk-cover-validation-error{color:var(--accent-danger);font-weight:700}.bulk-cover-row .bulk-cover-validation-warning{color:var(--accent-warning);font-weight:700}.bulk-cover-row select{min-height:42px;width:100%;padding:0 12px;border:1px solid var(--border-color);border-radius:8px;background:var(--bg-primary);color:var(--text-primary)}.bulk-cover-current{display:grid;gap:6px;place-items:center}.bulk-cover-current span,.bulk-cover-current small{color:var(--text-muted);font-size:12px;text-align:center}.bulk-cover-current small{color:var(--accent-warning);font-weight:800;text-transform:uppercase}.bulk-cover-row .badge{display:inline-flex;gap:6px;align-items:center;justify-content:center}@media (max-width: 960px){.bulk-cover-summary,.bulk-cover-toolbar{flex-direction:column;align-items:stretch}.bulk-cover-row{grid-template-columns:1fr}.bulk-cover-current{justify-content:start}}
