*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
        html { scroll-behavior: smooth; }
        * { scrollbar-width: thin; scrollbar-color: #65067c transparent; }
        *::-webkit-scrollbar { width: 5px; height: 5px; }
        *::-webkit-scrollbar-track { background: transparent; }
        *::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
        *::-webkit-scrollbar-thumb:hover { background: var(--purple-vivid); }
:root {
    --purple-deep: #3d1c75; --purple-mid: #52168a;
    --purple-vivid: #65067c; --purple-glow: #8b2fc9; --purple-light: #c084fc;
    --gradient: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-vivid) 100%);
    --gradient-text: linear-gradient(90deg, #65067c, #9937f5, #7c3aed, #65067c);
    --glow: 0 0 40px rgba(101,6,124,0.5), 0 0 80px rgba(61,28,117,0.3);
    --glow-sm: 0 0 20px rgba(101,6,124,0.4);
    --bg: #f4f5f8; 
    --bg-card: #ffffff; 
    --bg-3: #e8eaf2; 
    --bg-4: #dde0ec;
    --border: rgba(61,28,117,0.15); 
    --border-s: rgba(61,28,117,0.3);
    --grey: #2b2b2b; 
    --grey-dim: #1d1d1d; 
    --grey-ghost: rgba(255, 255, 255, 0.247);
    --success: #4caf80; --danger: #e05555; --warning: #f5a623; --info: #3a9de0;
    --font-display: 'Kanit', monospace; --font-body: 'Syne', sans-serif; --font-mono: 'Syne', monospace;
}
        .cursor, .cursor-ring { position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); }
        .cursor { width: 12px; height: 12px; background: var(--purple-vivid); border-radius: 50%; transition: transform 0.1s, width 0.3s, height 0.3s; mix-blend-mode: screen; }
        .cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(101,6,124,0.6); border-radius: 50%; transition: transform 0.15s ease-out, width 0.3s, height 0.3s; }
    body { 
    background: var(--bg); 
    color: var(--grey); 
    font-family: var(--font-body); 
    overflow-x: hidden; 
    cursor: none; 
    transition: background 0.3s, color 0.3s; 
    min-height: 100vh; 
}
        .stars-canvas { position: fixed; top:0; left:0; width:100%; height:100%; z-index: 0; pointer-events: none; }
