:root{
 --bg:#f7f7f4;
 --paper:#fff;
 --text:#1e2a32;
 --muted:#66727f;
 --line:#e6e0d6;
 --brand:#0e3b2f;
 --brand2:#17684f;
 --brand3:#0b2a23;
 --gold:#c8a24a;
 --danger:#b42318;
 --ok:#117a4f;
 --warn:#9a6700;
 --shadow:0 18px 50px rgba(23,32,42,.12);
 --radius:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:var(--bg);color:var(--text)}
body.lock{overflow:hidden}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
button{cursor:pointer}
img{max-width:100%;display:block}
.container{width:min(1180px,calc(100% - 34px));margin:auto}
.topbar{background:var(--brand3);color:#fff;font-size:13px}
.topbar .container{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:9px 0;flex-wrap:wrap}
.header{position:sticky;top:0;z-index:50;background:rgba(247,247,244,.92);backdrop-filter:blur(14px);border-bottom:1px solid rgba(230,224,214,.8)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:14px 0}
.logo{display:flex;align-items:center;gap:12px;font-weight:900;color:var(--brand);letter-spacing:-.4px}
.logo-mark{width:45px;height:45px;border-radius:15px;background:linear-gradient(135deg,var(--brand),var(--brand2));color:#fff;display:grid;place-items:center;box-shadow:0 10px 25px rgba(14,59,47,.25);font-size:18px}
.logo small{display:block;color:var(--muted);font-weight:700;font-size:12px;letter-spacing:0;margin-top:2px}
.menu{display:flex;align-items:center;gap:4px;flex-wrap:wrap;justify-content:flex-end}
.menu a{padding:10px 12px;border-radius:999px;color:#2a3a44;font-weight:700;font-size:14px}
.menu a:hover,.menu a.active{background:#edf3ef;color:var(--brand)}
.menu .cart-pill{background:var(--brand);color:#fff;padding:10px 14px}
.mobile-toggle{display:none;border:1px solid var(--line);background:#fff;border-radius:12px;padding:10px 12px;color:var(--brand);font-weight:900}
.hero{padding:72px 0 38px;background:radial-gradient(circle at 78% 5%,rgba(200,162,74,.18),transparent 32%),linear-gradient(180deg,#fff 0%,var(--bg) 100%)}
.hero-grid{display:grid;grid-template-columns:1.04fr .96fr;gap:38px;align-items:center}
.kicker{display:inline-flex;align-items:center;gap:8px;background:#edf3ef;color:var(--brand);border:1px solid #d9e7df;border-radius:999px;padding:8px 12px;font-weight:900;font-size:13px}
h1{font-size:clamp(38px,5vw,66px);line-height:1.02;margin:18px 0 16px;color:var(--brand);letter-spacing:-2px}
.lead{font-size:18px;line-height:1.62;color:#475463;margin:0 0 24px;max-width:650px}
.actions{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.btn{border:none;border-radius:999px;padding:13px 18px;font-weight:900;display:inline-flex;align-items:center;justify-content:center;gap:9px;transition:.2s ease;min-height:46px}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--brand);color:#fff;box-shadow:0 12px 28px rgba(14,59,47,.22)}
.btn-outline{background:#fff;color:var(--brand);border:1px solid var(--line)}
.btn-soft{background:#edf3ef;color:var(--brand)}
.btn-danger{background:#fff0ee;color:var(--danger);border:1px solid #ffd0ca}
.hero-card{background:#fff;border:1px solid var(--line);border-radius:32px;box-shadow:var(--shadow);padding:26px;position:relative;overflow:hidden}
.hero-card:before{content:"";position:absolute;right:-70px;top:-80px;width:220px;height:220px;border-radius:50%;background:rgba(200,162,74,.18)}
.product-mock{position:relative;z-index:1;display:grid;gap:14px}
.mock-row{display:flex;align-items:center;justify-content:space-between;background:#fbfaf7;border:1px solid var(--line);border-radius:18px;padding:14px}
.mock-icon{width:48px;height:48px;border-radius:16px;background:#edf3ef;display:grid;place-items:center;color:var(--brand);font-size:24px;font-weight:900}
.mock-title{font-weight:900;color:var(--brand)}
.mock-price{font-weight:900;color:var(--brand)}
.section{padding:52px 0}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:22px}
.section-title{margin:0;color:var(--brand);font-size:clamp(26px,3vw,38px);letter-spacing:-1px}
.section-subtitle{margin:8px 0 0;color:var(--muted);line-height:1.5;max-width:760px}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:0 12px 30px rgba(23,32,42,.06);padding:22px}
.card h3{margin:0 0 10px;color:var(--brand)}
.card p{color:var(--muted);line-height:1.55;margin:0}
.shop-layout{display:grid;grid-template-columns:260px 1fr;gap:22px;align-items:start}
.filters{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:18px;position:sticky;top:90px}
.filters h3{margin:0 0 14px;color:var(--brand)}
.field{display:grid;gap:7px;margin-bottom:12px}
.field label{font-size:13px;color:#40505c;font-weight:900}
.input,input,select,textarea{width:100%;border:1px solid var(--line);background:#fff;border-radius:14px;padding:12px 13px;color:var(--text);outline:none}
textarea{resize:vertical;min-height:96px}
.input:focus,input:focus,select:focus,textarea:focus{border-color:#b5cdbf;box-shadow:0 0 0 4px rgba(23,104,79,.08)}
.chips{display:flex;gap:8px;flex-wrap:wrap}
.chip{border:1px solid var(--line);background:#fff;border-radius:999px;padding:9px 12px;font-weight:900;color:#40505c}
.chip.active{background:var(--brand);color:#fff;border-color:var(--brand)}
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.product{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:0 12px 30px rgba(23,32,42,.06);overflow:hidden;display:flex;flex-direction:column}
.product-art{height:170px;background:linear-gradient(135deg,#f8f5ed,#edf3ef);display:grid;place-items:center;position:relative;color:var(--brand);font-size:50px;font-weight:900}
.product-art .badge{position:absolute;left:14px;top:14px;background:#fff;border:1px solid var(--line);border-radius:999px;padding:7px 10px;font-size:12px;color:var(--brand);box-shadow:0 8px 18px rgba(0,0,0,.06)}
.product-body{padding:16px;display:flex;flex-direction:column;gap:10px;flex:1}
.product h3{margin:0;color:var(--brand);font-size:17px;line-height:1.25}
.product p{margin:0;color:var(--muted);line-height:1.45;font-size:14px}
.price{font-size:22px;font-weight:900;color:var(--brand);margin-top:auto}
.product-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:3px}
.muted-box{background:#fbfaf7;border:1px solid var(--line);border-radius:18px;padding:14px;color:#596675;line-height:1.5}
.footer{background:var(--brand3);color:#fff;margin-top:54px;padding:32px 0}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:22px;align-items:start}
.footer h3,.footer h4{margin:0 0 10px}.footer p{margin:0;color:#d6e3dd;line-height:1.55}.footer a{color:#fff;font-weight:800}
.footer-bottom{margin-top:22px;border-top:1px solid rgba(255,255,255,.14);padding-top:18px;color:#c8d8d1;font-size:13px}
.drawer{position:fixed;inset:0;z-index:90;pointer-events:none}.drawer.open{pointer-events:auto}.drawer-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.4);opacity:0;transition:.2s}.drawer.open .drawer-backdrop{opacity:1}.drawer-panel{position:absolute;right:0;top:0;height:100%;width:min(430px,94vw);background:#fff;box-shadow:var(--shadow);transform:translateX(102%);transition:.24s ease;display:flex;flex-direction:column}.drawer.open .drawer-panel{transform:translateX(0)}
.drawer-head{display:flex;align-items:center;justify-content:space-between;padding:18px;border-bottom:1px solid var(--line)}.drawer-head h2{margin:0;color:var(--brand)}.icon-btn{border:1px solid var(--line);background:#fff;border-radius:12px;padding:8px 11px;font-weight:900;color:var(--brand)}.drawer-body{padding:18px;overflow:auto;flex:1}.drawer-foot{padding:18px;border-top:1px solid var(--line);background:#fbfaf7}.cart-item{display:grid;grid-template-columns:1fr auto;gap:10px;border-bottom:1px solid var(--line);padding:12px 0}.cart-item strong{color:var(--brand)}.qty{display:flex;align-items:center;gap:6px}.qty button{border:1px solid var(--line);background:#fff;border-radius:10px;width:32px;height:32px;font-weight:900}.total{display:flex;align-items:center;justify-content:space-between;font-size:18px;font-weight:900;color:var(--brand);margin-bottom:12px}
.modal{position:fixed;inset:0;background:rgba(0,0,0,.46);z-index:120;display:none;align-items:center;justify-content:center;padding:18px}.modal.open{display:flex}.modal-card{background:#fff;border-radius:24px;box-shadow:var(--shadow);width:min(720px,100%);max-height:92vh;overflow:auto}.modal-head{display:flex;align-items:center;justify-content:space-between;padding:18px 20px;border-bottom:1px solid var(--line)}.modal-head h2{margin:0;color:var(--brand)}.modal-body{padding:20px}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}.full{grid-column:1/-1}.toast{position:fixed;left:50%;bottom:22px;transform:translateX(-50%) translateY(25px);background:var(--brand);color:#fff;padding:12px 16px;border-radius:999px;box-shadow:var(--shadow);opacity:0;pointer-events:none;transition:.25s;z-index:180;font-weight:900}.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}
.table-wrap{overflow:auto;background:#fff;border:1px solid var(--line);border-radius:18px}table{width:100%;border-collapse:collapse;min-width:760px}th,td{text-align:left;padding:12px;border-bottom:1px solid var(--line);vertical-align:top}th{background:#fbfaf7;color:var(--brand);font-size:13px}td{font-size:14px}.status{display:inline-flex;border-radius:999px;padding:6px 9px;font-weight:900;font-size:12px;background:#edf3ef;color:var(--brand)}.status.warn{background:#fff6dc;color:var(--warn)}.status.ok{background:#eaf8ef;color:var(--ok)}.status.danger{background:#fff0ee;color:var(--danger)}
.admin-page{min-height:100vh;background:linear-gradient(135deg,#0b2a23,#17684f)}.admin-shell{width:min(1180px,calc(100% - 34px));margin:auto;padding:26px 0}.admin-card{background:#fff;border-radius:24px;box-shadow:var(--shadow);padding:22px}.admin-head{display:flex;align-items:center;justify-content:space-between;gap:16px;color:#fff;margin-bottom:18px}.admin-head h1{color:#fff;margin:0;font-size:34px}.admin-tabs{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:18px}.tab{border:1px solid var(--line);background:#fff;border-radius:999px;padding:10px 14px;font-weight:900;color:var(--brand)}.tab.active{background:var(--brand);color:#fff}.admin-grid{display:grid;grid-template-columns:360px 1fr;gap:18px}.notice{background:#fff8df;border:1px solid #f3d27a;color:#5c4300;border-radius:16px;padding:12px;line-height:1.45;margin-bottom:14px}.login-box{width:min(440px,calc(100% - 34px));margin:70px auto;background:#fff;border-radius:24px;box-shadow:var(--shadow);padding:24px}.login-box h1{font-size:30px;margin-top:0}.hidden{display:none!important}
.track-result{display:grid;gap:12px}.order-line{display:flex;align-items:center;justify-content:space-between;gap:12px;border-bottom:1px solid var(--line);padding:9px 0}.order-line:last-child{border-bottom:none}
@media(max-width:980px){.hero-grid,.shop-layout,.footer-grid,.admin-grid{grid-template-columns:1fr}.filters{position:static}.product-grid,.cards{grid-template-columns:repeat(2,1fr)}}
@media(max-width:720px){.mobile-toggle{display:inline-flex}.menu{display:none;position:absolute;left:17px;right:17px;top:74px;background:#fff;border:1px solid var(--line);border-radius:20px;box-shadow:var(--shadow);padding:10px;flex-direction:column;align-items:stretch}.menu.open{display:flex}.menu a{border-radius:12px}.nav-dropdown{display:grid;align-items:stretch}.nav-dropdown .drop-main{justify-content:space-between}.dropdown-menu{position:static;min-width:0;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;background:#fbfaf7;margin:2px 0 8px;padding:6px}.dropdown-menu a{font-size:13px;padding:9px 10px}.topbar .container{justify-content:center;text-align:center}.hero{padding-top:40px}.product-grid,.cards{grid-template-columns:1fr}.section-head{align-items:flex-start;flex-direction:column}.product-actions{grid-template-columns:1fr}.form-grid{grid-template-columns:1fr}.full{grid-column:auto}.admin-head{align-items:flex-start;flex-direction:column}}

/* Menu com categorias dentro de Loja */
.nav-dropdown{position:relative;display:flex;align-items:center}
.nav-dropdown .drop-main{display:inline-flex;align-items:center;gap:6px}
.dropdown-menu{position:absolute;top:calc(100% + 10px);left:0;min-width:245px;background:#fff;border:1px solid var(--line);border-radius:16px;box-shadow:var(--shadow);padding:8px;opacity:0;visibility:hidden;transform:translateY(-6px);transition:.18s ease;z-index:80}
.nav-dropdown:hover .dropdown-menu,.nav-dropdown:focus-within .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown-menu a{display:block;border-radius:12px;white-space:nowrap;font-size:13px;padding:10px 12px}
.dropdown-menu a:hover{background:#edf3ef;color:var(--brand)}
.step-card{position:relative;min-height:170px;padding-top:52px}
.step-number{position:absolute;left:22px;top:18px;width:28px;height:28px;border-radius:999px;background:var(--brand);color:#fff;display:grid;place-items:center;font-weight:900}
.cta-strip{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.cta-strip h3{font-size:24px;margin-bottom:8px}

/* Ajustes da página inicial pública: sem bloco de produtos fictícios/confuso */
.home-original .hero-grid{grid-template-columns:1.05fr .95fr}
.hero-simple-card{background:#fff;border:1px solid var(--line);border-radius:32px;box-shadow:var(--shadow);padding:30px;display:grid;gap:16px}
.hero-simple-card h2{margin:0;color:var(--brand);font-size:30px;letter-spacing:-.8px}
.hero-simple-card p{margin:0;color:var(--muted);line-height:1.6}
.simple-info{display:flex;align-items:center;justify-content:space-between;gap:12px;border:1px solid var(--line);border-radius:16px;padding:13px 14px;background:#fbfaf7;flex-wrap:wrap}
.simple-info strong{color:var(--brand)}
.simple-info span{color:#40505c;font-weight:800}
.category-card{transition:.2s ease;min-height:150px}
.category-card:hover{transform:translateY(-2px);border-color:#cdded4;box-shadow:0 16px 36px rgba(23,32,42,.09)}
@media(max-width:980px){.home-original .hero-grid{grid-template-columns:1fr}}

/* Versão 5: página inicial mais profissional e suporte a imagens */
.home-hero-v5{
 padding:78px 0 54px;
 background:
  radial-gradient(circle at 82% 12%,rgba(200,162,74,.20),transparent 30%),
  radial-gradient(circle at 8% 86%,rgba(23,104,79,.10),transparent 34%),
  linear-gradient(180deg,#fff 0%,#f7f7f4 100%);
 overflow:hidden;
}
.home-hero-grid{display:grid;grid-template-columns:1fr .94fr;gap:48px;align-items:center}
.home-copy h1{font-size:clamp(38px,4.8vw,62px);line-height:1.02;margin:18px 0 16px;letter-spacing:-1.8px;max-width:700px}
.home-copy .lead{max-width:590px}
.trust-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px;color:var(--brand);font-weight:900;font-size:14px}
.trust-row span{background:#fff;border:1px solid var(--line);border-radius:999px;padding:10px 12px;box-shadow:0 8px 18px rgba(23,32,42,.04)}
.home-visual-card{position:relative;background:#fff;border:1px solid var(--line);border-radius:34px;padding:20px;box-shadow:var(--shadow)}
.home-visual-card img{width:100%;border-radius:24px}
.hero-floating-card{position:absolute;left:30px;right:30px;bottom:30px;background:rgba(255,255,255,.94);border:1px solid var(--line);border-radius:18px;padding:14px 16px;box-shadow:0 14px 34px rgba(23,32,42,.12);display:grid;gap:4px}
.hero-floating-card strong{color:var(--brand);font-size:16px}.hero-floating-card span{color:var(--muted);font-size:14px}
.center-head{justify-content:center;text-align:center}.center-head .section-subtitle{margin-left:auto;margin-right:auto}
.category-section-v5{padding-top:42px}
.category-grid-v5{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.category-tile{background:#fff;border:1px solid var(--line);border-radius:26px;box-shadow:0 12px 30px rgba(23,32,42,.06);padding:15px;display:grid;gap:14px;transition:.2s ease;overflow:hidden}
.category-tile:hover{transform:translateY(-3px);border-color:#cdded4;box-shadow:0 18px 40px rgba(23,32,42,.10)}
.category-tile img{width:100%;border-radius:18px;background:#fbfaf7}
.category-tile h3{margin:0 0 6px;color:var(--brand);font-size:24px}.category-tile p{margin:0;color:var(--muted);line-height:1.5}.category-tile span{display:inline-flex;margin-top:12px;color:var(--brand);font-weight:900}
.split-section-v5{padding-top:24px}.split-grid-v5{display:grid;grid-template-columns:1.25fr .75fr;gap:18px;align-items:stretch}.service-card-v5{padding:30px;background:linear-gradient(135deg,#fff,#fbfaf7)}.service-card-v5 h2{font-size:clamp(28px,3.3vw,44px);line-height:1.08;letter-spacing:-1px;margin:16px 0 14px;color:var(--brand)}.service-card-v5 p{font-size:16px}.service-list{display:grid;gap:10px;margin-top:22px}.service-list div{display:flex;gap:12px;align-items:center;background:#fff;border:1px solid var(--line);border-radius:16px;padding:12px}.service-list strong{width:36px;height:36px;border-radius:999px;background:var(--brand);color:#fff;display:grid;place-items:center}.service-list span{font-weight:800;color:#40505c}
.contact-card-v5{display:grid;align-content:center;gap:14px}.contact-card-v5 h3{font-size:28px;margin-bottom:0}.cta-v5{background:linear-gradient(135deg,#fff,#f5f0df)}
.product-art-img{padding:12px;background:#f8f5ed}.product-art-img img{width:100%;height:100%;object-fit:cover;border-radius:18px}.product-art-img .fallback-icon{display:none;place-items:center;width:100%;height:100%;font-size:52px;color:var(--brand)}.modal-product-art{height:220px;border-radius:18px;margin-bottom:14px}.field-help{color:var(--muted);font-size:12px;line-height:1.35}.admin-product-cell{display:grid;grid-template-columns:64px 1fr;gap:10px;align-items:center}.admin-product-cell img{width:64px;height:50px;object-fit:cover;border-radius:10px;border:1px solid var(--line);background:#fbfaf7}.path-hint{color:#7a8791;word-break:break-all}
@media(max-width:980px){.home-hero-grid,.category-grid-v5,.split-grid-v5{grid-template-columns:1fr}.home-hero-v5{padding-top:48px}.hero-floating-card{position:static;margin-top:12px}.home-visual-card{padding:14px}}
@media(max-width:720px){.home-copy h1{font-size:38px}.category-tile h3{font-size:21px}.service-card-v5{padding:22px}.trust-row span{width:100%;text-align:center}.admin-product-cell{grid-template-columns:1fr}.admin-product-cell img{width:90px;height:70px}}


/* Versão 6: início institucional e rodapé completo */
.institutional-hero-v6{background:linear-gradient(135deg,#151821 0%,#202531 50%,#1a1f2a 100%);padding:88px 0 64px;position:relative;overflow:hidden}
.institutional-hero-v6:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 72% 24%,rgba(214,177,136,.14),transparent 26%),radial-gradient(circle at 12% 84%,rgba(255,255,255,.06),transparent 22%);pointer-events:none}
.institutional-wrap-v6{position:relative;z-index:1;display:grid;grid-template-columns:1.05fr .95fr;gap:38px;align-items:center}
.kicker-light{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.14);color:#f7e5d4}
.institutional-copy-v6 h1{color:#f2ddc9;letter-spacing:-1.6px;max-width:700px;font-family:Georgia,"Times New Roman",serif;font-weight:700}
.lead-light{color:#ecf0f3;opacity:.88;max-width:640px}
.btn-gold{background:#d9b38b;color:#1a1f2a;box-shadow:0 12px 28px rgba(217,179,139,.22)}
.btn-outline-light{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.28)}
.institutional-brand-v6{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:34px;padding:34px;box-shadow:0 22px 54px rgba(0,0,0,.22);backdrop-filter:blur(4px)}
.brand-mark-v6{display:grid;gap:18px;justify-items:center;text-align:center;margin-bottom:16px}
.brand-circle-v6{width:154px;height:154px;border-radius:50%;display:grid;place-items:center;border:2px solid rgba(242,221,201,.86);color:#f2ddc9;font-size:38px;font-weight:900;letter-spacing:1px;background:radial-gradient(circle at 30% 30%,rgba(255,255,255,.08),transparent 50%)}
.brand-word-v6{color:#fff;font-size:36px;font-weight:900;line-height:1}.brand-word-v6 span{display:block;color:#f2ddc9;font-size:28px;letter-spacing:1.6px;margin-top:6px}
.institutional-brand-v6 p{color:#e9edf0;line-height:1.7;text-align:center;margin:0 auto 18px;max-width:560px}
.contact-list-v6{display:grid;gap:10px}.contact-list-v6 div{display:flex;align-items:center;justify-content:space-between;gap:14px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.05);border-radius:18px;padding:14px 16px;flex-wrap:wrap}.contact-list-v6 strong{color:#f2ddc9}.contact-list-v6 span{color:#fff;font-weight:800}
.intro-strip-v6{padding-top:26px}.intro-card-v6{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;background:linear-gradient(135deg,#fff,#faf7f0)}.mini-kicker-v6{display:inline-flex;background:#edf3ef;color:var(--brand);border:1px solid #d9e7df;border-radius:999px;padding:8px 12px;font-size:12px;font-weight:900;letter-spacing:.5px}.intro-card-v6 h2{margin:12px 0 10px;color:var(--brand);font-size:32px;letter-spacing:-1px;max-width:620px}.intro-card-v6 p{margin:0;color:var(--muted);max-width:680px;line-height:1.6}
.category-section-v6{padding-top:14px}.cards-v6{grid-template-columns:repeat(3,1fr)}.category-card-v6{display:grid;gap:12px;transition:.22s ease}.category-card-v6:hover{transform:translateY(-3px);border-color:#cdded4;box-shadow:0 18px 40px rgba(23,32,42,.1)}.icon-chip-v6{width:58px;height:58px;border-radius:18px;background:#edf3ef;color:var(--brand);display:grid;place-items:center;font-weight:900;font-size:24px}.category-card-v6 h3{margin:0;color:var(--brand);font-size:26px}.category-card-v6 p{margin:0;color:var(--muted)}.category-card-v6 span{margin-top:6px;color:var(--brand);font-weight:900}
.support-section-v6{padding-top:18px}.support-grid-v6{display:grid;grid-template-columns:1fr 1fr;gap:18px}.support-card-v6,.cta-card-v6{padding:28px}.support-list-v6{display:grid;gap:12px;margin-top:18px}.support-list-v6 div{display:flex;gap:14px;align-items:center;padding:12px;border:1px solid var(--line);border-radius:16px;background:#fbfaf7}.support-list-v6 strong{width:36px;height:36px;border-radius:999px;background:var(--brand);color:#fff;display:grid;place-items:center}.support-list-v6 span{font-weight:800;color:#40505c}.cta-card-v6{background:linear-gradient(135deg,#fff,#f4f6f3)}.cta-card-v6 h3,.support-card-v6 h3{font-size:28px;margin-bottom:10px}.cta-card-v6 p{color:var(--muted);line-height:1.6}
.footer-v6{background:#171c26;color:#fff;padding-top:30px}.footer-v6 h3,.footer-v6 h4{color:#fff}.footer-v6 a{color:#fff}.footer-grid-v6{align-items:flex-start}.footer-v6 p{color:#f1f3f5;line-height:1.7}.footer-bottom-v6{margin-top:10px;padding:16px 0 24px;border-top:1px solid rgba(255,255,255,.12);text-align:center;color:#ff5353;font-size:14px}
@media(max-width:980px){.institutional-wrap-v6,.support-grid-v6,.cards-v6{grid-template-columns:1fr}.institutional-hero-v6{padding-top:58px}.institutional-copy-v6 h1{font-size:48px}.brand-word-v6{font-size:30px}.brand-word-v6 span{font-size:24px}.intro-card-v6 h2{font-size:28px}}
@media(max-width:720px){.institutional-copy-v6 h1{font-size:38px}.institutional-brand-v6{padding:22px}.brand-circle-v6{width:120px;height:120px;font-size:30px}.contact-list-v6 div{align-items:flex-start;flex-direction:column}.footer-bottom-v6{font-size:12px}.intro-card-v6 h2{font-size:24px}.category-card-v6 h3,.cta-card-v6 h3,.support-card-v6 h3{font-size:22px}}


/* Versão 9: mantém a página inicial escura/institucional preferida */
.header{
 box-shadow:0 8px 30px rgba(23,32,42,.04);
}
.institutional-hero-v6{
 margin-bottom:0;
}
.intro-strip-v6{
 background:linear-gradient(180deg,#f7f7f4 0%,#f7f7f4 100%);
}
.footer-v6{
 background:#171c26;
}
.footer-bottom-v6{
 color:#ff5353;
}


/* Versão 10: tema escuro/institucional para o site inteiro */
:root{
 --bg:#121720;
 --paper:#1a212d;
 --text:#edf1f5;
 --muted:#a7b3c2;
 --line:#2b3443;
 --brand:#d8b28c;
 --brand2:#e5c8aa;
 --brand3:#0f141c;
 --gold:#d8b28c;
 --shadow:0 18px 50px rgba(0,0,0,.28);
}
html,body{background:var(--bg);color:var(--text)}
body{background:
 radial-gradient(circle at 80% 0%,rgba(216,178,140,.08),transparent 22%),
 linear-gradient(180deg,#121720 0%,#161d28 100%)}
a{color:inherit}
.topbar{background:#0c1118;color:#f7f9fb;border-bottom:1px solid rgba(255,255,255,.06)}
.header{background:rgba(18,23,32,.92);border-bottom:1px solid rgba(255,255,255,.06);box-shadow:0 10px 28px rgba(0,0,0,.18)}
.logo{color:#fff}
.logo small{color:#c3ccd7}
.logo-mark{background:linear-gradient(135deg,#6d4f36,#d8b28c);color:#fff;box-shadow:0 10px 25px rgba(0,0,0,.22)}
.menu a{color:#dde5ee}
.menu a:hover,.menu a.active{background:rgba(216,178,140,.14);color:#f6e6d6}
.mobile-toggle{background:#1a212d;border-color:#344153;color:#f5e6d6}
.dropdown-menu{background:#1a212d;border:1px solid #334052;box-shadow:0 18px 40px rgba(0,0,0,.28)}
.dropdown-menu a:hover{background:#232c3a;color:#f7e4cf}
.hero,.section{background:transparent}
.card,.filters,.hero-simple-card,.hero-card,.product-card,.modal-card,.drawer-panel,.muted-box,.table-wrap,.admin-card,.login-box,.notice,.empty-state,.product-modal-art,.home-visual-card,.category-tile,.intro-card-v6,.support-card-v6,.cta-card-v6,.product-art-img{
 background:#1a212d;
 border-color:#2b3443;
 color:#edf1f5;
 box-shadow:0 16px 34px rgba(0,0,0,.18);
}
.card h3,.section-title,.hero-simple-card h2,.mock-title,.mock-price,.product-title,.modal-head h2,.admin-head h1,.intro-card-v6 h2,.category-card-v6 h3,.support-card-v6 h3,.cta-card-v6 h3,.brand-word-v6,.institutional-copy-v6 h1{color:#f7e4cf}
.card p,.section-subtitle,.lead,.hero-simple-card p,.simple-info span,.product-meta,.muted-box,.notice,.intro-card-v6 p,.institutional-brand-v6 p,.contact-list-v6 span,.support-list-v6 span,.field-help,.path-hint,.footer-v6 p{color:#aeb9c6}
.kicker,.kicker-light,.mini-kicker-v6{background:rgba(216,178,140,.12);border-color:rgba(216,178,140,.18);color:#f1d7bb}
.btn-primary,.btn-gold{background:#d8b28c;color:#151a22;box-shadow:0 12px 28px rgba(216,178,140,.18)}
.btn-soft{background:#242d3a;color:#f6e3cd;border:1px solid #344153}
.btn-outline,.btn-outline-light,.tab{background:#1a212d;color:#f3e0ca;border:1px solid #344153}
.btn-outline:hover,.btn-outline-light:hover,.btn-soft:hover,.tab:hover{background:#232c3a}
.tab.active{background:#d8b28c;color:#151a22;border-color:#d8b28c}
.field input,.field textarea,.field select,input,textarea,select{background:#121821;color:#edf1f5;border:1px solid #334052}
input::placeholder,textarea::placeholder{color:#79879a}
label{color:#dfe6ee}
.product-actions button,.icon-btn{border-color:#344153;background:#1e2633;color:#f7e4cf}
.icon-btn:hover{background:#273141}
.drawer-backdrop,.modal{background:rgba(7,10,14,.58)}
.mock-row,.simple-info,.support-list-v6 div,.contact-list-v6 div,.order-line,th,td{background:#202837;border-color:#2b3443}
th{color:#f4ddc5}
.status{background:#243041;color:#d9b28c}
.status.warn{background:#3a2f16;color:#f1cf7a}
.status.ok{background:#173228;color:#8fe0b2}
.status.danger{background:#402023;color:#ffaaa1}
.total,.drawer-head,.drawer-foot,.modal-head,.modal-body{border-color:#2b3443}
.footer,.footer-v6{background:#0f141c;color:#eef2f6;border-top:1px solid rgba(255,255,255,.06)}
.footer h3,.footer h4,.footer-v6 h3,.footer-v6 h4{color:#f7e4cf}
.footer a,.footer-v6 a{color:#fff}
.footer-bottom,.footer-bottom-v6{border-top:1px solid rgba(255,255,255,.08);color:#d8b28c}
.admin-page{background:linear-gradient(135deg,#0e131b,#171f2b)}
.notice{background:#2c2417;border-color:#59492f;color:#f0d7a8}
.filters .field,.filter-group{background:transparent}
.table-wrap table{background:#1a212d}
.product-card{overflow:hidden}
.product-card .product-art-img{background:#151b24}
.institutional-brand-v6{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.1);box-shadow:0 22px 54px rgba(0,0,0,.22)}
.brand-circle-v6{border:2px solid rgba(242,221,201,.86);color:#f2ddc9;background:radial-gradient(circle at 30% 30%,rgba(255,255,255,.08),transparent 50%)}
.brand-word-v6 span,.contact-list-v6 strong,.simple-info strong{color:#f0d7bb}
.contact-list-v6 div{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.12)}
.cta-strip,.cta-card-v6{background:linear-gradient(135deg,#1a212d,#202837)}
.hero-simple-card .btn-primary,.institutional-copy-v6 .btn-gold{background:#d8b28c;color:#161b24}
@media(max-width:720px){
 .menu{background:#161d28;border-color:#2f3a49}
}


/* Versão 11: acabamento elegante/luxuoso */
:root{
 --bg:#0c1017;
 --paper:#151b25;
 --text:#f4f0e8;
 --muted:#b8bdc7;
 --line:rgba(224,184,126,.18);
 --brand:#e0b87e;
 --brand2:#f1d6ad;
 --brand3:#080b10;
 --gold:#e0b87e;
 --champagne:#f4e3c5;
 --shadow:0 28px 70px rgba(0,0,0,.42);
}

html,body{
 background:#0c1017;
 color:var(--text);
}

body{
 background:
  radial-gradient(circle at 18% -8%,rgba(224,184,126,.13),transparent 32%),
  radial-gradient(circle at 82% 18%,rgba(255,255,255,.06),transparent 28%),
  radial-gradient(circle at 50% 105%,rgba(224,184,126,.08),transparent 35%),
  linear-gradient(180deg,#0b0f16 0%,#111821 45%,#0c1017 100%);
}

body:before{
 content:"";
 position:fixed;
 inset:0;
 pointer-events:none;
 background-image:
  linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
  linear-gradient(90deg,rgba(255,255,255,.025) 1px, transparent 1px);
 background-size:48px 48px;
 mask-image:linear-gradient(180deg,rgba(0,0,0,.6),transparent 78%);
 z-index:-1;
}

.topbar{
 background:#070a0f;
 color:#ead6b6;
 border-bottom:1px solid rgba(224,184,126,.16);
 letter-spacing:.2px;
}

.header{
 background:rgba(10,14,20,.84);
 backdrop-filter:blur(18px);
 border-bottom:1px solid rgba(224,184,126,.18);
 box-shadow:0 14px 40px rgba(0,0,0,.28);
}

.logo{
 color:#fff5e8;
}

.logo-mark{
 background:
  linear-gradient(135deg,#3a2a19 0%,#e0b87e 52%,#7c5730 100%);
 color:#111;
 border:1px solid rgba(255,255,255,.22);
 box-shadow:0 12px 28px rgba(224,184,126,.2), inset 0 1px 0 rgba(255,255,255,.45);
 font-family:Georgia,"Times New Roman",serif;
}

.logo small{
 color:#cdbb9f;
}

.menu a{
 color:#e8edf4;
 border:1px solid transparent;
}

.menu a:hover,
.menu a.active{
 background:rgba(224,184,126,.10);
 color:#f8dfb8;
 border-color:rgba(224,184,126,.18);
}

.dropdown-menu{
 background:rgba(16,22,32,.98);
 border:1px solid rgba(224,184,126,.18);
 box-shadow:0 24px 70px rgba(0,0,0,.45);
}

.dropdown-menu a:hover{
 background:rgba(224,184,126,.10);
 color:#f8dfb8;
}

/* Hero mais refinado */
.institutional-hero-v6{
 background:
  radial-gradient(circle at 78% 8%,rgba(224,184,126,.18),transparent 30%),
  radial-gradient(circle at 18% 86%,rgba(255,255,255,.05),transparent 24%),
  linear-gradient(135deg,#0b0f16 0%,#161e29 58%,#0c1017 100%);
 padding:104px 0 76px;
}

.institutional-hero-v6:after{
 content:"";
 position:absolute;
 left:50%;
 bottom:0;
 width:min(980px,90%);
 height:1px;
 transform:translateX(-50%);
 background:linear-gradient(90deg,transparent,rgba(224,184,126,.65),transparent);
}

.institutional-copy-v6 h1,
h1,
.section-title{
 font-family:Georgia,"Times New Roman",serif;
 font-weight:700;
 letter-spacing:-1px;
}

.institutional-copy-v6 h1{
 color:#f7dfbd;
 text-shadow:0 18px 60px rgba(224,184,126,.14);
}

.kicker,
.kicker-light,
.mini-kicker-v6{
 background:rgba(224,184,126,.11);
 border:1px solid rgba(224,184,126,.28);
 color:#f5d8a8;
 letter-spacing:.8px;
 text-transform:uppercase;
 box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}

.lead,
.lead-light{
 color:#d0d6df;
}

/* Cards com efeito premium */
.card,
.filters,
.product-card,
.modal-card,
.drawer-panel,
.table-wrap,
.admin-card,
.login-box,
.hero-simple-card,
.institutional-brand-v6,
.intro-card-v6,
.support-card-v6,
.cta-card-v6,
.category-tile{
 background:
  linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025)),
  #151b25;
 border:1px solid rgba(224,184,126,.16);
 box-shadow:0 22px 58px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.045);
}

.card:hover,
.product-card:hover,
.category-card-v6:hover,
.category-tile:hover{
 border-color:rgba(224,184,126,.36);
 box-shadow:0 30px 76px rgba(0,0,0,.40), 0 0 0 1px rgba(224,184,126,.08);
}

.card h3,
.product-title,
.section-title,
.hero-simple-card h2,
.intro-card-v6 h2,
.support-card-v6 h3,
.cta-card-v6 h3,
.category-card-v6 h3,
.modal-head h2{
 color:#f5d8a8;
}

.card p,
.section-subtitle,
.product-meta,
.muted-box,
.path-hint,
.field-help{
 color:#b9c0ca;
}

.institutional-brand-v6{
 position:relative;
 overflow:hidden;
}

.institutional-brand-v6:before{
 content:"";
 position:absolute;
 inset:0;
 background:linear-gradient(135deg,rgba(224,184,126,.08),transparent 40%);
 pointer-events:none;
}

.brand-circle-v6{
 border-color:rgba(224,184,126,.75);
 color:#f5d8a8;
 background:
  radial-gradient(circle at 30% 22%,rgba(255,255,255,.15),transparent 38%),
  linear-gradient(135deg,rgba(224,184,126,.08),rgba(255,255,255,.02));
 box-shadow:0 18px 50px rgba(0,0,0,.28), inset 0 0 30px rgba(224,184,126,.08);
 font-family:Georgia,"Times New Roman",serif;
}

.brand-word-v6{
 color:#fff3df;
 font-family:Georgia,"Times New Roman",serif;
}

.brand-word-v6 span{
 color:#e0b87e;
}

/* Botões premium */
.btn{
 letter-spacing:.2px;
}

.btn-primary,
.btn-gold{
 background:linear-gradient(135deg,#f1d6ad 0%,#e0b87e 48%,#a9753c 100%);
 color:#0e1219;
 border:1px solid rgba(255,255,255,.18);
 box-shadow:0 16px 36px rgba(224,184,126,.20), inset 0 1px 0 rgba(255,255,255,.45);
}

.btn-primary:hover,
.btn-gold:hover{
 box-shadow:0 22px 46px rgba(224,184,126,.28), inset 0 1px 0 rgba(255,255,255,.45);
}

.btn-outline,
.btn-outline-light,
.btn-soft{
 background:rgba(255,255,255,.045);
 color:#f3d6ac;
 border:1px solid rgba(224,184,126,.22);
}

.btn-outline:hover,
.btn-outline-light:hover,
.btn-soft:hover{
 background:rgba(224,184,126,.10);
 border-color:rgba(224,184,126,.42);
}

/* Loja e produtos mais elegantes */
.product-art,
.product-art-img{
 background:
  radial-gradient(circle at 50% 0%,rgba(224,184,126,.10),transparent 48%),
  #101620;
}

.price{
 color:#f3d6ac;
 font-family:Georgia,"Times New Roman",serif;
}

.product-badge,
.status{
 background:rgba(224,184,126,.12);
 color:#f6d9af;
 border:1px solid rgba(224,184,126,.22);
}

.icon-chip-v6,
.mock-icon,
.step-number,
.support-list-v6 strong{
 background:linear-gradient(135deg,#f1d6ad,#a9753c);
 color:#111821;
 box-shadow:0 12px 24px rgba(224,184,126,.14);
}

.contact-list-v6 div,
.simple-info,
.support-list-v6 div,
.mock-row,
.order-line,
th,
td,
.muted-box{
 background:rgba(255,255,255,.035);
 border-color:rgba(224,184,126,.14);
}

.contact-list-v6 strong,
.simple-info strong{
 color:#f3d6ac;
}

.contact-list-v6 span,
.simple-info span,
.support-list-v6 span{
 color:#dce2ea;
}

.field input,
.field textarea,
.field select,
input,
textarea,
select{
 background:rgba(255,255,255,.045);
 border:1px solid rgba(224,184,126,.18);
 color:#f7f0e7;
 border-radius:14px;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
input:focus,
textarea:focus,
select:focus{
 outline:none;
 border-color:rgba(224,184,126,.58);
 box-shadow:0 0 0 4px rgba(224,184,126,.10);
}

label{
 color:#f1d6ad;
}

/* Tabelas/admin */
.admin-page{
 background:
  radial-gradient(circle at 20% 0%,rgba(224,184,126,.12),transparent 28%),
  linear-gradient(135deg,#080b10,#151c27);
}

.admin-head h1{
 color:#f7dfbd;
 font-family:Georgia,"Times New Roman",serif;
}

.tab.active{
 background:linear-gradient(135deg,#f1d6ad,#a9753c);
 color:#111821;
 border-color:transparent;
}

th{
 background:rgba(224,184,126,.09);
 color:#f4d7ad;
}

td{
 color:#e8edf3;
}

/* Rodapé luxuoso */
.footer,
.footer-v6{
 background:
  radial-gradient(circle at 15% 0%,rgba(224,184,126,.10),transparent 32%),
  #080b10;
 border-top:1px solid rgba(224,184,126,.20);
}

.footer h3,
.footer h4,
.footer-v6 h3,
.footer-v6 h4{
 color:#f7dfbd;
 font-family:Georgia,"Times New Roman",serif;
}

.footer-bottom,
.footer-bottom-v6{
 color:#e0b87e;
 border-top:1px solid rgba(224,184,126,.16);
}

/* Mobile */
@media(max-width:720px){
 .institutional-hero-v6{
  padding:68px 0 48px;
 }
 .menu{
  background:rgba(14,19,28,.98);
  border-color:rgba(224,184,126,.20);
 }
}


/* Versão 13 Pix: pagamento manual por Pix */
.pix-box .muted-box {
 border-color: rgba(224,184,126,.28);
}
#pixKeyText {
 display:inline-block;
 margin:6px 0;
 color:var(--brand);
 font-size:20px;
 font-weight:900;
 letter-spacing:.4px;
}
#orderDonePix {
 border-color: rgba(224,184,126,.28);
}


/* Versão 14 Pix com QR Code */
.pix-panel{display:grid;grid-template-columns:220px 1fr;gap:16px;align-items:start;margin-top:10px}
.pix-panel-done{margin-top:14px}
.pix-qr-wrap{display:grid;place-items:center;padding:12px;border:1px solid rgba(224,184,126,.18);border-radius:18px;background:rgba(255,255,255,.03);min-height:220px}
.pix-qr-wrap img{width:100%;max-width:220px;height:auto;border-radius:12px;background:#fff;padding:8px}
.pix-panel-body{display:grid;gap:12px}
#pixAmountPreview,#pixAmountDone,#trackPixAmount{display:inline-block;margin-top:6px;color:var(--brand);font-size:22px;font-weight:900;letter-spacing:.3px}
#pixKeyText,#pixKeyDone,#trackPixKey{display:inline-block;margin:6px 0;color:var(--brand);font-size:20px;font-weight:900;letter-spacing:.4px;word-break:break-word}
#pixPayloadPreview,#pixPayloadDone,#trackPixPayload{min-height:94px;resize:vertical;word-break:break-all;font-size:12px;line-height:1.45}
.track-pix-panel{margin-bottom:12px}
@media(max-width:820px){.pix-panel{grid-template-columns:1fr}.pix-qr-wrap img{max-width:200px}}


/* Versão 15 - Passo 1: logo oficial e refinamento da identidade visual */
.logo-img-mark{
 overflow:hidden;
 padding:7px;
 background:
  radial-gradient(circle at 35% 22%,rgba(255,255,255,.18),transparent 38%),
  linear-gradient(135deg,#161d28,#0b0f16);
}
.logo-img-mark img{
 width:100%;
 height:100%;
 object-fit:contain;
 filter:drop-shadow(0 8px 12px rgba(0,0,0,.22));
}
.brand-logo-circle{
 padding:22px;
}
.brand-logo-circle img{
 width:100%;
 height:100%;
 object-fit:contain;
 filter:drop-shadow(0 16px 30px rgba(0,0,0,.28));
}
.admin-title-brand{
 display:flex;
 align-items:center;
 gap:16px;
}
.admin-title-brand img{
 width:68px;
 height:68px;
 object-fit:contain;
 border:1px solid rgba(224,184,126,.22);
 border-radius:22px;
 padding:9px;
 background:rgba(255,255,255,.04);
 box-shadow:0 16px 34px rgba(0,0,0,.22);
}
.institutional-copy-v6 h1{
 max-width:760px;
}
.institutional-brand-v6 p{
 font-size:16px;
}
@media(max-width:720px){
 .admin-title-brand{
  align-items:flex-start;
 }
 .admin-title-brand img{
  width:56px;
  height:56px;
  border-radius:18px;
 }
 .brand-logo-circle{
  padding:18px;
 }
}


/* Versão 16: texto institucional solicitado pelo cliente */
.institutional-brand-v6 p{
 max-width:620px;
 text-align:center;
 line-height:1.75;
}


/* Versão 17: home limpa, sem blocos repetidos de categorias */
.institutional-hero-v6{
 min-height:calc(100vh - 220px);
 display:flex;
 align-items:center;
}
.institutional-wrap-v6{
 padding-top:18px;
 padding-bottom:18px;
}


/* Versão 18: página de Entrega e Devoluções com política completa */
.policy-page{
 padding-top:58px;
}
.policy-head{
 align-items:center;
}
.policy-layout{
 display:grid;
 grid-template-columns:320px 1fr;
 gap:22px;
 align-items:start;
}
.policy-summary{
 position:sticky;
 top:96px;
 display:grid;
 gap:14px;
}
.policy-summary h3{
 font-size:26px;
}
.policy-info-line{
 display:grid;
 gap:4px;
 border:1px solid rgba(224,184,126,.16);
 border-radius:16px;
 padding:13px 14px;
 background:rgba(255,255,255,.035);
}
.policy-info-line strong{
 color:var(--brand);
}
.policy-info-line span{
 color:var(--text);
 font-weight:800;
 word-break:break-word;
}
.policy-content{
 display:grid;
 gap:18px;
}
.policy-card h2{
 margin:0 0 14px;
 color:var(--brand);
 font-family:Georgia,"Times New Roman",serif;
 font-size:30px;
}
.policy-card p{
 margin:0 0 13px;
 line-height:1.75;
 color:#d9e0e8;
}
.policy-card p:last-child{
 margin-bottom:0;
}
.policy-list{
 margin:12px 0 0;
 padding-left:22px;
 color:#d9e0e8;
 line-height:1.75;
}
.policy-list li{
 margin-bottom:9px;
}
.policy-card strong{
 color:#f4d7ad;
}
.policy-cta{
 display:flex;
 align-items:center;
 justify-content:space-between;
 gap:18px;
 flex-wrap:wrap;
}
.policy-cta h3{
 font-size:26px;
}
@media(max-width:980px){
 .policy-layout{
  grid-template-columns:1fr;
 }
 .policy-summary{
  position:static;
 }
}
@media(max-width:720px){
 .policy-card h2{
  font-size:24px;
 }
 .policy-page{
  padding-top:36px;
 }
}


/* Versão 19: horário de funcionamento na página Contato */
.contact-grid-v19{
 display:grid;
 grid-template-columns:1.05fr .95fr;
 gap:20px;
 align-items:stretch;
}
.contact-main-card-v19,
.contact-info-card-v19{
 padding:32px;
}
.contact-main-card-v19 h2,
.contact-info-card-v19 h2{
 margin:0 0 18px;
 color:var(--brand);
 font-family:Georgia,"Times New Roman",serif;
 font-size:34px;
}
.contact-main-card-v19 h3{
 margin:0 0 24px;
 color:#fff;
 font-size:22px;
}
.hours-list-v19{
 display:grid;
 gap:12px;
 margin-bottom:22px;
}
.hours-list-v19 div,
.contact-info-line-v19{
 display:flex;
 align-items:center;
 justify-content:space-between;
 gap:16px;
 border:1px solid rgba(224,184,126,.16);
 border-radius:16px;
 padding:14px 16px;
 background:rgba(255,255,255,.035);
}
.hours-list-v19 strong,
.contact-info-line-v19 strong{
 color:var(--brand);
}
.hours-list-v19 span,
.contact-info-line-v19 span{
 color:var(--text);
 font-weight:800;
 text-align:right;
}
.contact-main-card-v19 p{
 line-height:1.7;
 color:#d9e0e8;
 margin-bottom:22px;
}
.contact-info-card-v19{
 display:grid;
 gap:14px;
}
.contact-info-line-v19{
 align-items:flex-start;
}
@media(max-width:980px){
 .contact-grid-v19{
  grid-template-columns:1fr;
 }
}
@media(max-width:720px){
 .hours-list-v19 div,
 .contact-info-line-v19{
  flex-direction:column;
  align-items:flex-start;
 }
 .hours-list-v19 span,
 .contact-info-line-v19 span{
  text-align:left;
 }
 .contact-main-card-v19 h2,
 .contact-info-card-v19 h2{
  font-size:28px;
 }
}


/* Versão 20: contato por WhatsApp ou e-mail preenchido */
.form-note-v20{
 color:#d9e0e8;
 line-height:1.6;
 margin:0 0 16px;
}


/* Versão 24: finalizar pedido organizado e códigos sequenciais */
.checkout-modal{
  width:min(860px,calc(100% - 28px));
}
.modal-subtitle{
  margin:6px 0 0;
  color:var(--muted);
  line-height:1.45;
  font-size:14px;
}
.checkout-form{
  display:grid;
  gap:18px;
}
.checkout-section,
.checkout-summary{
  border:1px solid rgba(224,184,126,.14);
  border-radius:20px;
  padding:18px;
  background:rgba(255,255,255,.025);
}
.checkout-section h3,
.checkout-summary h3{
  margin:0 0 14px;
  color:var(--brand);
  font-family:Georgia,"Times New Roman",serif;
  font-size:22px;
}
.checkout-grid{
  gap:14px;
}
.checkout-grid .field{
  margin:0;
}
.checkout-form label{
  display:block;
  margin-bottom:7px;
  color:#f1d6ad;
  font-weight:900;
  opacity:1;
}
.checkout-form input,
.checkout-form select,
.checkout-form textarea{
  min-height:48px;
}
.checkout-form textarea{
  min-height:96px;
}
.checkout-summary .muted-box{
  margin:0;
}
.checkout-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
  position:sticky;
  bottom:-20px;
  padding:14px 0 0;
  background:linear-gradient(180deg,rgba(21,27,37,0),#151b25 45%);
}
.checkout-actions .btn{
  min-width:170px;
}
@media(max-width:720px){
  .checkout-modal{
    width:calc(100% - 16px);
  }
  .checkout-section,
  .checkout-summary{
    padding:14px;
  }
  .checkout-actions{
    position:static;
  }
  .checkout-actions .btn{
    width:100%;
  }
}


/* Versão 25: CEP no checkout e SEO local discreto */
.seo-local-v25{
  padding:22px 0 36px;
}
.seo-local-v25 p{
  margin:0;
  color:#cfd7e1;
  line-height:1.75;
  font-size:15px;
  border-top:1px solid rgba(224,184,126,.12);
  padding-top:18px;
}
.seo-local-v25 strong{
  color:var(--brand);
}


/* Versão 26: página inicial premium, centralizada e mais elegante */
.home-premium-v26{
  background:
    radial-gradient(circle at 50% 0%,rgba(224,184,126,.14),transparent 28%),
    radial-gradient(circle at 12% 70%,rgba(255,255,255,.045),transparent 24%),
    radial-gradient(circle at 86% 72%,rgba(224,184,126,.08),transparent 28%),
    linear-gradient(180deg,#0b0f16 0%,#111821 48%,#0c1017 100%);
}
.home-hero-premium-v26{
  min-height:calc(100vh - 88px);
  display:flex;
  align-items:center;
  text-align:center;
  padding:74px 0 54px;
  position:relative;
  overflow:hidden;
}
.home-hero-premium-v26:before{
  content:"";
  position:absolute;
  left:50%;
  top:86px;
  width:min(720px,86vw);
  height:min(720px,86vw);
  transform:translateX(-50%);
  border-radius:50%;
  background:radial-gradient(circle,rgba(224,184,126,.08),transparent 62%);
  pointer-events:none;
}
.home-hero-premium-v26 .container{
  position:relative;
  z-index:1;
}
.home-logo-wrap-v26{
  width:132px;
  height:132px;
  margin:0 auto 22px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid rgba(224,184,126,.42);
  background:
    radial-gradient(circle at 35% 22%,rgba(255,255,255,.12),transparent 38%),
    linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  box-shadow:0 30px 80px rgba(0,0,0,.42), 0 0 0 10px rgba(224,184,126,.035);
}
.home-logo-wrap-v26 img{
  width:96px;
  height:96px;
  object-fit:contain;
  filter:drop-shadow(0 14px 26px rgba(0,0,0,.35));
}
.home-kicker-v26{
  margin-bottom:18px;
}
.home-hero-premium-v26 h1{
  max-width:900px;
  margin:0 auto 18px;
  color:#f7dfbd;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(42px,6.2vw,84px);
  line-height:.96;
  letter-spacing:-2.4px;
  text-shadow:0 24px 80px rgba(224,184,126,.14);
}
.home-lead-v26{
  max-width:780px;
  margin:0 auto 24px;
  color:#dbe3ec;
  font-size:18px;
  line-height:1.72;
}
.home-text-card-v26{
  width:min(860px,100%);
  margin:0 auto 26px;
  padding:24px 28px;
  border:1px solid rgba(224,184,126,.18);
  border-radius:26px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025)),
    rgba(21,27,37,.78);
  box-shadow:0 24px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
}
.home-text-card-v26 p{
  margin:0;
  color:#cfd7e1;
  line-height:1.85;
  font-size:15.8px;
}
.home-actions-v26{
  justify-content:center;
  margin-bottom:28px;
}
.home-contact-grid-v26{
  width:min(950px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.home-info-card-v26{
  min-height:96px;
  border:1px solid rgba(224,184,126,.16);
  border-radius:20px;
  padding:16px;
  background:rgba(255,255,255,.035);
  box-shadow:0 16px 38px rgba(0,0,0,.18);
  display:grid;
  align-content:center;
  gap:8px;
}
.home-info-card-v26 strong{
  color:#f4d7ad;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.home-info-card-v26 span{
  color:#fff;
  font-weight:900;
  line-height:1.45;
  word-break:break-word;
}
.home-premium-v26 .seo-local-v25{
  padding:12px 0 36px;
}
.home-premium-v26 .seo-local-v25 p{
  text-align:center;
  max-width:980px;
  margin:auto;
  border-top:1px solid rgba(224,184,126,.12);
}
@media(max-width:980px){
  .home-contact-grid-v26{
    grid-template-columns:repeat(2,1fr);
  }
  .home-hero-premium-v26{
    padding-top:54px;
  }
}
@media(max-width:720px){
  .home-logo-wrap-v26{
    width:112px;
    height:112px;
  }
  .home-logo-wrap-v26 img{
    width:82px;
    height:82px;
  }
  .home-hero-premium-v26 h1{
    font-size:42px;
    letter-spacing:-1px;
  }
  .home-lead-v26{
    font-size:16px;
  }
  .home-text-card-v26{
    padding:18px;
  }
  .home-contact-grid-v26{
    grid-template-columns:1fr;
  }
  .home-info-card-v26{
    min-height:auto;
  }
}


/* Versão 27: e-mail por Gmail/Outlook e copiar mensagem */
.contact-actions-v27{
  gap:10px;
}
.contact-actions-v27 .btn{
  white-space:nowrap;
}
@media(max-width:720px){
  .contact-actions-v27 .btn{
    width:100%;
  }
}


/* Versão 28: formulário online real */
.online-contact-form-v28{
  display:grid;
  gap:16px;
}
.contact-actions-v28{
  gap:10px;
}
.form-note-small-v28{
  font-size:13px;
  margin:0;
}
.form-note-small-v28 strong{
  color:var(--brand);
}
.thanks-page-v28{
  min-height:calc(100vh - 240px);
  display:flex;
  align-items:center;
}
.thanks-card-v28{
  text-align:center;
  max-width:760px;
  margin:auto;
  padding:42px;
}
.thanks-card-v28 .actions{
  justify-content:center;
  margin-top:24px;
}
@media(max-width:720px){
  .contact-actions-v28 .btn,
  .thanks-card-v28 .btn{
    width:100%;
  }
  .thanks-card-v28{
    padding:26px;
  }
}


/* Versão 29: Admin Configurações do Site */
.site-config-form-v29{
  display:grid;
  gap:18px;
}
.site-config-form-v29 h3{
  margin:8px 0 0;
  color:var(--brand);
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
}
.site-config-form-v29 textarea{
  min-height:96px;
}
.site-config-form-v29 .full textarea[rows="6"]{
  min-height:150px;
}
.site-config-form-v29 label[for="importSiteConfigInput"]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}


/* Versão 30: cadastro completo de produtos e SEO .com.br */
.product-form-v30{
  display:grid;
  gap:16px;
}
.product-form-v30 h4{
  margin:8px 0 0;
  color:var(--brand);
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.product-code-v30{
  color:#f4d7ad;
  font-weight:900;
  font-size:13px;
}
.product-compat-v30{
  background:rgba(224,184,126,.07);
  border:1px solid rgba(224,184,126,.13);
  border-radius:14px;
  padding:10px 12px;
}
.seo-search-v30{
  margin-top:28px;
  border-top:1px solid rgba(224,184,126,.12);
  padding-top:22px;
  color:#cfd7e1;
  line-height:1.75;
}
.seo-search-v30 h2{
  color:var(--brand);
  font-family:Georgia,"Times New Roman",serif;
  margin:0 0 8px;
}


/* Versão 31: páginas legais e aviso de privacidade */
.legal-page-v31 .legal-card-v31{
  max-width:980px;
  margin:auto;
  line-height:1.78;
}
.legal-card-v31 h2{
  color:var(--brand);
  font-family:Georgia,"Times New Roman",serif;
  margin:28px 0 8px;
  font-size:24px;
}
.legal-card-v31 p{
  color:#d4dbe5;
}
.cookie-notice-v31{
  position:fixed;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:80;
  max-width:920px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border:1px solid rgba(224,184,126,.25);
  border-radius:20px;
  background:rgba(13,18,26,.96);
  box-shadow:0 26px 80px rgba(0,0,0,.38);
}
.cookie-notice-v31.hidden{
  display:none;
}
.cookie-notice-v31 strong{
  display:block;
  color:var(--brand);
  margin-bottom:4px;
}
.cookie-notice-v31 span{
  color:#d7dee8;
  font-size:14px;
}
.cookie-actions-v31{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.cookie-actions-v31 a{
  color:#f1d6ad;
  font-weight:900;
}
.cookie-actions-v31 button{
  border:0;
  border-radius:999px;
  padding:10px 16px;
  cursor:pointer;
  font-weight:900;
  color:#20160c;
  background:linear-gradient(135deg,var(--brand),#ffe1a8);
}
@media(max-width:720px){
  .cookie-notice-v31{
    flex-direction:column;
    align-items:flex-start;
  }
  .cookie-actions-v31{
    width:100%;
    justify-content:space-between;
  }
}

.cookie-notice-v31.hidden{display:none!important;}


/* Versão 35: Admin pedidos corrigido */
.admin-order-actions-v35{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.admin-order-actions-v35 .btn{
  padding:8px 10px;
}
.admin-summary-v35{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin:14px 0;
}
.admin-summary-v35 div{
  border:1px solid rgba(224,184,126,.14);
  border-radius:18px;
  padding:14px;
  background:rgba(255,255,255,.035);
}
.admin-summary-v35 strong{
  display:block;
  color:var(--brand);
  margin-bottom:6px;
}
.admin-summary-v35 span{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
@media(max-width:900px){
  .admin-summary-v35{
    grid-template-columns:1fr;
  }
}


/* Versão 36: imagem do produto por caminho */
.image-path-note-v36{
  margin:4px 0 14px;
  color:var(--muted);
  line-height:1.45;
}
.product-image-path-v36{
  display:grid;
  gap:10px;
}
.image-tools-v36{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.product-image-preview-v36{
  align-items:center;
  gap:12px;
  border:1px solid rgba(224,184,126,.16);
  border-radius:16px;
  padding:10px;
  background:rgba(255,255,255,.035);
}
.product-image-preview-v36 img{
  width:82px;
  height:82px;
  object-fit:contain;
  border-radius:12px;
  background:#fff;
  padding:6px;
}
.product-image-preview-v36 span{
  color:var(--muted);
  font-size:13px;
  word-break:break-all;
}
@media(max-width:720px){
  .image-tools-v36 .btn{
    width:100%;
  }
}

/* Versão 37: backup corrigido */
#backupAdmin .btn{
  margin:3px;
}
.backup-actions-v37{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}


/* Versão 38: visual do botão/importação de backup */
.backup-grid-v38{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.backup-card-v38{
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:100%;
}
.backup-icon-v38{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(224,184,126,.22), rgba(224,184,126,.06));
  border:1px solid rgba(224,184,126,.18);
  color:var(--brand);
  font-size:22px;
  font-weight:900;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.backup-upload-v38{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.backup-file-name-v38{
  display:block;
  min-height:46px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(224,184,126,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  line-height:1.35;
  word-break:break-word;
}
.backup-help-v38{
  color:var(--muted);
}
#importDataBtnV37{
  align-self:flex-start;
}
@media(max-width:980px){
  .backup-grid-v38{
    grid-template-columns:1fr;
  }
}


/* Versão 39: preview e anexo real da imagem do produto */
.product-image-preview-v36{
  min-height:104px;
}
.product-image-preview-v36 img{
  box-shadow:0 10px 28px rgba(0,0,0,.22);
}
#clearProductImageBtn{
  border-color:rgba(255,255,255,.16);
}
.image-data-badge-v39{
  color:var(--brand);
}


/* Versão 40: status de salvar/limpar produto */
.product-save-status-v40{
  padding:12px 14px;
  border-radius:14px;
  font-weight:900;
  margin:4px 0 6px;
}
.product-save-status-v40.ok{
  color:#dbffe8;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.22);
}
.product-save-status-v40.error{
  color:#ffe1e1;
  background:rgba(239,68,68,.13);
  border:1px solid rgba(239,68,68,.25);
}


/* v41 base64 oculto */
.path-hint{
  max-width:260px;
  display:inline-block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}


/* Versão 42: mostrar somente a imagem do produto */
.admin-product-cell-v42{
  align-items:center;
}
.admin-product-img-v42{
  width:74px;
  height:74px;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
  padding:6px;
  border:1px solid rgba(224,184,126,.16);
}
#prodImagePreviewPath{
  display:none!important;
}
.product-image-preview-v36{
  justify-content:flex-start;
}
.product-image-preview-v36 img{
  width:120px;
  height:120px;
}


/* Versão 43: pedidos/status sincronizados */
.orders-sync-note-v43{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding:14px;
  margin-bottom:14px;
  border:1px solid rgba(224,184,126,.16);
  border-radius:18px;
  background:rgba(255,255,255,.035);
}
.orders-sync-note-v43 strong{
  color:var(--brand);
}
.orders-sync-note-v43 span{
  color:var(--muted);
  font-size:13px;
  flex:1;
}
.track-head-v43{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.track-head-v43 .status{
  font-size:14px;
  padding:9px 12px;
}


/* Versão 44: Admin produtos compacto e imagem por caminho */
.image-static-note-v44{
  padding:10px 12px;
  border-radius:14px;
  background:rgba(224,184,126,.08);
  border:1px solid rgba(224,184,126,.14);
  color:var(--muted);
  line-height:1.45;
}
.admin-product-row-v44 td{
  vertical-align:top;
}
.admin-product-cell-v44{
  display:flex;
  gap:12px;
  align-items:flex-start;
  min-width:260px;
}
.admin-product-img-v44{
  flex:0 0 58px;
  width:58px!important;
  height:58px!important;
  border-radius:12px;
}
.admin-product-info-v44{
  display:grid;
  gap:4px;
  min-width:0;
  max-width:360px;
}
.admin-product-info-v44 strong{
  font-size:14px;
  line-height:1.25;
}
.admin-product-info-v44 span,
.admin-product-info-v44 small,
.compat-compact-v44{
  color:var(--muted);
  font-size:12px;
  line-height:1.35;
}
.compat-compact-v44{
  display:block;
  max-width:240px;
}
.actions-compact-v44{
  white-space:nowrap;
}
.actions-compact-v44 .btn{
  padding:9px 12px;
  margin:3px;
}
.product-image-preview-v36 img{
  width:120px!important;
  height:120px!important;
  object-fit:contain;
}
#prodImagePreviewPath{
  display:none!important;
}


/* Versão 45: imagem visível na lista de produtos */
.admin-product-row-v45 td{
  vertical-align:top;
}
.admin-product-cell-v45{
  display:grid;
  grid-template-columns:64px minmax(0,1fr);
  gap:12px;
  align-items:start;
  min-width:260px;
}
.product-thumb-frame-v45{
  width:64px;
  height:64px;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(224,184,126,.18);
  display:grid;
  place-items:center;
  overflow:hidden;
  padding:6px;
  box-shadow:0 8px 20px rgba(0,0,0,.16);
}
.admin-product-img-v45{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block!important;
}
.admin-product-img-v45.fallback-loaded-v45{
  opacity:.78;
}
.admin-product-info-v45{
  min-width:0;
  display:grid;
  gap:4px;
}
.admin-product-info-v45 strong{
  font-size:14px;
  line-height:1.25;
}
.admin-product-info-v45 span,
.admin-product-info-v45 small,
.compat-compact-v45{
  color:var(--muted);
  font-size:12px;
  line-height:1.35;
}
.compat-compact-v45{
  display:block;
  max-width:220px;
}
.actions-compact-v45{
  white-space:nowrap;
}
.actions-compact-v45 .btn{
  padding:9px 12px;
  margin:3px;
}


/* Versão 46: aviso para teste offline correto */
.offline-localhost-note-v46{
  margin:12px auto;
  max-width:1180px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(224,184,126,.18);
  background:rgba(224,184,126,.07);
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
.offline-localhost-note-v46 strong{
  color:var(--brand);
}
.offline-localhost-note-v46 code{
  color:#fff;
  background:rgba(0,0,0,.25);
  padding:2px 5px;
  border-radius:6px;
}


/* Versão 47: ajuste card/grid do Admin Produtos */
.admin-grid-products-v47{
  grid-template-columns:minmax(320px,360px) minmax(0,1fr);
  align-items:start;
}
.admin-form-card-v47{
  position:sticky;
  top:14px;
}
.section-head-v47{
  margin-bottom:10px;
}
.section-head-v47 h3{
  margin:0 0 4px;
  color:var(--brand);
}
.section-head-v47 p,
.table-panel-head-v47 p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
.table-panel-v47{
  display:grid;
  gap:10px;
  min-width:0;
}
.table-panel-head-v47{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:2px 2px 0;
}
.table-panel-head-v47 h3{
  margin:0 0 4px;
  color:var(--brand);
}
.product-table-wrap-v47{
  overflow:auto;
  border-radius:20px;
}
#productsAdmin table{
  min-width:880px;
  table-layout:fixed;
}
#productsAdmin thead th{
  position:sticky;
  top:0;
  z-index:2;
  background:#252d3a;
  color:var(--brand);
  box-shadow:0 1px 0 rgba(255,255,255,.05);
}
#productsAdmin th,
#productsAdmin td{
  padding:14px 12px;
}
#productsAdmin th:nth-child(1),
#productsAdmin td:nth-child(1){width:36%}
#productsAdmin th:nth-child(2),
#productsAdmin td:nth-child(2){width:13%}
#productsAdmin th:nth-child(3),
#productsAdmin td:nth-child(3){width:24%}
#productsAdmin th:nth-child(4),
#productsAdmin td:nth-child(4){width:10%}
#productsAdmin th:nth-child(5),
#productsAdmin td:nth-child(5){width:7%}
#productsAdmin th:nth-child(6),
#productsAdmin td:nth-child(6){width:10%}

.admin-product-row-v45 td{
  vertical-align:top;
}
.admin-product-cell-v45{
  grid-template-columns:70px minmax(0,1fr);
  gap:14px;
}
.product-thumb-frame-v45{
  width:70px;
  height:70px;
  border-radius:16px;
}
.admin-product-info-v45{
  gap:5px;
}
.admin-product-info-v45 strong{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  font-size:14px;
  line-height:1.28;
}
.admin-product-info-v45 span{
  display:block;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.admin-product-info-v45 small{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
}
.compat-compact-v45{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:6;
  overflow:hidden;
  max-width:none;
}
.actions-compact-v45{
  display:grid;
  gap:8px;
  min-width:92px;
}
.actions-compact-v45 .btn{
  width:100%;
  margin:0;
  justify-content:center;
}
#productsAdmin .card h4{
  margin-top:16px;
}
#productsAdmin .field textarea{
  min-height:94px;
}

@media (max-width: 1220px){
  .admin-grid-products-v47{
    grid-template-columns:1fr;
  }
  .admin-form-card-v47{
    position:static;
  }
  #productsAdmin table{
    min-width:820px;
  }
}

@media (max-width: 760px){
  .table-panel-head-v47{
    padding:0;
  }
  .admin-product-cell-v45{
    grid-template-columns:58px minmax(0,1fr);
  }
  .product-thumb-frame-v45{
    width:58px;
    height:58px;
  }
}


/* Versão 48: Admin alimenta Loja por link */
.admin-shop-sync-v48{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  padding:12px;
  border:1px solid rgba(224,184,126,.16);
  background:rgba(224,184,126,.07);
  border-radius:18px;
}
.admin-shop-sync-v48 small{
  width:100%;
  color:var(--muted);
  line-height:1.35;
}
.shop-import-status-v48{
  max-width:1180px;
  margin:12px auto;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(34,197,94,.24);
  background:rgba(34,197,94,.11);
  color:#dbffe8;
  font-weight:800;
}
.shop-import-status-v48 strong{
  color:#fff;
}
@media(max-width:720px){
  .admin-shop-sync-v48 .btn{
    width:100%;
  }
}


/* Versão 49: footer mais compacto */
.footer,
.footer-v6{
  margin-top:34px;
  padding:22px 0 10px;
}
.footer-grid,
.footer-grid-v6{
  grid-template-columns:1.08fr .92fr .9fr;
  gap:16px;
  align-items:start;
}
.footer h3,
.footer h4,
.footer-v6 h3,
.footer-v6 h4{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.2;
}
.footer p,
.footer-v6 p{
  font-size:13px;
  line-height:1.58;
  margin:0;
}
.footer a,
.footer-v6 a{
  font-size:13px;
  font-weight:700;
}
.footer small,
.footer-v6 small{
  font-size:12px;
}
.footer-bottom,
.footer-bottom-v6{
  margin-top:14px;
  padding:12px 0 6px;
  font-size:12px;
  line-height:1.45;
  text-align:center;
}
.footer .container,
.footer-v6 .container{
  max-width:1180px;
}
@media (max-width: 980px){
  .footer-grid,
  .footer-grid-v6{
    grid-template-columns:1fr;
    gap:12px;
  }
  .footer,
  .footer-v6{
    padding:20px 0 10px;
  }
}


/* Versão 50: ajustes de render importado */
.compat-line-v50{
  display:block;
  color:var(--muted);
  margin-top:8px;
  font-size:12px;
  line-height:1.35;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}


/* Versão 51: cards/grid maiores na lista de produtos do Admin */
#productsAdmin table{
  min-width: 980px;
}

#productsAdmin th,
#productsAdmin td{
  padding: 18px 14px;
}

#productsAdmin th:nth-child(1),
#productsAdmin td:nth-child(1){width:42%}

#productsAdmin th:nth-child(2),
#productsAdmin td:nth-child(2){width:12%}

#productsAdmin th:nth-child(3),
#productsAdmin td:nth-child(3){width:19%}

#productsAdmin th:nth-child(4),
#productsAdmin td:nth-child(4){width:9%}

#productsAdmin th:nth-child(5),
#productsAdmin td:nth-child(5){width:6%}

#productsAdmin th:nth-child(6),
#productsAdmin td:nth-child(6){width:12%}

.admin-product-cell-v45{
  grid-template-columns: 82px minmax(0,1fr);
  gap: 16px;
}

.product-thumb-frame-v45{
  width: 82px;
  height: 82px;
  border-radius: 18px;
  padding: 8px;
}

.admin-product-info-v45{
  gap: 6px;
}

.admin-product-info-v45 strong{
  font-size: 18px;
  line-height: 1.2;
  -webkit-line-clamp: 2;
}

.admin-product-info-v45 span{
  font-size: 14px;
  line-height: 1.35;
}

.admin-product-info-v45 small{
  font-size: 13px;
  line-height: 1.45;
  -webkit-line-clamp: 3;
}

.compat-compact-v45{
  font-size: 13px;
  line-height: 1.5;
  -webkit-line-clamp: 8;
}

.actions-compact-v45{
  min-width: 108px;
  gap: 10px;
}

.actions-compact-v45 .btn{
  padding: 10px 14px;
  font-size: 14px;
}

#productsAdmin tbody tr{
  min-height: 118px;
}

@media (max-width: 1220px){
  #productsAdmin table{
    min-width: 900px;
  }
  .admin-product-cell-v45{
    grid-template-columns: 72px minmax(0,1fr);
  }
  .product-thumb-frame-v45{
    width: 72px;
    height: 72px;
  }
  .admin-product-info-v45 strong{
    font-size: 16px;
  }
}

@media (max-width: 760px){
  #productsAdmin th,
  #productsAdmin td{
    padding: 14px 12px;
  }
  .admin-product-cell-v45{
    grid-template-columns: 64px minmax(0,1fr);
    gap: 12px;
  }
  .product-thumb-frame-v45{
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }
  .admin-product-info-v45 strong{
    font-size: 15px;
  }
  .admin-product-info-v45 span,
  .admin-product-info-v45 small,
  .compat-compact-v45{
    font-size: 12px;
  }
}


/* Versão 52: rodapé em duas linhas */
.footer-v52{
  margin-top:32px;
  padding:14px 0 12px!important;
  background:#0b0f15!important;
  border-top:1px solid rgba(224,184,126,.14)!important;
}
.footer-compact-v52{
  display:grid;
  gap:8px;
}
.footer-line-v52{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px 16px;
  text-align:center;
  line-height:1.35;
}
.footer-mainline-v52{
  font-size:12.5px;
}
.footer-mainline-v52 strong{
  color:var(--brand);
  font-size:14px;
  white-space:nowrap;
}
.footer-mainline-v52 span{
  color:#d9e2ea;
  white-space:nowrap;
}
.footer-mainline-v52 a{
  color:#fff;
  font-weight:800;
  text-decoration:none;
}
.footer-desc-v52{
  color:#aeb9c6!important;
}
.footer-address-v52{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:8px;
  color:#d8b28c;
  font-size:11.5px;
  gap:6px 12px;
}
.footer-address-v52 span{
  white-space:nowrap;
}
.footer-address-v52 > span:not(:last-child)::after{
  content:"•";
  margin-left:12px;
  color:rgba(216,178,140,.55);
}
@media(max-width:900px){
  .footer-v52{
    padding:16px 0 14px!important;
  }
  .footer-line-v52{
    justify-content:flex-start;
    text-align:left;
  }
  .footer-mainline-v52 span,
  .footer-address-v52 span{
    white-space:normal;
  }
  .footer-address-v52 > span:not(:last-child)::after{
    content:"";
    margin:0;
  }
}


/* Versão 53: SEO mantido no código, sem faixa visível na página */
.seo-search-v30,
.seo-text,
.visible-seo-text,
.bottom-seo-text{
  display:none!important;
}


/* Versão 54: loja com card limpo e modal */
.product-grid{
  align-items:stretch;
}
.product-card-v54{
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.product-card-v54 .product-art-v54{
  height:190px;
  background:linear-gradient(135deg,#f8f5ed,#edf3ef);
  padding:14px;
}
.product-card-v54 .product-art-v54 img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:18px;
  background:#fff;
  padding:10px;
}
.product-card-v54 .product-art-v54 .fallback-icon{
  background:#fff;
  border-radius:18px;
}
.product-body-v54{
  gap:8px;
  padding:14px 16px 16px;
}
.product-title-v54{
  margin:0;
  font-size:19px;
  line-height:1.18;
  min-height:46px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.product-footer-v54{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.product-actions-v54{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.product-actions-v54 .btn{
  min-width:90px;
}
.product-card-v54 .product-meta{
  font-size:12px;
  color:var(--muted);
}
@media(max-width:980px){
  .product-card-v54 .product-art-v54{
    height:170px;
  }
}
@media(max-width:720px){
  .product-title-v54{
    font-size:17px;
    min-height:auto;
  }
  .product-footer-v54{
    flex-direction:column;
    align-items:stretch;
  }
  .product-actions-v54{
    justify-content:stretch;
  }
  .product-actions-v54 .btn{
    flex:1 1 0;
    min-width:0;
  }
}


/* Versão 55: modal, imagem e quantidade */
.product-card-v55 .product-art-v55{
  height:190px;
  background:linear-gradient(135deg,#f8f5ed,#edf3ef);
  padding:14px;
}
.product-card-v55 .product-art-v55 img,
.modal-product-art-v55 img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:18px;
  background:#fff;
  padding:10px;
}
.qty-add-v55{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex-wrap:wrap;
}
.qty-input-v55,
.modal-qty-v55 input{
  width:64px;
  min-height:42px;
  border-radius:14px;
  border:1px solid rgba(224,184,126,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:900;
  text-align:center;
  padding:8px;
}
.modal-product-art-v55{
  height:260px;
  border-radius:20px;
  margin-bottom:16px;
  background:linear-gradient(135deg,#f8f5ed,#edf3ef);
}
.quick-info-v55{
  display:grid;
  gap:8px;
}
.quick-info-v55 p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}
.modal-buy-row-v55{
  display:flex;
  align-items:end;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
}
.modal-qty-v55{
  display:grid;
  gap:6px;
}
.modal-qty-v55 label{
  color:var(--muted);
  font-size:12px;
  font-weight:800;
}
@media(max-width:720px){
  .qty-add-v55{
    justify-content:stretch;
  }
  .qty-add-v55 .btn{
    flex:1 1 auto;
  }
  .modal-buy-row-v55{
    align-items:stretch;
    flex-direction:column;
  }
  .modal-qty-v55 input{
    width:100%;
  }
}


/* Versão 57: imagem salva no cadastro */
.product-art-v55 img,
.modal-product-art-v55 img,
.admin-product-img-v45{
  object-fit:contain!important;
}


/* Versão 58: imagem do modal sem cobrir informações */
#productModal .modal-card{
  width:min(960px, calc(100% - 28px));
  max-height:90vh;
  overflow:hidden;
}
#productModalBody{
  max-height:calc(90vh - 86px);
  overflow:auto;
  padding-right:4px;
}
.modal-product-layout-v58{
  display:grid;
  grid-template-columns:minmax(260px, 42%) minmax(0, 1fr);
  gap:18px;
  align-items:start;
}
.modal-image-col-v58{
  min-width:0;
}
.modal-product-art-v58{
  height:320px!important;
  max-height:42vh;
  margin:0!important;
  border-radius:20px;
  overflow:hidden;
  background:linear-gradient(135deg,#f8f5ed,#edf3ef)!important;
  display:grid;
  place-items:center;
}
.modal-product-art-v58 img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  padding:14px!important;
  background:#fff!important;
  border-radius:18px!important;
}
.modal-info-col-v58{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.quick-info-v58{
  max-height:380px;
  overflow:auto;
  padding-right:6px;
}
.quick-info-v58 p{
  margin:0 0 8px;
  color:var(--muted);
  line-height:1.48;
}
.modal-buy-row-v58{
  position:sticky;
  bottom:0;
  background:rgba(17,24,34,.96);
  backdrop-filter:blur(10px);
  border-top:1px solid rgba(255,255,255,.09);
  padding-top:14px;
  margin-top:0;
}
@media(max-width:820px){
  #productModal .modal-card{
    width:min(94vw, 680px);
  }
  .modal-product-layout-v58{
    grid-template-columns:1fr;
  }
  .modal-product-art-v58{
    height:260px!important;
    max-height:none;
  }
  .quick-info-v58{
    max-height:none;
    overflow:visible;
  }
  .modal-buy-row-v58{
    position:static;
  }
}
@media(max-width:520px){
  .modal-product-art-v58{
    height:220px!important;
  }
}


/* Versão 59: ajuste visual da área de compra no modal */
.modal-buy-row-v55,
.modal-buy-row-v58{
  display:grid!important;
  grid-template-columns:minmax(120px,max-content) 92px minmax(230px,1fr);
  align-items:end!important;
  gap:14px!important;
  width:100%;
  margin-top:16px!important;
  padding:16px!important;
  border-radius:20px;
  background:rgba(12,17,25,.96)!important;
  border:1px solid rgba(224,184,126,.16)!important;
  box-shadow:0 16px 34px rgba(0,0,0,.22);
  overflow:visible!important;
}

.modal-buy-row-v55 .price,
.modal-buy-row-v58 .price{
  margin:0!important;
  padding:0 0 8px!important;
  font-size:25px!important;
  line-height:1!important;
  white-space:nowrap;
  color:var(--brand)!important;
  min-width:118px;
  display:flex;
  align-items:center;
}

.modal-buy-row-v55 .modal-qty-v55,
.modal-buy-row-v58 .modal-qty-v55{
  display:grid!important;
  gap:7px!important;
  min-width:92px;
}

.modal-buy-row-v55 .modal-qty-v55 label,
.modal-buy-row-v58 .modal-qty-v55 label{
  font-size:12px!important;
  line-height:1.1!important;
  margin:0!important;
  color:var(--muted)!important;
  font-weight:900!important;
  text-align:center;
}

.modal-buy-row-v55 .modal-qty-v55 input,
.modal-buy-row-v58 .modal-qty-v55 input{
  width:92px!important;
  height:52px!important;
  min-height:52px!important;
  padding:8px!important;
  border-radius:16px!important;
  font-size:20px!important;
  background:#202735!important;
  color:#fff!important;
  border:1px solid rgba(224,184,126,.18)!important;
  text-align:center!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}

.modal-buy-row-v55 .btn,
.modal-buy-row-v58 .btn{
  height:52px!important;
  min-height:52px!important;
  width:100%;
  justify-content:center;
  font-size:17px!important;
  border-radius:999px!important;
  white-space:nowrap;
}

@media(max-width:760px){
  .modal-buy-row-v55,
  .modal-buy-row-v58{
    grid-template-columns:1fr;
    align-items:stretch!important;
    padding:14px!important;
  }

  .modal-buy-row-v55 .price,
  .modal-buy-row-v58 .price{
    justify-content:center;
    padding:0!important;
    font-size:24px!important;
  }

  .modal-buy-row-v55 .modal-qty-v55,
  .modal-buy-row-v58 .modal-qty-v55{
    min-width:0;
  }

  .modal-buy-row-v55 .modal-qty-v55 input,
  .modal-buy-row-v58 .modal-qty-v55 input{
    width:100%!important;
  }

  .modal-buy-row-v55 .btn,
  .modal-buy-row-v58 .btn{
    width:100%;
  }
}


/* Versão 60: imagem da vitrine */
.product-card-v60 .product-art-v60 img{
  object-fit:contain!important;
  background:#fff!important;
}
.product-card-v60 .product-art-v60{
  background:linear-gradient(135deg,#f8f5ed,#edf3ef)!important;
}


/* Versão 61: imagem cadastrada na vitrine */
.product-art-v60 img,
.product-art-v55 img,
.modal-product-art-v55 img{
  object-fit:contain!important;
  background:#fff!important;
}


/* Versão 62: nome visível no card da vitrine */
.product-card-v62{
  min-height:430px!important;
  display:flex!important;
  flex-direction:column!important;
  overflow:hidden!important;
}

.product-card-v62 .product-art-v60,
.product-card-v62 .product-art-v55{
  height:210px!important;
  min-height:210px!important;
  flex:0 0 auto!important;
}

.product-body-v62{
  display:grid!important;
  grid-template-rows:auto minmax(52px, auto) 1fr!important;
  gap:9px!important;
  padding:14px 16px 16px!important;
  min-height:205px!important;
  flex:1 1 auto!important;
}

.product-meta-v62{
  display:block!important;
  color:var(--muted)!important;
  font-size:12px!important;
  line-height:1.25!important;
  margin:0!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}

.product-title-v62{
  display:-webkit-box!important;
  -webkit-box-orient:vertical!important;
  -webkit-line-clamp:2!important;
  overflow:hidden!important;
  color:#fff!important;
  font-size:20px!important;
  line-height:1.18!important;
  font-weight:900!important;
  margin:0!important;
  min-height:48px!important;
  max-height:52px!important;
  visibility:visible!important;
  opacity:1!important;
}

.product-footer-v62{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:10px!important;
  align-self:end!important;
  margin-top:0!important;
}

.product-price-v62{
  display:block!important;
  color:#fff!important;
  font-size:16px!important;
  line-height:1.2!important;
  margin:0!important;
}

.qty-add-v62{
  display:grid!important;
  grid-template-columns:64px 1fr 1fr!important;
  gap:8px!important;
  align-items:center!important;
  width:100%!important;
}

.qty-input-v62{
  width:64px!important;
  height:44px!important;
  min-height:44px!important;
}

.qty-add-v62 .btn{
  width:100%!important;
  min-width:0!important;
  height:44px!important;
  padding:8px 10px!important;
  justify-content:center!important;
}

@media(max-width:720px){
  .product-card-v62{
    min-height:auto!important;
  }
  .product-card-v62 .product-art-v60,
  .product-card-v62 .product-art-v55{
    height:190px!important;
    min-height:190px!important;
  }
  .product-body-v62{
    min-height:auto!important;
  }
  .qty-add-v62{
    grid-template-columns:64px 1fr 1fr!important;
  }
}


/* Versão 64: mantém o original, sem imagem gigante, com título visível */
.product-card-v64{
  min-height:440px!important;
  display:flex!important;
  flex-direction:column!important;
  overflow:hidden!important;
}
.product-card-v64 .product-art-v60,
.product-card-v64 .product-art-v55{
  height:190px!important;
  min-height:190px!important;
  flex:0 0 auto!important;
}
.product-body-v64{
  display:grid!important;
  grid-template-rows:auto auto auto 1fr!important;
  gap:8px!important;
  padding:12px 14px 14px!important;
  min-height:220px!important;
  flex:1 1 auto!important;
}
.product-meta-v64{
  display:block!important;
  color:var(--muted)!important;
  font-size:12px!important;
  line-height:1.25!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}
.product-title-v64{
  display:-webkit-box!important;
  -webkit-box-orient:vertical!important;
  -webkit-line-clamp:3!important;
  overflow:hidden!important;
  color:#fff!important;
  font-size:16px!important;
  line-height:1.18!important;
  font-weight:900!important;
  margin:0!important;
  min-height:56px!important;
  max-height:58px!important;
  word-break:break-word!important;
}
.product-price-v64{
  display:block!important;
  color:#fff!important;
  font-size:15px!important;
  line-height:1.2!important;
}
.product-actions-v64{
  align-self:end!important;
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:8px!important;
}
.product-actions-row-v64{
  display:grid!important;
  grid-template-columns:62px 1fr!important;
  gap:8px!important;
  align-items:center!important;
}
.qty-input-v64{
  width:62px!important;
  height:42px!important;
  min-height:42px!important;
  text-align:center!important;
  font-size:22px!important;
}
.btn-view-v64,.btn-add-v64{
  width:100%!important;
  min-width:0!important;
  height:42px!important;
  padding:8px 10px!important;
  justify-content:center!important;
}
.btn-add-v64{border-radius:999px!important;}
@media(max-width:720px){
  .product-card-v64{min-height:auto!important;}
  .product-card-v64 .product-art-v60,
  .product-card-v64 .product-art-v55{height:180px!important;min-height:180px!important;}
  .product-body-v64{min-height:auto!important;}
}


/* Versão 65: imagem menor na vitrine, sem cobrir o título */
.product-card-v64,
.product-card-v65{
  min-height:410px!important;
}
.product-card-v64 .product-art-v60,
.product-card-v64 .product-art-v55,
.product-card-v65 .product-art-v60,
.product-card-v65 .product-art-v55{
  height:150px!important;
  min-height:150px!important;
  padding:10px!important;
}
.product-card-v64 .product-art-v60 img,
.product-card-v64 .product-art-v55 img,
.product-card-v65 .product-art-v60 img,
.product-card-v65 .product-art-v55 img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
}
.product-body-v64,
.product-body-v65{
  min-height:230px!important;
  padding:14px 14px 14px!important;
  gap:10px!important;
}
.product-title-v64,
.product-title-v65{
  -webkit-line-clamp:2!important;
  min-height:40px!important;
  max-height:42px!important;
  font-size:15px!important;
  line-height:1.2!important;
}
@media(max-width:720px){
  .product-card-v64 .product-art-v60,
  .product-card-v64 .product-art-v55,
  .product-card-v65 .product-art-v60,
  .product-card-v65 .product-art-v55{
    height:140px!important;
    min-height:140px!important;
  }
}


/* Versão 67: volta grid original e card limpo */
.product-grid,
#productGrid{
  display:grid!important;
  grid-template-columns:repeat(3, minmax(0, 1fr))!important;
  gap:18px!important;
  align-items:start!important;
}

.card-clean-v67{
  display:flex!important;
  flex-direction:column!important;
  overflow:hidden!important;
  min-height:410px!important;
  border-radius:0!important;
  background:#18212d!important;
  border:1px solid rgba(224,184,126,.16)!important;
}

/* imagem em área separada, controlada e sem invadir texto */
.card-clean-v67 .card-image-v67{
  height:155px!important;
  min-height:155px!important;
  overflow:hidden!important;
  background:#f8f5ed!important;
}

.card-clean-v67 .card-image-v67 > .product-art,
.card-clean-v67 .card-image-v67 > .product-art-img,
.card-clean-v67 .card-image-v67 > .product-art-v55,
.card-clean-v67 .card-image-v67 > .product-art-v60{
  height:155px!important;
  min-height:155px!important;
  max-height:155px!important;
  padding:10px!important;
  overflow:hidden!important;
  border-radius:0!important;
}

.card-clean-v67 .card-image-v67 img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  display:block!important;
  border-radius:14px!important;
  background:#fff!important;
  padding:8px!important;
}

.card-info-v67{
  display:grid!important;
  grid-template-rows:auto auto auto 1fr!important;
  gap:8px!important;
  padding:13px 14px 14px!important;
  min-height:255px!important;
  flex:1!important;
}

.card-meta-v67{
  color:var(--muted)!important;
  font-size:12px!important;
  line-height:1.25!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}

.card-title-v67{
  display:-webkit-box!important;
  -webkit-line-clamp:2!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
  color:#fff!important;
  font-size:17px!important;
  line-height:1.22!important;
  font-weight:900!important;
  margin:0!important;
  min-height:42px!important;
  max-height:44px!important;
  word-break:break-word!important;
}

.card-price-v67{
  display:block!important;
  color:#fff!important;
  font-size:16px!important;
  line-height:1.2!important;
}

.card-actions-v67{
  display:grid!important;
  gap:9px!important;
  align-self:end!important;
}

.card-actions-top-v67{
  display:grid!important;
  grid-template-columns:68px 1fr!important;
  gap:9px!important;
}

.card-qty-v67{
  width:68px!important;
  height:44px!important;
  min-height:44px!important;
  border-radius:16px!important;
  text-align:center!important;
  font-size:22px!important;
  font-weight:900!important;
  background:#202735!important;
  color:#fff!important;
  border:1px solid rgba(224,184,126,.18)!important;
}

.card-actions-v67 .btn{
  height:44px!important;
  min-height:44px!important;
  width:100%!important;
  min-width:0!important;
  justify-content:center!important;
  padding:8px 12px!important;
  font-size:16px!important;
}

.card-add-v67{
  border-radius:999px!important;
}

@media(max-width:1100px){
  .product-grid,
  #productGrid{
    grid-template-columns:repeat(2, minmax(0, 1fr))!important;
  }
}

@media(max-width:720px){
  .product-grid,
  #productGrid{
    grid-template-columns:1fr!important;
  }

  .card-clean-v67{
    min-height:auto!important;
  }

  .card-clean-v67 .card-image-v67,
  .card-clean-v67 .card-image-v67 > .product-art,
  .card-clean-v67 .card-image-v67 > .product-art-img,
  .card-clean-v67 .card-image-v67 > .product-art-v55,
  .card-clean-v67 .card-image-v67 > .product-art-v60{
    height:150px!important;
    min-height:150px!important;
  }
}


/* Versão 68: remove repetição de categoria abaixo da imagem e aumenta área da foto */
.card-clean-v67{
  min-height:430px!important;
}
.card-clean-v67 .card-image-v67{
  height:185px!important;
  min-height:185px!important;
}
.card-clean-v67 .card-image-v67 > .product-art,
.card-clean-v67 .card-image-v67 > .product-art-img,
.card-clean-v67 .card-image-v67 > .product-art-v55,
.card-clean-v67 .card-image-v67 > .product-art-v60{
  height:185px!important;
  min-height:185px!important;
  max-height:185px!important;
  padding:10px!important;
}
.card-clean-v67 .card-image-v67 img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
}
.card-info-v67{
  grid-template-rows:auto auto 1fr!important;
  min-height:205px!important;
  gap:10px!important;
}
.card-meta-v67{
  display:none!important;
}
.card-title-v67{
  min-height:46px!important;
  max-height:46px!important;
}
@media(max-width:720px){
  .card-clean-v67 .card-image-v67,
  .card-clean-v67 .card-image-v67 > .product-art,
  .card-clean-v67 .card-image-v67 > .product-art-img,
  .card-clean-v67 .card-image-v67 > .product-art-v55,
  .card-clean-v67 .card-image-v67 > .product-art-v60{
    height:180px!important;
    min-height:180px!important;
    max-height:180px!important;
  }
  .card-info-v67{
    min-height:200px!important;
  }
}


/* Versão 69: categorias visíveis e clicáveis */
#categoryFilters,
.category-filters{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:8px!important;
  margin-top:8px!important;
}

.category-chip-v69,
#categoryFilters button,
.category-filters button{
  appearance:none;
  border:1px solid rgba(224,184,126,.18)!important;
  background:rgba(255,255,255,.045)!important;
  color:#fff!important;
  border-radius:999px!important;
  padding:9px 12px!important;
  font-size:12px!important;
  font-weight:900!important;
  cursor:pointer!important;
  transition:.18s ease!important;
}

.category-chip-v69:hover,
#categoryFilters button:hover,
.category-filters button:hover{
  transform:translateY(-1px);
  border-color:rgba(224,184,126,.42)!important;
}

.category-chip-v69.active,
#categoryFilters button.active,
.category-filters button.active{
  background:linear-gradient(135deg,var(--brand),var(--brand-2))!important;
  color:#10151d!important;
  border-color:transparent!important;
}

.filters label{
  display:block!important;
  color:var(--muted)!important;
  font-weight:900!important;
  margin:12px 0 6px!important;
}


/* Versão 70: remove mensagem verde e estabiliza menu Loja */
.shop-import-status-v48{
  display:none!important;
}

.dropdown-menu{
  will-change:auto!important;
}

.dropdown-menu.menu-ready-v70{
  min-height:auto!important;
}

.nav-dropdown .dropdown-menu a{
  white-space:nowrap;
}


/* Versão 71: carrinho corrigido */
.cart-line-v71{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.cart-line-v71 small{
  display:block;
  color:var(--muted);
  margin-top:4px;
}
.cart-line-actions-v71{
  grid-column:1 / -1;
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}
.cart-line-actions-v71 input{
  width:64px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(224,184,126,.18);
  background:#202735;
  color:#fff;
  font-weight:900;
  text-align:center;
}
.cart-line-actions-v71 .btn{
  padding:8px 10px;
}


/* Versão 72: categorias sem quebrar o layout da vitrine */
.category-chip-v72{
  appearance:none;
  border:1px solid rgba(224,184,126,.18)!important;
  background:rgba(255,255,255,.045)!important;
  color:#fff!important;
  border-radius:999px!important;
  padding:9px 12px!important;
  font-size:12px!important;
  font-weight:900!important;
  cursor:pointer!important;
}

.category-chip-v72.active{
  background:linear-gradient(135deg,var(--brand),var(--brand-2))!important;
  color:#10151d!important;
  border-color:transparent!important;
}

/* trava o grid para categoria não trocar o modelo visual */
#productGrid.product-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr))!important;
}

@media(max-width:1100px){
  #productGrid.product-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr))!important;
  }
}

@media(max-width:720px){
  #productGrid.product-grid{
    grid-template-columns:1fr!important;
  }
}


/* Versão 73: Todos e categorias usam o mesmo card */
.card-clean-v73{
  min-height:390px!important;
}

.card-image-v73{
  height:185px!important;
  min-height:185px!important;
}

.card-image-v73 > .product-art,
.card-image-v73 > .product-art-img,
.card-image-v73 > .product-art-v55,
.card-image-v73 > .product-art-v60{
  height:185px!important;
  min-height:185px!important;
  max-height:185px!important;
}

.card-info-v73{
  display:grid!important;
  grid-template-rows:auto auto 1fr!important;
  gap:10px!important;
  min-height:195px!important;
}

.card-title-v73{
  display:-webkit-box!important;
  -webkit-box-orient:vertical!important;
  -webkit-line-clamp:2!important;
  overflow:hidden!important;
  color:#fff!important;
  font-size:17px!important;
  line-height:1.22!important;
  font-weight:900!important;
  min-height:42px!important;
  max-height:44px!important;
  margin:0!important;
  visibility:visible!important;
  opacity:1!important;
}

.card-price-v73{
  color:#fff!important;
  font-size:16px!important;
  display:block!important;
}

.card-actions-v73{
  display:grid!important;
  gap:9px!important;
  align-self:end!important;
}

.card-actions-top-v73{
  display:grid!important;
  grid-template-columns:68px 1fr!important;
  gap:9px!important;
}

.card-qty-v73{
  width:68px!important;
  height:44px!important;
  text-align:center!important;
}

.card-add-v73{
  width:100%!important;
  border-radius:999px!important;
}

.category-chip-v73.active{
  background:linear-gradient(135deg,var(--brand),var(--brand-2))!important;
  color:#10151d!important;
}

/* Versão 74: status Firebase online */
.firebase-status-v74{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:9999;
  max-width:760px;
  margin:auto;
  padding:12px 16px;
  border-radius:16px;
  font-weight:800;
  text-align:center;
  background:#102014;
  border:1px solid rgba(70,255,150,.35);
  color:#d8ffe7;
  box-shadow:0 18px 60px rgba(0,0,0,.35);
}
.firebase-status-v74.error{
  background:#2b1010;
  border-color:rgba(255,90,90,.45);
  color:#ffe0e0;
}
.firebase-online-note-v74,
.firebase-admin-sync-v74{
  border:1px solid rgba(212,175,55,.30);
  background:linear-gradient(135deg, rgba(212,175,55,.10), rgba(255,255,255,.03));
  color:var(--text);
}
.firebase-admin-sync-v74 strong{
  display:block;
  color:var(--brand);
  margin-bottom:4px;
}
.firebase-admin-sync-v74 small{
  display:block;
  color:var(--muted);
}

/* Versão 75: carrinho vazio e ações corrigidas */
.cart-empty-v75{
  display:grid;
  gap:10px;
  text-align:center;
  padding:28px 16px;
  border:1px dashed var(--line);
  border-radius:18px;
  background:#fbfaf7;
}
.cart-empty-v75 strong{
  color:var(--brand);
  font-size:20px;
}
.cart-empty-v75 p{
  margin:0;
  color:var(--muted);
}
.cart-line-v75{
  align-items:center;
}
.cart-item-info-v75 small{
  display:block;
  margin-top:4px;
  color:var(--muted);
}

/* Versão 77: interface limpa e vitrine estável */
.firebase-status-v74:not(.error),
.firebase-online-note-v74{
  display:none !important;
}
.card-clean-v77 .product-art-v77 img{
  backface-visibility:hidden;
  transform:translateZ(0);
}
.cart-empty-v77{
  display:grid;
  gap:10px;
  text-align:center;
  padding:28px 16px;
  border:1px dashed var(--line);
  border-radius:18px;
  background:#fbfaf7;
}
.cart-empty-v77 strong{
  color:var(--brand);
  font-size:20px;
}
.cart-empty-v77 p{
  margin:0;
  color:var(--muted);
}

/* Versão 78: menu Loja simples e estável */
.nav-dropdown:has(.dropdown-menu),
.dropdown-menu{
  display:none;
}
.loja-menu-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.loja-menu-link.active{
  color:var(--brand);
  font-weight:800;
}

/* Versão 79: scripts limpos e interface estável */
.shop-import-status-v48,
.firebase-status-v74,
.firebase-online-note-v74{
  display:none !important;
}
.card-clean-v79 .product-art-v79 img{
  backface-visibility:hidden;
  transform:translateZ(0);
}
.modal-product-grid-v79{
  display:grid;
  grid-template-columns:minmax(180px, 260px) 1fr;
  gap:18px;
  align-items:start;
}
.cart-empty-v79{
  display:grid;
  gap:10px;
  text-align:center;
  padding:28px 16px;
  border:1px dashed var(--line);
  border-radius:18px;
  background:#fbfaf7;
}
.cart-empty-v79 strong{
  color:var(--brand);
  font-size:20px;
}
.cart-empty-v79 p{
  margin:0;
  color:var(--muted);
}
.cart-item-info-v79 small{
  display:block;
  color:var(--muted);
  margin-top:4px;
}
.admin-product-row-v79{
  display:flex;
  gap:10px;
  align-items:center;
}
.admin-product-row-v79 img{
  width:48px;
  height:48px;
  object-fit:contain;
  border-radius:12px;
  background:#faf7ed;
  border:1px solid var(--line);
}
.admin-product-row-v79 small{
  display:block;
  color:var(--muted);
}
.loja-menu-link{
  display:inline-flex;
  align-items:center;
}
.loja-menu-link.active{
  color:var(--brand);
  font-weight:800;
}
@media(max-width:760px){
  .modal-product-grid-v79{grid-template-columns:1fr}
}

/* Versão 80: imagem de produto mais rápida e sem salto visual */
.product-art-img,
.product-art-v79{
  background:linear-gradient(135deg, #fbf7ea, #ffffff);
  min-height:150px;
}
.product-art-img img{
  opacity:1;
  transition:none !important;
  will-change:auto;
}
.card-clean-v79 .product-art-v79 img{
  min-height:120px;
}

/* Versão 82: Firebase Authentication no Admin */
.admin-password-box-v82{
  margin:12px 0 18px;
  padding:14px;
  border:1px solid rgba(212,175,55,.25);
  border-radius:18px;
  background:rgba(255,255,255,.04);
}
.admin-password-box-v82 summary{
  cursor:pointer;
  color:var(--brand);
  font-weight:900;
}
.admin-password-box-v82 form{
  margin-top:14px;
}
.admin-auth-msg-v82{
  margin:10px 0 0;
  font-weight:900;
  color:#ff8d8d;
}
.admin-auth-msg-v82.ok{
  color:#32d583;
}

/* Versão 83: Loja abre estabilizada, sem piscar imagens */
#productGrid.shop-grid-loading-v83{
  min-height:360px;
}
#productGrid.shop-grid-loading-v83 > .product-card{
  visibility:hidden;
}
.shop-loading-v83{
  width:100%;
  min-height:320px;
  display:grid;
  place-items:center;
  text-align:center;
  gap:8px;
  padding:34px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(135deg,#fbf7ea,#ffffff);
  color:var(--muted);
}
.shop-loading-v83 strong{
  color:var(--brand);
  font-size:20px;
}
.shop-loading-v83 span{
  display:block;
}
#productGrid.shop-grid-ready-v83 > .product-card{
  visibility:visible;
}
.product-art-img,
.product-art-v79{
  contain:layout paint;
}
.product-art-img img{
  transform:translateZ(0);
  backface-visibility:hidden;
  transition:none !important;
}

/* Versão 84: login Admin corrigido */
#clearAdminSessionBtn{
  font-size:14px;
}