body::after { 
    content:''; 
    position: fixed; 
    inset:0; 
    z-index:1; 
    pointer-events:none; 
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E"); 
    opacity:0.6; 
}
        nav { position: fixed; top:0; left:0; right:0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 0 6%; height: 72px; background: var(--purple-mid); backdrop-filter: blur(20px); border-bottom: 1px solid rgb(255, 255, 255); transition: all 0.3s; }
        nav.scrolled { background: var(--purple-mid) ; border-bottom-color: rgba(101,6,124,0.4); }
        .nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
        .logo-img { height: 56px; width: auto; }
        .nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; color: #fff }
        .nav-links a { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; text-decoration: none; font-weight: 600; transition: color 0.3s; position: relative; }
        .nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px; background: var(--purple-vivid); transform: scaleX(0); transition: transform 0.3s; }
        .nav-links a:hover { color: var(--purple-light); }
        .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
        .nav-links a.active { color: var(--purple-light); }
        .nav-actions { display: flex; align-items: center; gap: 0.8rem; }
        .nav-cta { padding: 9px 22px; border-radius: 12px; background: var(--bg); font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--grey); text-decoration: none; text-transform: uppercase; border: 1px solid rgba(101,6,124,0.5); box-shadow: var(--glow-sm); transition: all 0.3s; cursor: pointer; }
        .nav-cta:hover { box-shadow: var(--glow); transform: translateY(-1px); }
        .btn-carrinho-nav { position: relative; background: none; border: 1px solid var(--border); color: #fff; width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; font-size: 1rem; }
        .btn-carrinho-nav:hover { border-color: var(--purple-vivid); color: var(--purple-light); }
        .carrinho-badge { position: absolute; top: -6px; right: -6px; background: var(--purple-vivid); color: white; width: 18px; height: 18px; border-radius: 50%; font-size: 0.65rem; font-weight: 700; display: none; align-items: center; justify-content: center; }
        .carrinho-badge.show { display: flex; }
        .btn-pedidos-nav { position: relative; background: none; border: 1px solid var(--border); color: #fff; width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; font-size: 1rem; }
        .btn-pedidos-nav:hover { border-color: var(--purple-vivid); color: var(--purple-light); }
        .pedidos-badge { position: absolute; top: -6px; right: -6px; background: var(--warning); color: white; width: 18px; height: 18px; border-radius: 50%; font-size: 0.65rem; font-weight: 700; display: none; align-items: center; justify-content: center; }
        .pedidos-badge.show { display: flex; }
        .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
        .hamburger span { width:24px; height:1px; background:#fff; display:block; transition:all 0.3s; }
        .mobile-menu { display:none; position:fixed; top:72px; left:0; right:0; background:var(--purple-mid); z-index:199; flex-direction:column; border-bottom:1px solid rgba(255,255,255,0.15); }
        .mobile-menu.open { display:flex; }
        .mobile-menu a { padding:1rem 6%; color:#fff; text-decoration:none; font-size:0.9rem; font-weight:600; text-transform:uppercase; letter-spacing:0.1em; border-bottom:1px solid rgba(255,255,255,0.08); transition:color 0.2s; }
        .mobile-menu a:hover, .mobile-menu a.active { color:var(--purple-light); }
        .user-chip { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0.8rem 0.4rem 0.4rem; border: 1px solid var(--border); border-radius: 50px; cursor: pointer; transition: 0.2s; background: var(--bg-card); position: relative; color: var(--grey); }
        .user-chip:hover { border-color: rgba(255,255,255,0.95); background: #fff; color: var(--grey); box-shadow: 0 10px 24px rgba(0,0,0,0.16); }
        .user-avatar-sm { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-4); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--purple-light); overflow: hidden; }
        .user-avatar-sm img { width:100%; height:100%; object-fit:cover; }
        .user-chip-name { font-size: 0.8rem; font-weight: 600; color: var(--grey); }
        .user-chip:hover .user-chip-name,
        .user-chip:hover .fa-chevron-down { color: var(--grey-dim) !important; }
        .user-dropdown { position: absolute; right: 0; top: calc(100% + 8px); background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 0.5rem; min-width: 200px; box-shadow: var(--glow-sm); display: none; z-index: 999; }
        .user-dropdown.open { display: block; animation: fadeDown 0.15s ease; }
        @keyframes fadeDown { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
        .dropdown-item { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0.8rem; border-radius: 8px; font-size: 0.85rem; font-weight: 500; color: var(--grey-dim); cursor: pointer; transition: 0.15s; border: none; background: none; width: 100%; text-align: left; }
        .dropdown-item:hover { background: var(--bg-3); color: var(--grey); }
        .dropdown-item i { width: 16px; color: var(--purple-light); }
        .dropdown-divider { height: 1px; background: var(--border); margin: 0.3rem 0; }
        .dropdown-item.danger:hover { color: var(--danger); }
        .dropdown-item.danger i { color: var(--danger); }
        #main-content { position: relative; z-index: 2; padding-top: 88px; min-height: calc(100vh - 72px); }
        .container { max-width: 1920px; margin: 0 auto; padding: 2rem 6%; }
        .loja-hero { padding: 2.5rem 6% 1.5rem; text-align: center; position: relative; z-index: 2; }
        .loja-hero-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 12px;  margin-top: 12px; padding: 6px 16px; border: 1px solid rgba(192,132,252,0.2); border-radius: 22px; background: rgba(192,132,252,0.04); }
        .loja-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.1; }
        .loja-hero h1 span { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-size: 200%; animation: shimmer 4s linear infinite; }
        @keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
        .loja-hero p { color: var(--grey-dim); margin-top: 0.6rem; font-size: 0.95rem; }
        .shop-wrapper { display: flex; gap: 2rem; max-width: 1920px; margin: 0 auto; padding: 1rem 6% 4rem; }
        .shop-sidebar { width: 320px; flex-shrink: 0; position: relative; top: 0; align-self: flex-start; }
        .sidebar-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 1.2rem; margin-bottom: 1rem; }
        .sidebar-box h3 { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); margin-bottom: 0.8rem; }
        .tree-sidebar-content { overflow-x: auto; overflow-y: hidden; }
        .tree-list { list-style: none; min-width: max-content; }
        .tree-node { margin: 2px 0; }
        .tree-toggle { width: 100%; min-width: max-content; text-align: left; padding: 0.5rem 0.6rem; background: transparent; border: none; border-radius: 1px; color: #33333386; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s; display: flex; align-items: flex-start; gap: 0.5rem; }
        .tree-toggle:hover { background: var(--grey-ghost); color: var(--grey); }
        .tree-toggle.active { background: rgba(51, 3, 63, 0.671); color: #f1f1f1; border-left: 0px solid var(--purple-vivid); }
        .tree-toggle i.fa-chevron-right { transition: transform 0.2s; font-size: 0.7rem; color: var(--purple-glow); flex: 0 0 16px; margin-top: 0.2rem; }
        .tree-toggle span:not(.tree-count) {
            flex: 0 1 32ch;
            max-width: 32ch;
            white-space: normal;
            line-height: 1.35;
            display: block;
            overflow-wrap: break-word;
        }
        .tree-toggle.expanded i.fa-chevron-right { transform: rotate(90deg); color: var(--purple-light); }
        .tree-children { margin-left: 0.8rem; padding-left: 0.9rem; border-left: 1px solid var(--border); display: none; }
        .tree-children.expanded { display: block; animation: slideDown 0.2s ease; list-style: none; }
        @keyframes slideDown { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
        .tree-count { font-size: 0.65rem;  padding: 1px 6px; border-radius: 8px; margin-left: auto; font-family: var(--font-mono); flex: 0 0 auto; white-space: nowrap; align-self: flex-start; }
        .tree-leaf { padding-left: 1.5rem; font-size: 0.78rem; }
        .tree-leaf .tree-toggle { font-weight: 400; padding: 0.4rem 0.6rem; }
        .cat-filter { display: none !important; }
        .categorias-lista { list-style: none; }
        .shop-main { flex: 1; min-width: 0; }
        .shop-topbar { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
        .shop-tabs { display: flex; gap: 6px; }
        .tab-btn { background: transparent; border: 1px solid var(--border); color: var(--grey-dim); padding: 0.45rem 1.2rem; border-radius: 30px; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.06em; cursor: pointer; transition: all 0.2s; }
        .tab-btn.active, .tab-btn:hover { background: var(--gradient); border-color: transparent; color: white; }
        .tab-count { font-size: 0.68rem; opacity: 0.75; margin-left: 4px; }
        .search-wrap { flex: 1; min-width: 180px; position: relative; }
        .search-input { width: 100%; padding: 0.55rem 3rem 0.55rem 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; color: var(--grey); font-family: var(--font-body); font-size: 0.88rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
        .search-input:focus { border-color: var(--purple-vivid); box-shadow: 0 0 0 3px rgba(101,6,124,0.15); }
        .search-input::placeholder { color: var(--grey-dim); }
        .search-btn {
            position: absolute;
            top: 50%;
            right: 0.45rem;
            transform: translateY(-50%);
            width: 34px;
            height: 34px;
            border: none;
            border-radius: 9px;
            background: transparent;
            color: var(--grey-dim);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }
        .search-btn:hover,
        .search-btn:focus {
            color: var(--purple-light);
            outline: none;
        }
        .sort-select { min-width: 170px; padding: 0.55rem 0.9rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; color: var(--grey); font-family: var(--font-body); font-size: 0.85rem; outline: none; cursor: pointer; }
        .sort-select:focus { border-color: var(--purple-vivid); box-shadow: 0 0 0 3px rgba(101,6,124,0.15); }
        .shop-info { font-family: var(--font-mono); font-size: 0.72rem; color: var(--grey-dim); margin-bottom: 1rem; }
        .tab-panel { display: none; }
        .tab-panel.active { display: block; }
        .produtos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.4rem; }
        .produto-card { background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; cursor: pointer; display: flex; flex-direction: column; }
        .produto-card:hover { transform: translateY(-4px); box-shadow: var(--glow-sm); border-color: rgba(101,6,124,0.4); }
        .produto-img-wrap { height: 195px; overflow: hidden; position: relative; background: var(--bg-3); }
        .produto-img-wrap img, .produto-img-wrap video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
        .produto-card:hover .produto-img-wrap img, .produto-card:hover .produto-img-wrap video { transform: scale(1.05); }
        .produto-badge { position: absolute; top: 8px; left: 8px; padding: 4px 10px; border-radius: 20px; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.02em; font-weight: 700; display: inline-flex; align-items: center; gap: 0.35rem; }
        .badge-destaque { background: rgba(101,6,124,0.85); color: var(--bg); }
        .badge-destaque img { width: 10px; height: 10px; object-fit: contain; display: block; flex-shrink: 0; }
        .badge-promocao { left: auto; right: 8px; background: #05ad21; color: var(--purple-deep); }
        .produto-info { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
        .produto-info h3 { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; margin-bottom: 0.25rem; line-height: 1.3; }
        .produto-codigo { font-family: var(--font-mono); font-size: 0.68rem; color: var(--grey-dim); margin-bottom: 0.5rem; }
        .produto-preco { margin-top: auto; padding-top: 0.6rem; }
        .home-section { margin-bottom: 2rem; }
        .home-side-hint { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 1rem 1.1rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.75rem; }
        .home-side-hint i { color: var(--purple-light); font-size: 1rem; }
        .home-side-hint span { font-size: 0.84rem; color: var(--grey-dim); line-height: 1.5; }
        .home-section-header { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
        .home-section-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; letter-spacing: 0.03em; }
        .home-section-copy { color: var(--grey-dim); font-size: 0.84rem; line-height: 1.6; max-width: 620px; }
        .home-destaques-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
        .home-banner-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
        .home-banner-card { position: relative; display: block; aspect-ratio: 1 / 1; border-radius: 18px; overflow: hidden; background: transparent; text-decoration: none; color: var(--grey); }
        .home-banner-card:hover { opacity: 0.96; }
        .home-banner-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .home-banner-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: end; padding: 1.1rem; background: linear-gradient(180deg, transparent 18%, rgba(0,0,0,0.78) 100%); }
        .home-banner-kicker { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 0.35rem; }
        .home-banner-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; line-height: 1.15; margin-bottom: 0.3rem; }
        .home-banner-subtitle { font-size: 0.82rem; color: rgba(255,255,255,0.82); line-height: 1.45; }
        .home-banner-arrow { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.12); color: #fff; }
        .preco-guest { font-size: 0.75rem; color: var(--grey-dim); font-family: var(--font-mono); }
        .preco-final { font-size: 1.1rem; font-weight: 700; color: var(--purple-light); }
        .preco-range-row { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font-mono); }
        .preco-range-row + .preco-range-row { margin-top: 0.22rem; }
        .preco-range-qty { font-size: 0.74rem; color: var(--grey); }
        .preco-range-price { display: flex; flex-direction: column; align-items: center; font-size: 0.62rem; color: var(--grey); }
        .preco-range-price strong { color: var(--purple-vivid); font-size: 0.92rem; line-height: 1.08; }
        .preco-range-sep { color: var(--grey-dim); opacity: 0.8; }
        .preco-de { font-size: 0.68rem; color: var(--grey-dim); text-decoration: line-through; line-height: 1.05; }
        .btn-ver { margin-top: 0.8rem; padding: 0.45rem 1rem; background: var(--purple-vivid); color:var(--bg); border: 1px solid var(--border); border-radius: 8px;  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; cursor: pointer; transition: all 0.2s; width: 100%; }
        .btn-ver:hover { border-color: var(--purple-vivid); color: var(--purple-light); }
        .img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; color: var(--grey-dim); }
        .img-placeholder i { font-size: 2.2rem; opacity: 0.25; }
        .img-placeholder span { font-size: 0.68rem; opacity: 0.35; font-family: var(--font-mono); }
        .empty-state { text-align: center; padding: 3.5rem 2rem; color: var(--grey-dim); }
        .empty-state i { font-size: 2.8rem; opacity: 0.25; margin-bottom: 0.8rem; display: block; }
        .empty-state p { font-family: var(--font-mono); font-size: 0.82rem; }
        .loading-state { text-align: center; padding: 4rem 2rem; }
        .spinner { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--border); border-top-color: var(--purple-vivid); animation: spin 0.8s linear infinite; margin: 0 auto 1rem; }
        @keyframes spin { to { transform: rotate(360deg); } }
        .detalhes-wrapper { animation: fadeUp 0.3s ease; }
        @keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
        .breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.7rem; color: var(--grey-dim); margin-bottom: 1.8rem; flex-wrap: wrap; }
        .breadcrumb a { color: var(--grey-dim); text-decoration: none; transition: color 0.2s; cursor: pointer; }
        .breadcrumb a:hover { color: var(--purple-light); }
        .breadcrumb i { font-size: 0.5rem; }
        .detalhes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
        .galeria { position: static; top: auto; }
        .galeria-top-actions { display: flex; justify-content: flex-start; gap: 0.55rem; margin-bottom: 0.7rem; flex-wrap: wrap; }
        .galeria-principal { width: 100%; border-radius: 14px; overflow: hidden; background: var(--bg-3); aspect-ratio: 1; margin-bottom: 0.7rem; position: relative; cursor: zoom-in; }
        .galeria-principal img, .galeria-principal video { width: 100%; height: 100%; object-fit: contain; transition: opacity 0.25s; background: var(--bg-3); }
        .miniaturas { display: flex; gap: 0.5rem; flex-wrap: wrap; }
        .miniatura { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: border-color 0.2s; flex-shrink: 0; background: var(--bg-3); }
        .miniatura img, .miniatura video { width:100%; height:100%; object-fit:cover; }
        .miniatura.active, .miniatura:hover { border-color: var(--purple-vivid); }
        .galeria-hint { position: absolute; right: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.6rem; border-radius: 999px; background: rgba(0,0,0,0.55); color: #fff; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase; pointer-events: none; }
        .btn-gabarito { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.9rem; background: rgba(101,6,124,0.08); border: 1px solid var(--border); border-radius: 8px; color: var(--purple-light); font-family: var(--font-mono); font-size: 0.7rem; text-decoration: none; transition: all 0.2s; cursor: pointer; }
        .btn-gabarito:hover { background: rgba(101,6,124,0.18); border-color: var(--purple-vivid); }
        .produto-titulo { font-family: var(--font-display); font-size: 1.75rem; font-weight: 900; line-height: 1.1; margin-bottom: 0.25rem; }
        .produto-codigo-det { font-family: var(--font-mono); font-size: 0.72rem; color: var(--grey-dim); margin-bottom: 0.8rem; }
        .produto-prazo { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.8rem; border-radius: 20px; background: rgba(58,157,224,0.08); border: 1px solid rgba(58,157,224,0.18); color: var(--info); font-family: var(--font-mono); font-size: 0.7rem; margin-bottom: 1.2rem; }
        .produto-descricao-section { margin-top: 1rem; }
        .produto-descricao-toggle { display: none; }
        .produto-descricao-body { display: block; }
        .produto-descricao-box { display:flex; flex-direction:column; gap:0.7rem; margin-bottom:1rem; }
        .produto-descricao-texto { font-size:0.88rem; color:var(--grey-dim); line-height:1.75; }
        .produto-descricao-grid { display:grid; gap:0.55rem; }
        .produto-descricao-item { display:flex; gap:0.6rem; align-items:flex-start; padding:0.65rem 0.8rem; border:1px solid var(--grey-ghost); border-radius:12px; background:rgba(255,255,255,0.55); }
        .produto-descricao-item strong { font-family:var(--font-mono); font-size:0.66rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--purple-light); flex:0 0 145px; }
        .produto-descricao-item span { font-size:0.83rem; color:var(--grey-dim); line-height:1.65; }
        .ficha-tecnica { background: var(--bg-3); border-radius: 12px; border: 1px solid var(--border); margin-bottom: 1.2rem; overflow: hidden; }
        .ficha-header { padding: 0.75rem 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.15s; }
        .ficha-header:hover { background: var(--grey-ghost); }
        .ficha-body { padding: 0.4rem 1rem 0.8rem; }
        .ficha-body.hidden { display: none; }
        .ficha-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.35rem 0; border-bottom: 1px solid var(--grey-ghost); font-size: 0.82rem; }
        .ficha-row:last-child { border-bottom: none; }
        .ficha-row .key { color: var(--grey-dim); flex: 0 0 140px; }
        .ficha-row .val { font-weight: 600; text-align: right; white-space: pre-line; }
        .ficha-row.multiline { align-items: flex-start; }
        .ficha-row.multiline .val { text-align: left; flex: 1; }
        .form-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem; margin-bottom: 0.9rem; }
        .form-section-title { font-family: var(--font-display); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.9rem; color: var(--purple-light); }
        .form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.7rem; }
        .form-group:last-child { margin-bottom: 0; }
        .form-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-dim); }
        .form-input, .form-textarea, .form-select { padding: 0.65rem 0.85rem; background: var(--bg-3); border: 1px solid var(--border); border-radius: 9px; color: var(--grey); font-family: var(--font-body); font-size: 0.88rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none; appearance: none; }
        .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--purple-vivid); box-shadow: 0 0 0 3px rgba(101,6,124,0.15); }
        .form-textarea { resize: vertical; min-height: 90px; }
        .form-select option { background: var(--void); }
        .qtd-opcoes { display: flex; flex-direction: column; gap: 0.45rem; }
        .qtd-opcao { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 1rem; border-radius: 9px; border: 1px solid var(--border); cursor: pointer; transition: all 0.2s; }
        .qtd-opcao:hover { border-color: var(--border-s); }
        .qtd-opcao.selected { border-color: var(--purple-vivid); background: rgba(101,6,124,0.1); }
        .qtd-label { font-weight: 600; font-size: 0.88rem; }
        .qtd-preco { display: flex; flex-direction: column; align-items: flex-end; font-family: var(--font-mono); }
        .qtd-preco-de { font-size: 0.66rem; color: var(--grey-dim); text-decoration: line-through; line-height: 1.05; }
        .qtd-preco-final { color: var(--purple-light); font-size: 0.88rem; font-weight: 700; line-height: 1.05; }
        .acabamentos-lista { display: flex; flex-direction: column; gap: 0.45rem; }
        .acabamento-item { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0.85rem; border-radius: 9px; border: 1px solid var(--border); cursor: pointer; transition: all 0.2s; }
        .acabamento-item:hover { border-color: var(--border-s); }
        .acabamento-item.checked { border-color: var(--purple-vivid); background: rgba(101,6,124,0.08); }
        .acab-nome { font-size: 0.85rem; display: flex; align-items: center; gap: 0.5rem; }
        .acab-check { width: 15px; height: 15px; border-radius: 4px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; transition: all 0.15s; flex-shrink: 0; }
        .acabamento-item.checked .acab-check { background: var(--purple-vivid); border-color: var(--purple-vivid); color: white; }
        .acab-info { text-align: right; }
        .acab-preco { font-family: var(--font-mono); font-size: 0.76rem; color: var(--purple-light); }
        .acab-prazo { font-size: 0.68rem; color: var(--grey-dim); }
        .radio-group { display: flex; gap: 0.5rem; }
        .radio-opt { flex: 1; padding: 0.65rem; border: 1px solid var(--border); border-radius: 9px; cursor: pointer; transition: all 0.2s; text-align: center; }
        .radio-opt:hover { border-color: var(--border-s); }
        .radio-opt.selected { border-color: var(--purple-vivid); background: rgba(101,6,124,0.1); }
        .radio-opt input[type="radio"] { display: none; }
        .radio-opt-label { font-size: 0.8rem; font-weight: 600; display: block; }
        .radio-opt-sub { font-size: 0.68rem; color: var(--grey-dim); display: block; margin-top: 0.15rem; }
        .arte-instrucoes { background: rgba(58,157,224,0.05); border: 1px solid rgba(58,157,224,0.18); border-radius: 9px; padding: 0.75rem; margin-bottom: 0.75rem; font-size: 0.78rem; color: var(--info); line-height: 1.65; }
        .arte-instrucoes ul { padding-left: 1.1rem; margin-top: 0.35rem; }
        .arte-instrucoes li { margin-bottom: 0.15rem; }
        .btn-upload { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.65rem 1rem; border: 1px dashed var(--border); border-radius: 9px; background: none; color: var(--grey-dim); font-family: var(--font-mono); font-size: 0.72rem; cursor: pointer; transition: all 0.2s; width: 100%; justify-content: center; }
        .btn-upload:hover { border-color: var(--purple-vivid); color: var(--purple-light); }
        .btn-upload.uploaded { border-color: var(--success); color: var(--success); border-style: solid; }
        .form-check { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; cursor: pointer; padding: 0.35rem 0; }
        .form-check input[type="checkbox"] { width: 15px; height: 15px; cursor: pointer; accent-color: var(--purple-vivid); }
        .form-check a { color: var(--purple-light); }
        .resumo-box { background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem; margin-bottom: 0.9rem; }
        .resumo-box h3 { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; }
        .resumo-linha { display: flex; justify-content: space-between; font-size: 0.83rem; padding: 0.3rem 0; border-bottom: 1px solid var(--grey-ghost); }
        .resumo-linha:last-child { border-bottom: none; }
        .resumo-linha .label { color: var(--grey-dim); }
        .resumo-linha .valor { font-weight: 600; }
        .resumo-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 1.05rem; font-weight: 900; margin-top: 0.7rem; padding-top: 0.7rem; border-top: 1px solid var(--border); }
        .resumo-total .valor { color: var(--purple-light); }
        .btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.65rem 1.3rem; border-radius: 11px; font-family: var(--font-display); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; border: none; text-decoration: none; }
        .btn-primary { background: var(--gradient); color: white; border: 1px solid rgba(101,6,124,0.4); box-shadow: var(--glow-sm); }
        .btn-primary:hover { box-shadow: var(--glow); transform: translateY(-2px); }
        .btn-primary:disabled { opacity: 0.5; transform: none; cursor: not-allowed; }
        .btn-outline { background: transparent; color: var(--grey); border: 1px solid rgba(244,240,255,0.2); }
        .btn-outline:hover { border-color: var(--purple-vivid); color: var(--purple-light); }
        .btn-ghost { background: transparent; color: var(--grey-dim); border: 1px solid var(--border); }
        .btn-ghost:hover { background: var(--grey-ghost); color: var(--grey); }
        .btn-whatsapp { background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.25); color: #25d366; }
        .btn-whatsapp:hover { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.5); }
        .btn-sm { padding: 0.45rem 0.9rem; font-size: 0.68rem; }
        .btn-lg { padding: 0.85rem 1.8rem; font-size: 0.8rem; }
        .detalhes-acoes { display: flex; flex-direction: column; gap: 0.55rem; }
        .detalhes-acoes .row { display: flex; gap: 0.55rem; }
        .detalhes-acoes .row .btn { flex: 1; justify-content: center; }
        .checkout-wrapper { animation: fadeUp 0.3s ease; }
        .checkout-grid { display: grid; grid-template-columns: 1fr 370px; gap: 2rem; align-items: start; }
        .carrinho-titulo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; margin-bottom: 1.3rem; }
        .carrinho-vazio { text-align: center; padding: 2.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; }
        .carrinho-vazio i { font-size: 2.8rem; color: var(--purple-light); opacity: 0.35; margin-bottom: 0.8rem; display: block; }
        .carrinho-vazio p { color: var(--grey-dim); margin-bottom: 1.2rem; font-size: 0.9rem; }
        .carrinho-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem; margin-bottom: 0.7rem; display: flex; gap: 1rem; position: relative; transition: border-color 0.2s; }
        .carrinho-item:hover { border-color: var(--border-s); }
        .ci-img { width: 76px; height: 76px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--bg-3); }
        .ci-img img, .ci-img video { width:100%; height:100%; object-fit:cover; }
        .ci-body { flex: 1; min-width: 0; }
        .ci-nome { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; }
        .ci-codigo { font-family: var(--font-mono); font-size: 0.68rem; color: var(--grey-dim); margin-bottom: 0.35rem; }
        .ci-details { font-size: 0.78rem; color: var(--grey-dim); line-height: 1.55; }
        .ci-arte-badge { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.18rem 0.55rem; border-radius: 20px; font-size: 0.68rem; background: rgba(101,6,124,0.12); border: 1px solid var(--border); color: var(--purple-light); margin-top: 0.35rem; }
        .ci-preco { font-family: var(--font-display); font-size: 1.05rem; font-weight: 900; color: var(--purple-light); white-space: nowrap; }
        .ci-remove { position: absolute; top: 0.7rem; right: 0.7rem; background: none; border: none; color: var(--grey-dim); cursor: pointer; font-size: 0.82rem; transition: color 0.2s; }
        .ci-remove:hover { color: var(--danger); }
        .pedido-resumo { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1.4rem; position: static; top: auto; }
        .pedido-resumo h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 900; letter-spacing: 0.05em; margin-bottom: 1.1rem; }
        .ri-linha { display: flex; justify-content: space-between; align-items: flex-start; font-size: 0.8rem; padding: 0.35rem 0; gap: 0.5rem; }
        .ri-nome { color: var(--grey-dim); flex: 1; }
        .ri-val { font-weight: 600; white-space: nowrap; }
        .resumo-divider { height: 1px; background: var(--border); margin: 0.7rem 0; }
        .resumo-total-checkout { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 1.15rem; font-weight: 900; }
        .resumo-total-checkout .val { color: var(--purple-light); }
        .checkout-beneficios { margin-top: 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1rem; }
        .checkout-beneficios h4 { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 0.8rem; }
        .beneficio-cards { display: grid; gap: 0.7rem; }
        .beneficio-card { border: 1px solid var(--border); border-radius: 12px; padding: 0.9rem; background: var(--bg-2); display: flex; justify-content: space-between; gap: 0.8rem; align-items: center; }
        .beneficio-card.aplicado { border-color: rgba(139,47,201,0.45); box-shadow: 0 0 0 1px rgba(139,47,201,0.14) inset; }
        .beneficio-card-info strong { display:block; font-size: 0.88rem; }
        .beneficio-card-info span { display:block; font-size: 0.76rem; color: var(--grey-dim); margin-top: 0.18rem; line-height: 1.5; }
        .beneficio-card-info small { display:block; font-size: 0.72rem; color: var(--purple-light); margin-top: 0.35rem; }
        .beneficio-btn { border: 1px solid var(--border-s); background: transparent; color: var(--text); border-radius: 999px; padding: 0.45rem 0.8rem; font-size: 0.74rem; font-weight: 700; cursor: pointer; }
        .beneficio-btn:disabled { opacity: 0.5; cursor: not-allowed; }
        .checkout-benefit-line { display:flex; justify-content:space-between; gap:0.8rem; font-size:0.82rem; color:var(--grey-dim); margin-top:0.55rem; }
        .checkout-benefit-line strong { color: var(--text); font-weight: 700; }
        .pagamento-opcoes { margin: 1rem 0; display: flex; flex-direction: column; gap: 0.45rem; }
        .pag-opt { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0.9rem; border: 1px solid var(--border); border-radius: 10px; cursor: pointer; transition: all 0.2s; }
        .pag-opt:hover { border-color: var(--border-s); }
        .pag-opt.selected { border-color: var(--purple-vivid); background: rgba(101,6,124,0.08); }
        .pag-opt input[type="radio"] { display: none; }
        .pag-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
        .pag-pix .pag-icon { background: rgba(76,175,128,0.12); color: var(--success); }
        .pag-credito .pag-icon { background: rgba(58,157,224,0.12); color: var(--info); }
        .pag-debito .pag-icon { background: rgba(245,166,35,0.12); color: var(--warning); }
        .pag-label { font-weight: 600; font-size: 0.85rem; }
        .pag-sub { font-size: 0.7rem; color: var(--grey-dim); }
        .pag-radio { width: 15px; height: 15px; border-radius: 50%; border: 2px solid var(--border); margin-left: auto; transition: all 0.15s; flex-shrink: 0; }
        .pag-opt.selected .pag-radio { border-color: var(--purple-vivid); background: var(--purple-vivid); }
        #mp-form { margin-top: 0.8rem; display: none; }
        #mp-form.show { display: block; }
        #cardForm { display: flex; flex-direction: column; gap: 0.7rem; }
        .mp-field { padding: 0.65rem 0.85rem; background: var(--bg-3); border: 1px solid var(--border); border-radius: 9px; color: var(--grey); font-size: 0.88rem; outline: none; width: 100%; transition: border-color 0.2s; }
        .mp-field:focus { border-color: var(--purple-vivid); }
        .mp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
        .mp-label { font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-dim); margin-bottom: 0.25rem; display: block; }
        #pix-box { display: none; margin-top: 0.8rem; }
        #pix-box.show { display: block; }
        .pix-info { background: rgba(76,175,128,0.05); border: 1px solid rgba(76,175,128,0.18); border-radius: 10px; padding: 1rem; font-size: 0.8rem; color: var(--grey-dim); line-height: 1.65; }
        .mp-aviso { background: rgba(245,166,35,0.05); border: 1px solid rgba(245,166,35,0.18); border-radius: 9px; padding: 0.75rem; font-size: 0.76rem; color: var(--warning); margin-top: 0.7rem; line-height: 1.55; }
        .status-pagamento { text-align: center; padding: 3rem 2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; }
        .status-icon { font-size: 3.5rem; margin-bottom: 0.8rem; display: block; }
        .status-icon.success { color: var(--success); }
        .status-icon.pending { color: var(--warning); }
        .status-titulo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; margin-bottom: 0.5rem; }
        .status-desc { color: var(--grey-dim); font-size: 0.88rem; line-height: 1.65; }
        .pedido-id { font-family: var(--font-mono); font-size: 0.78rem; color: var(--purple-light); margin-top: 0.8rem; }
        .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 2rem; }
        .modal-overlay.open { display: flex; }
        .modal-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; max-width: 440px; width: 100%; max-height: 90vh; overflow-y: auto; animation: modalIn 0.2s ease; }
        .media-viewer-box { background: rgba(0,0,0,0.92); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; max-width: min(1100px, 96vw); width: 100%; max-height: 92vh; overflow: hidden; }
        .media-viewer-body { padding: 1rem; display: flex; align-items: center; justify-content: center; min-height: min(70vh, 820px); background:
            radial-gradient(circle at top, rgba(101,6,124,0.18), transparent 40%),
            rgba(0,0,0,0.82); }
        .media-viewer-body img, .media-viewer-body video { max-width: 100%; max-height: 78vh; width: auto; height: auto; object-fit: contain; border-radius: 12px; background: #000; }
        @keyframes modalIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
        .modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--border); }
        .modal-header h2 { font-family: var(--font-display); font-size: 1.15rem; margin:0; }
        .modal-close { background: none; border: none; font-size: 1.05rem; color: var(--grey-dim); cursor: pointer; transition: color 0.2s; }
        .modal-close:hover { color: var(--grey); }
        .modal-body { padding: 1.4rem; }
        .checklist-modal-box { max-width: 560px; }
        .checklist-modal-intro { color: var(--grey-dim); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
        .checklist-modal-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin: 0; padding: 0; }
        .checklist-modal-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            padding: 0.85rem 0.95rem;
            border-radius: 12px;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border);
            color: var(--grey);
            line-height: 1.6;
            font-size: 0.88rem;
        }
        .checklist-modal-list i { color: var(--purple-light); margin-top: 0.18rem; }
        .checklist-modal-note {
            margin-top: 1rem;
            padding: 0.9rem 1rem;
            border-radius: 12px;
            background: rgba(101,6,124,0.08);
            border: 1px solid rgba(101,6,124,0.2);
            color: var(--grey-dim);
            font-size: 0.84rem;
            line-height: 1.65;
        }
        .checklist-modal-actions {
            display: flex;
            justify-content: flex-end;
            gap: 0.8rem;
            margin-top: 1.2rem;
            flex-wrap: wrap;
        }
        .auth-logo { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.05em; text-align: center; margin-bottom: 0.25rem; }
        .auth-logo span { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .auth-subtitle { text-align: center; font-size: 0.82rem; color: var(--grey-dim); margin-bottom: 1.3rem; }
        .auth-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 1.3rem; }
        .auth-tab { flex: 1; text-align: center; padding: 0.65rem; font-family: 'Kanit', monospace; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--grey-dim); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; background: none; border-top: none; border-left: none; border-right: none; transition: all 0.2s; }
        .auth-tab:hover { color: var(--grey); }
        .auth-tab.active { color: var(--purple-light); border-bottom-color: var(--purple-vivid); }
        .auth-form { display: none; }
        .auth-form.active { display: flex; flex-direction: column; gap: 0.9rem; }
        .form-error { background: rgba(224,85,85,0.08); border: 1px solid rgba(224,85,85,0.3); color: #e05555; border-radius: 8px; padding: 0.6rem 0.9rem; font-size: 0.8rem; display: none; }
        .form-error.show { display: block; }
        .auth-register-note { padding: 1.05rem; border: 1px solid var(--border); border-radius: 14px; background: rgba(101,6,124,0.08); }
        .auth-register-note h3 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.45rem; }
        .auth-register-note p { color: var(--grey-dim); font-size: 0.88rem; line-height: 1.65; margin-bottom: 1rem; }
        .auth-register-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1rem; }
        .auth-register-list li { display: flex; align-items: flex-start; gap: 0.55rem; color: var(--grey); font-size: 0.84rem; line-height: 1.55; }
        .auth-register-list i { color: var(--purple-light); margin-top: 0.2rem; }
        .auth-register-hint { margin-top: 0.8rem; color: var(--grey-dim); font-size: 0.78rem; line-height: 1.6; }
        .register-cta { width: 100%; justify-content: center; }
        .profile-required-modal { max-width: 520px; }
        .profile-required-badge { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.4rem 0.75rem; border-radius: 999px; border: 1px solid rgba(245,166,35,0.24); background: rgba(245,166,35,0.08); color: var(--warning); font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
        .profile-required-copy { color: var(--grey-dim); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
        .required-fields-list { list-style: none; display: grid; gap: 0.6rem; margin-bottom: 1.1rem; }
        .required-fields-list li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.7rem 0.85rem; border-radius: 12px; background: var(--bg-3); border: 1px solid var(--border); color: var(--grey); font-size: 0.84rem; line-height: 1.5; }
        .required-fields-list i { color: var(--warning); margin-top: 0.15rem; }
        .profile-required-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
        .profile-required-actions .btn { flex: 1 1 180px; justify-content: center; }
.categorias-toggle {
    display: none;
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--grey);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 0.8rem;
    text-align: center;
    transition: all 0.2s;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.categorias-toggle:hover {
    border-color: var(--purple-vivid);
    color: var(--purple-light);
}
.categorias-toggle i.chev {
    transition: transform 0.2s;
}
.categorias-toggle.open i.chev {
    transform: rotate(180deg);
}
@media (max-width: 900px) {
    .categorias-toggle {
        display: flex;
    }
    .shop-sidebar .sidebar-box {
        display: none;
    }
    .shop-sidebar .sidebar-box.sidebar-box-payment {
        display: block;
    }
    .shop-sidebar .sidebar-box.show {
        display: block;
        animation: slideDown 0.25s ease;
    }
    .shop-sidebar {
        order: -1;
    }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.paginacao { display: flex; justify-content: center; align-items: center; gap: 4px; margin-top: 1.5rem; flex-wrap: wrap; }
.pag-btn {
    min-width: 34px; height: 34px; padding: 0 8px;
    border: 1px solid var(--border); border-radius: 8px;
    background: var(--bg-card); color: var(--grey-dim);
    font-family: var(--font-mono); font-size: 0.78rem; cursor: pointer; transition: all 0.2s;
}
.pag-btn:hover:not(:disabled) { border-color: var(--purple-vivid); color: var(--grey); }
.pag-btn.active { background: var(--gradient); border-color: transparent; color: #fff; box-shadow: var(--glow-sm); }
.pag-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.pag-ellipsis { color: var(--grey-dim); font-size: 0.82rem; padding: 0 4px; }
        .toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.5rem; }
        .toast { background: var(--bg-card); border: 1px solid var(--border); border-radius: 9px; padding: 0.75rem 1rem; font-size: 0.83rem; color: var(--grey); display: flex; align-items: center; gap: 0.55rem; animation: toastIn 0.25s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.3); min-width: 240px; }
        .toast.success { border-color: rgba(76,175,128,0.3); }
        .toast.success i { color: var(--success); }
        .toast.error { border-color: rgba(224,85,85,0.3); }
        .toast.error i { color: var(--danger); }
        .toast.info i { color: var(--info); }
        @keyframes toastIn { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }
        footer {
            position: relative;
            z-index: 2;
            padding: 56px 6% 24px;
            border-top: 0px solid var(--border);
            background: var(--purple-mid);
            overflow: hidden;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.15fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-logo-wrap .logo-img { height: 82px; }
        .footer-tagline {
            font-size: 0.85rem;
            color: var(--bg);
            line-height: 1.7;
            max-width: 320px;
            margin-top: 0.4rem;
        }
        .footer-social {
            display: flex;
            gap: 8px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .social-link {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: var(--bg-card);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--purple-glow);
            text-decoration: none;
            font-size: 0.82rem;
            transition: all 0.3s;
        }
        .social-link:hover {
            border-color: var(--purple-vivid);
            color: var(--purple-light);
            box-shadow: var(--glow-sm);
            transform: translateY(-2px);
        }
        .footer-col-title {
            font-family: var(--font-display);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--bg);
            margin-bottom: 16px;
        }
        .footer-links,
        .footer-contact {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 0;
            margin: 0;
        }
        .footer-links a,
        .footer-contact a,
        .footer-contact li {
            font-size: 0.84rem;
            color: var(--bg);
            text-decoration: none;
            line-height: 1.6;
        }
        .footer-links a:hover,
        .footer-contact a:hover { color: var(--purple-light); }
        .footer-contact i {
            width: 14px;
            margin-right: 0.15rem;
            color: var(--bg);
        }
        .footer-payment-logo {
            width: 140px;
            max-width: 100%;
            display: block;
        }
        .footer-payment-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 0.84rem;
            color: var(--bg);
        }
        .footer-payment-list p { margin: 0; }
        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.72rem;
            color: var(--grey-dim);
            font-family: var(--font-mono);
            flex-wrap: wrap;
            gap: 8px;
        }
        .footer-bottom span { color: var(--purple-light); }
        @media (max-width: 1024px) { .checkout-grid { grid-template-columns: 1fr; } .pedido-resumo { position: static; } }
        @media (max-width: 900px) {
            .shop-wrapper { flex-direction: column; }
            .shop-sidebar { width: 100%; position: static; }
            .detalhes-grid { grid-template-columns: 1fr; }
            .galeria { position: static; }
            .footer-top { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            nav { padding: 0 4%; }
            .logo-img { height: 56px; }
            .galeria-top-actions { justify-content: stretch; }
            .galeria-top-actions .btn { flex: 1; justify-content: center; }
            .produto-descricao-section { margin-top: 0.85rem; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-card); overflow: hidden; }
            .produto-descricao-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; padding: 0.85rem 1rem; border: 0; background: transparent; color: var(--grey); font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
            .produto-descricao-toggle span { display: inline-flex; align-items: center; gap: 0.45rem; text-align: left; }
            .produto-descricao-toggle i { color: var(--purple-light); transition: transform 0.2s; }
            .produto-descricao-body { display: none; padding: 0 0.85rem 0.9rem; }
            .produto-descricao-body.open { display: block; }
            .produto-descricao-body .produto-descricao-box { margin-bottom: 0; }
            .produto-descricao-item { flex-direction: column; gap: 0.35rem; padding: 0.75rem 0.8rem; background: var(--bg-3); }
            .produto-descricao-item strong { flex: none; font-size: 0.62rem; }
            .briefing-grid { grid-template-columns: 1fr; }
            .detalhes-acoes .row { flex-direction: column; }
            .produtos-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
            .home-destaques-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
        }
        @media (max-width: 480px) {
            .shop-wrapper { padding: 0.5rem 0.8rem 3rem; }
            .container { padding: 1rem; }
            .loja-hero { padding: 1rem 0.8rem 0.5rem; }
            .produto-img-wrap { height: 140px; }
            .produto-info { padding: 0.7rem; }
            .produto-info h3 { font-size: 0.8rem; }
            .produto-codigo { font-size: 0.62rem; }
            .btn-ver { font-size: 0.65rem; padding: 0.4rem 0.6rem; }
            .nav-actions { gap: 0.4rem; }
            .briefing-color-row { gap: 0.65rem; grid-template-columns: repeat(3, 46px); }
            .briefing-color-input { width: 46px; height: 46px; }
            .footer-top { grid-template-columns: 1fr; gap: 24px; }
            .footer-logo-wrap .logo-img { height: 72px; }
        }
        .animate-in { animation: fadeUp 0.35s ease both; }
.produto-detalhes {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--purple-deep);
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.4;
}
.produto-detalhes i {
    margin-right: 0.25rem;
    opacity: 0.7;
    font-size: 0.6rem;
}
@media (max-width: 480px) {
    .produto-detalhes {
        font-size: 0.6rem;
        line-height: 1.5;
    }
}
.slider-slide a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.slider-slide a:hover {
    color: inherit;
}
.digital-briefing-section {
    margin-top: 1rem;
}
.briefing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem 1rem;
}
.briefing-section-label {
    grid-column: 1 / -1;
    padding-top: 0.25rem;
    margin-top: 0.2rem;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple-light);
}
.briefing-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}
.briefing-field.full {
    grid-column: 1 / -1;
}
.briefing-field-note {
    color: var(--grey-dim);
    font-size: 0.74rem;
    line-height: 1.55;
}
.briefing-type-lock {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(101,6,124,0.14);
    background: linear-gradient(135deg, rgba(101,6,124,0.08), rgba(61,28,117,0.05));
    color: var(--grey-dim);
    line-height: 1.65;
    font-size: 0.82rem;
}
.briefing-type-lock i {
    color: var(--purple-light);
    margin-top: 0.15rem;
}
.briefing-color-row {
    display: grid;
    grid-template-columns: repeat(3, 52px);
    gap: 0.8rem;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
}
.briefing-color-input {
    width: 52px;
    height: 52px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.briefing-color-input::-webkit-color-swatch-wrapper {
    padding: 0;
}
.briefing-color-input::-webkit-color-swatch {
    border: 2px solid rgba(255,255,255,0.75);
    border-radius: 999px;
    box-shadow: 0 0 0 1px var(--border), 0 10px 18px rgba(0,0,0,0.12);
}
.briefing-color-input::-moz-color-swatch {
    border: 2px solid rgba(255,255,255,0.75);
    border-radius: 999px;
    box-shadow: 0 0 0 1px var(--border), 0 10px 18px rgba(0,0,0,0.12);
}
.ci-tipo-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 0.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}
.ci-tipo-badge i {
    font-size: 0.6rem;
}
.ci-briefing-badge {
    font-size: 0.65rem;
    background: rgba(101, 6, 124, 0.1);
    color: var(--purple-light);
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 0.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}
.ci-digital-label {
    font-size: 0.65rem;
    color: var(--purple-light);
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-top: 0.2rem;
}
.ci-digital-label i {
    font-size: 0.6rem;
}
.mp-img {
    width: 100%;
    object-fit: cover;
    display: block;
}
