:root{
  --bg:#0b0b0b; --panel:#151515; --line:#2a2a2a; --orange:#f39a08;
  --cream:#f2eadf; --muted:#a7a7a7; --danger:#d95757;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:var(--bg);color:white}
button,input,select,textarea{font:inherit} button{cursor:pointer}
.topbar{position:sticky;top:0;z-index:20;display:flex;justify-content:space-between;align-items:center;padding:18px 5vw;background:rgba(10,10,10,.95);border-bottom:1px solid #222}
.brand{font-size:28px;font-weight:900;letter-spacing:4px}.brand span{color:var(--orange);font-size:15px;display:block;letter-spacing:7px}
.topbar small{color:#aaa;letter-spacing:2px;text-transform:uppercase}
.cart-btn{background:var(--orange);border:0;border-radius:14px;padding:12px 16px;font-size:20px;font-weight:800}
main{max-width:1180px;margin:auto;padding:0 24px}
.hero{margin:28px 0 50px;min-height:440px;border:1px solid #232323;border-radius:24px;overflow:hidden;background:linear-gradient(120deg,#111 0%,#111 48%,#000 100%);display:grid;grid-template-columns:1fr 1fr}
.hero-copy{padding:55px;align-self:center}.hero h1{font-size:58px;line-height:.95;margin:12px 0 18px;text-transform:uppercase;max-width:600px}
.hero p{color:#c6c6c6;font-size:18px;line-height:1.6;max-width:500px}.hero img{width:100%;height:100%;object-fit:cover;object-position:center}
.eyebrow{color:var(--orange);font-weight:900;letter-spacing:2px;font-size:13px}
.cta,.primary{display:inline-block;background:var(--orange);color:#111;border:0;border-radius:12px;padding:15px 22px;font-weight:900;text-decoration:none}
.secondary{border:1px solid #444;background:#191919;color:white;border-radius:12px;padding:14px 20px;font-weight:800}
.section{padding-bottom:60px}.section-head{display:flex;justify-content:space-between;gap:20px;align-items:end;margin-bottom:22px}
.section h2{font-size:38px;margin:7px 0}.chips{display:flex;gap:8px;flex-wrap:wrap}
.chip{border:1px solid #333;background:#111;color:#bbb;padding:10px 16px;border-radius:999px}.chip.active{border-color:var(--orange);color:var(--orange)}
.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.card{position:relative;background:linear-gradient(180deg,#161616,#101010);border:1px solid #2a2a2a;border-radius:20px;padding:22px;display:flex;flex-direction:column;min-height:330px;overflow:hidden}
.product-img{width:100%;height:190px;object-fit:cover;border-radius:13px;margin-bottom:14px}
.product-placeholder{height:150px;display:grid;place-items:center;font-size:80px;background:#101010;border:1px dashed #333;border-radius:13px;margin-bottom:14px}
.card .num{display:inline-flex;background:var(--orange);color:#111;font-weight:900;border-radius:10px;padding:7px 10px;width:max-content}
.card h3{font-size:29px;margin:14px 0 5px}.bread{color:var(--orange);font-size:13px;font-weight:900;text-transform:uppercase}
.desc{color:#c2c2c2;line-height:1.55;min-height:70px}.price{font-size:32px;color:var(--orange);font-weight:900;margin:10px 0 18px}
.card button{margin-top:auto;border:0;border-radius:11px;background:var(--orange);padding:13px;font-weight:900}
.empty-card{grid-column:1/-1;border:1px dashed #333;border-radius:16px;padding:30px;color:#999;text-align:center}
.drawer{position:fixed;z-index:40;top:0;right:-470px;width:min(440px,100%);height:100%;background:#111;border-left:1px solid #333;padding:24px;transition:.25s;overflow:auto}.drawer.open{right:0}
.overlay{display:none;position:fixed;z-index:30;inset:0;background:rgba(0,0,0,.65)}.overlay.show{display:block}
.drawer-head{display:flex;justify-content:space-between;align-items:center}.drawer-head button,.dialog-head button{background:none;color:white;border:0;font-size:22px}
.cart-item{padding:14px 0;border-bottom:1px solid #292929}.cart-row{display:flex;justify-content:space-between;gap:16px}.qty{display:flex;gap:7px;align-items:center;margin-top:8px}.qty button{border:1px solid #444;background:#191919;color:white;border-radius:7px;width:30px;height:30px}
.totals{margin:24px 0}.totals div{display:flex;justify-content:space-between;padding:7px 0;color:#bbb}.totals .grand{font-size:22px;color:white;border-top:1px solid #333;margin-top:10px;padding-top:14px}
.wide{width:100%}
dialog{width:min(600px,94vw);border:1px solid #333;background:#121212;color:white;border-radius:20px;padding:0}dialog::backdrop{background:rgba(0,0,0,.72)}
dialog form{padding:25px}.dialog-head{display:flex;justify-content:space-between;align-items:start}
label{display:block;color:#d2d2d2;margin:15px 0 6px;font-size:14px}
input,select,textarea{width:100%;background:#0d0d0d;color:white;border:1px solid #393939;border-radius:10px;padding:13px;margin-top:7px}
.two,.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}.two label{background:#181818;border:1px solid #333;border-radius:10px;padding:12px}.two input{width:auto;margin:0 6px 0 0}
.success{text-align:center;padding:35px}.success-icon{width:74px;height:74px;border-radius:50%;display:grid;place-items:center;background:var(--orange);color:#111;font-size:40px;font-weight:900;margin:0 auto}
footer{border-top:1px solid #222;padding:25px 5vw;display:flex;justify-content:space-between;color:#999}footer a{color:var(--orange)}

.admin{max-width:1100px;margin:auto;padding:34px 20px}.admin-head{display:flex;justify-content:space-between;align-items:center}
.admin-tabs{display:flex;gap:10px;border-bottom:1px solid #292929;margin:22px 0}.tab{background:none;border:0;color:#999;padding:13px 18px;border-bottom:3px solid transparent;font-weight:900}.tab.active{color:var(--orange);border-color:var(--orange)}
.tab-panel{display:none}.tab-panel.active{display:block}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:15px;margin:25px 0}.stat{border:1px solid #2d2d2d;background:#131313;border-radius:15px;padding:20px}.stat span{color:#999}.stat strong{font-size:31px;display:block;margin-top:7px}
.order{border:1px solid #2e2e2e;background:#131313;border-radius:16px;padding:18px;margin:13px 0}.order-top{display:flex;justify-content:space-between;gap:15px}.order small{color:#aaa}.status{color:var(--orange);font-weight:900}
.actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px}.actions button{border:1px solid #444;background:#1b1b1b;color:white;border-radius:9px;padding:9px 11px}.actions button:hover{border-color:var(--orange)}
.actions .danger,.danger{border-color:#653131;color:#ff8e8e}.ghost{background:transparent}
.products-toolbar{display:flex;justify-content:space-between;gap:20px;align-items:center;margin:25px 0}.products-toolbar h2{font-size:38px;margin:6px 0}.products-toolbar p{color:#999}
.admin-products{display:grid;gap:14px}.admin-product{display:grid;grid-template-columns:150px 1fr;gap:18px;border:1px solid #2d2d2d;background:#131313;border-radius:16px;padding:15px}
.admin-product-media img,.admin-product-placeholder{width:150px;height:150px;border-radius:12px;object-fit:cover}.admin-product-placeholder{display:grid;place-items:center;background:#0e0e0e;font-size:55px;border:1px dashed #333}
.admin-product-top{display:flex;justify-content:space-between;gap:16px}.admin-product h3{font-size:24px;margin:4px 0}.admin-product p{color:#bbb}.admin-product-top strong{font-size:24px;color:var(--orange)}
.product-category{font-size:11px;color:var(--orange);font-weight:900;text-transform:uppercase;letter-spacing:1px}
.availability{font-size:13px;font-weight:900}.availability.on{color:#77c986}.availability.off{color:#e67676}
.switch-row{display:flex;gap:10px;align-items:center;background:#171717;border:1px solid #333;border-radius:11px;padding:12px}.switch-row input{width:auto;margin:0}
.dialog-actions{display:flex;justify-content:flex-end;gap:10px;margin-top:20px}
.image-preview-wrap{display:none;align-items:center;gap:13px;margin-top:10px}.image-preview-wrap img{width:120px;height:90px;object-fit:cover;border-radius:10px}
@media(max-width:800px){
 .hero{grid-template-columns:1fr}.hero img{max-height:360px}.hero-copy{padding:32px}.hero h1{font-size:43px}
 .grid{grid-template-columns:1fr}.section-head,.products-toolbar{align-items:start;flex-direction:column}.stats{grid-template-columns:1fr}
 .admin-product{grid-template-columns:1fr}.admin-product-media img,.admin-product-placeholder{width:100%;height:210px}
 .form-grid,.two{grid-template-columns:1fr}
}


/* ===== HERO APROVADO SR. MAIA ===== */
.hero-approved{
  min-height:820px;
  margin:28px 0 50px;
  border:1px solid #2b210f;
  border-radius:24px;
  overflow:hidden;
  display:grid;
  place-items:center;
  background:
    linear-gradient(rgba(0,0,0,.28),rgba(0,0,0,.58)),
    url('hero-approved.png') center/cover no-repeat;
}
.hero-overlay{
  width:100%;
  min-height:820px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:50px 24px;
  background:radial-gradient(circle at center,rgba(0,0,0,.08),rgba(0,0,0,.62) 72%);
}
.logo-emblem{
  width:210px;
  height:210px;
  border:4px solid var(--orange);
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:115px;
  filter:drop-shadow(0 0 18px rgba(243,154,8,.35));
}
.hero-logo-text{
  color:var(--orange);
  font-size:58px;
  font-weight:900;
  letter-spacing:12px;
  margin-top:10px;
}
.hero-subbrand{
  color:var(--orange);
  font-weight:900;
  letter-spacing:6px;
  font-size:22px;
}
.hero-tag{
  color:var(--orange);
  letter-spacing:3px;
  font-size:11px;
  margin:8px 0 30px;
}
.hero-approved .eyebrow{
  font-size:18px;
  color:var(--cream);
  margin-bottom:10px;
}
.hero-approved h1{
  font-size:60px;
  line-height:1;
  margin:0 0 15px;
  text-transform:none;
  max-width:850px;
}
.hero-approved p{
  color:#f1f1f1;
  font-size:19px;
  max-width:760px;
  margin:0 0 26px;
}
.hero-cta{
  display:inline-block;
  background:var(--orange);
  color:#111;
  border-radius:14px;
  padding:17px 30px;
  font-weight:900;
  text-decoration:none;
  font-size:19px;
  box-shadow:0 0 26px rgba(243,154,8,.25);
}
.scroll-cue{
  margin-top:20px;
  font-size:44px;
  color:var(--orange);
}
@media(max-width:800px){
  .hero-approved,.hero-overlay{min-height:700px}
  .logo-emblem{width:150px;height:150px;font-size:80px}
  .hero-logo-text{font-size:36px;letter-spacing:7px}
  .hero-subbrand{font-size:17px}
  .hero-approved h1{font-size:42px}
  .hero-approved p{font-size:16px}
}

/* CORREÇÃO FINAL DA CAPA — composição aprovada sem sobreposição */
.hero-final{
  position:relative;
  width:100%;
  max-width:1138px;
  margin:24px auto 50px;
  border-radius:22px;
  overflow:hidden;
  background:#050505;
}
.hero-final img{
  display:block;
  width:100%;
  height:auto;
}
.hero-click{
  position:absolute;
  left:30.5%;
  top:79.5%;
  width:39%;
  height:10%;
  border-radius:18px;
  cursor:pointer;
}
@media(max-width:700px){
  .hero-final{margin-top:12px;border-radius:14px}
  .hero-click{left:29%;top:79%;width:42%;height:11%}
}


/* ===== TAXA DE ENTREGA POR DISTÂNCIA ===== */
.delivery-distance-box{
  margin-top:14px;
  padding:14px;
  border:1px solid #3a2a10;
  background:#14100a;
  border-radius:12px;
}
.delivery-distance-box small{
  display:block;
  color:#aaa;
  line-height:1.4;
  margin-top:7px;
}
.fee-preview{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid #3a2a10;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.fee-preview strong{
  color:var(--orange);
  font-size:18px;
}


/* ===== CEP + ROTA AUTOMÁTICA ===== */
.delivery-status-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
}
.delivery-status-row strong{display:block;margin-bottom:4px}
.route-status{
  white-space:nowrap;
  font-size:12px;
  font-weight:900;
  border:1px solid #444;
  border-radius:999px;
  padding:7px 10px;
  color:#bbb;
}
.route-status.ok{color:#7fd08b;border-color:#315c37}
.route-status.error{color:#ff8e8e;border-color:#6b3333}
.route-status.loading{color:var(--orange);border-color:#6a4712}
.route-result{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin:14px 0;
}
.route-result>div{
  background:#0d0d0d;
  border:1px solid #322813;
  border-radius:10px;
  padding:12px;
}
.route-result span{
  display:block;
  color:#999;
  font-size:12px;
  margin-bottom:5px;
}
.route-result strong{
  color:var(--orange);
  font-size:19px;
}
#street[readonly],#neighborhood[readonly],#cityState[readonly]{
  color:#ddd;
  background:#111;
}
@media(max-width:600px){
  .delivery-status-row{flex-direction:column}
  .route-result{grid-template-columns:1fr}
}


/* ===== LOGIN E PAINEL ONLINE ===== */
.login-screen{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:24px;
  background:
    radial-gradient(circle at 50% 20%,rgba(243,154,8,.13),transparent 30%),
    #080808;
}
.login-card{
  width:min(440px,100%);
  background:#121212;
  border:1px solid #33250e;
  border-radius:22px;
  padding:30px;
  box-shadow:0 24px 70px rgba(0,0,0,.45);
}
.login-card h1{margin:8px 0 7px;font-size:31px}
.login-card p{color:#999;margin:0 0 20px}
.login-logo{
  width:78px;height:78px;border:2px solid var(--orange);border-radius:50%;
  display:grid;place-items:center;font-size:39px;margin-bottom:18px;
}
.login-error{min-height:22px;color:#ff8e8e;font-size:13px;margin:9px 0}
.back-store{display:block;text-align:center;margin-top:17px;color:#999;text-decoration:none}
.admin-head-actions{display:flex;gap:10px;align-items:center}
.orders-toolbar{display:flex;justify-content:space-between;align-items:center;gap:12px;margin:18px 0;color:#999}
@media(max-width:700px){
  .admin-head{align-items:flex-start;gap:14px;flex-direction:column}
  .admin-head-actions{width:100%;flex-wrap:wrap}
}

.uber-flash-box{
  margin-top:14px;padding:16px;border:1px solid #3a2a10;background:#14100a;border-radius:12px;
}
.uber-flash-box>strong{display:block;color:var(--orange);font-size:18px;margin-bottom:6px}
.uber-flash-box>p{color:#aaa;font-size:13px;line-height:1.5;margin:0 0 12px}
.uber-warning{display:flex;flex-direction:column;gap:5px;padding:12px 14px;border-radius:10px;background:#0d0d0d;border:1px solid #4a3514}
.uber-warning strong{color:var(--orange)}
.uber-warning span{color:#ddd;font-size:13px;line-height:1.45}

.store-status-banner{padding:14px 18px;border-radius:13px;margin-bottom:20px;font-weight:800;display:flex;gap:10px;align-items:center}
.store-status-banner strong{margin-left:auto}.store-status-banner.open{background:#102116;border:1px solid #285b35;color:#b9e8c3}
.store-status-banner.closed{background:#261313;border:1px solid #683333;color:#f0b4b4}.card.sold-out{opacity:.58}.card button:disabled{background:#444;color:#999;cursor:not-allowed}
.meat-info,.meat-badge{display:inline-block;color:#d7a769;font-weight:800;margin:5px 0 8px}
.store-closed-overlay{position:fixed;inset:0;z-index:28;background:rgba(0,0,0,.80);display:grid;place-items:center;padding:20px}
.store-closed-overlay[hidden]{display:none}.store-closed-card{max-width:500px;text-align:center;background:#111;border:1px solid #5e3510;border-radius:22px;padding:35px;box-shadow:0 25px 80px #000}
.store-closed-card .closed-icon{font-size:66px}.store-closed-card h2{font-size:29px;margin:12px 0;color:var(--orange)}.store-closed-card p{color:#ccc}
.stock-control{display:grid;grid-template-columns:1fr auto;gap:18px;align-items:center;background:#121212;border:1px solid #35250c;border-radius:18px;padding:20px;margin:22px 0}
.stock-control h2{margin:5px 0}.stock-control p{color:#999;margin:0}.stock-edit{display:flex;gap:8px;align-items:center}.stock-edit input{width:130px;margin:0}
.stock-status-card{grid-column:1/-1;border-radius:12px;padding:13px 15px;display:flex;justify-content:space-between}.stock-status-card.open{background:#102116;color:#b9e8c3;border:1px solid #285b35}
.stock-status-card.closed{background:#261313;color:#f0b4b4;border:1px solid #683333}.field-help{display:block;color:#999;margin-top:6px}
@media(max-width:700px){.stock-control{grid-template-columns:1fr}.stock-edit{flex-direction:column;align-items:stretch}.stock-edit input{width:100%}.stock-status-card{flex-direction:column;gap:5px}}

/* Correção da gestão online de produtos */
.admin-product .actions button:first-child{
  border-color:#6a4712;
}

/* ===== HERO DINÂMICO / CARROSSEL ===== */
.dynamic-hero{
  max-width:1180px;
  margin:24px auto 45px;
  display:grid;
  grid-template-columns:250px 1fr;
  gap:18px;
  align-items:stretch;
}
.hero-brand-panel{
  min-height:430px;
  border:1px solid #34250c;
  background:
    radial-gradient(circle at 50% 28%,rgba(243,154,8,.12),transparent 30%),
    linear-gradient(180deg,#121212,#090909);
  border-radius:22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:26px;
  text-align:center;
}
.brand-emblem{
  width:118px;height:118px;border:3px solid var(--orange);border-radius:50%;
  display:grid;place-items:center;font-size:62px;margin-bottom:18px;
  box-shadow:0 0 30px rgba(243,154,8,.13);
}
.brand-name{font-size:29px;letter-spacing:6px;font-weight:900}
.brand-sub{color:var(--orange);letter-spacing:7px;font-weight:900;margin-top:5px}
.brand-tagline{font-size:9px;letter-spacing:2px;color:#aaa;margin-top:10px}

.hero-carousel-shell{
  position:relative;
  min-height:430px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid #2b2b2b;
  background:#111;
}
.hero-carousel,.hero-slide{width:100%;height:100%;min-height:430px}
.hero-slide{
  position:absolute;inset:0;
  opacity:0;transform:scale(1.015);
  transition:opacity .55s ease,transform .7s ease;
  background-position:center;background-size:cover;background-repeat:no-repeat;
}
.hero-slide.active{opacity:1;transform:scale(1);z-index:2}
.hero-slide-loading,.fallback-slide{
  background:
    radial-gradient(circle at 75% 35%,rgba(243,154,8,.16),transparent 23%),
    linear-gradient(135deg,#171717,#0a0a0a);
}
.slide-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.24))}
.slide-content{
  position:relative;z-index:3;
  max-width:560px;
  padding:62px 62px;
  min-height:430px;
  display:flex;flex-direction:column;justify-content:center;align-items:flex-start;
}
.slide-badge{
  display:inline-block;
  color:#111;background:var(--orange);
  font-size:11px;font-weight:900;letter-spacing:1.5px;
  padding:7px 11px;border-radius:999px;margin-bottom:15px;
}
.slide-content h1{font-size:52px;line-height:.95;margin:0 0 13px}
.slide-content p{font-size:18px;color:#ddd;line-height:1.45;max-width:500px}
.slide-price{font-size:31px;color:var(--orange);font-weight:900;margin:4px 0 19px}
.slide-cta{
  display:inline-block;background:var(--orange);color:#111;text-decoration:none;
  font-weight:900;padding:14px 21px;border-radius:11px;
}
.hero-arrow{
  position:absolute;z-index:5;top:50%;transform:translateY(-50%);
  width:43px;height:43px;border-radius:50%;
  border:1px solid rgba(255,255,255,.2);background:rgba(0,0,0,.52);
  color:white;font-size:29px;place-items:center;
}
.hero-prev{left:14px}.hero-next{right:14px}
.hero-dots{
  position:absolute;z-index:5;bottom:17px;left:50%;transform:translateX(-50%);
  display:flex;gap:8px;
}
.hero-dot{width:9px;height:9px;border-radius:50%;border:0;background:rgba(255,255,255,.42);padding:0}
.hero-dot.active{background:var(--orange);transform:scale(1.25)}

@media(max-width:850px){
  .dynamic-hero{grid-template-columns:1fr;margin-top:14px}
  .hero-brand-panel{min-height:180px;flex-direction:row;gap:18px;text-align:left;justify-content:flex-start}
  .brand-emblem{width:78px;height:78px;font-size:40px;margin:0}
  .brand-name{font-size:24px}.brand-sub{font-size:13px}
  .hero-carousel-shell,.hero-carousel,.hero-slide{min-height:390px}
  .slide-content{min-height:390px;padding:44px 38px}
  .slide-content h1{font-size:40px}
}
@media(max-width:520px){
  .hero-brand-panel{padding:18px}
  .hero-carousel-shell,.hero-carousel,.hero-slide{min-height:350px}
  .slide-content{min-height:350px;padding:38px 28px}
  .slide-content h1{font-size:34px}.slide-content p{font-size:15px}
}

/* ===== LOGO FIXA — IMAGEM ORIGINAL ENVIADA PELO USUÁRIO ===== */
.hero-brand-image-panel{
  padding:0 !important;
  overflow:hidden;
  background:#050505;
}
.hero-brand-image-panel img{
  width:100%;
  height:100%;
  min-height:430px;
  object-fit:cover;
  object-position:center;
  display:block;
}
@media(max-width:850px){
  .hero-brand-image-panel{
    min-height:auto !important;
  }
  .hero-brand-image-panel img{
    min-height:0;
    height:auto;
    aspect-ratio:988 / 414;
    object-fit:cover;
  }
}

/* ===== FINAL: DESTAQUE DIRETO AO PRODUTO + ADICIONAR MAIS ITENS ===== */
.add-more-items{
  margin-top:12px;
  margin-bottom:10px;
  border:1px solid #6b4610 !important;
  color:var(--orange) !important;
  background:#15110a !important;
  font-weight:900;
}
.add-more-items:hover{
  background:#21170a !important;
}
.slide-product-link{
  border:0;
  cursor:pointer;
  font-family:inherit;
  font-size:inherit;
}
.card.product-focus{
  animation:srMaiaProductFocus 2.2s ease;
}
@keyframes srMaiaProductFocus{
  0%{box-shadow:0 0 0 0 rgba(243,154,8,0);transform:translateY(0)}
  20%{box-shadow:0 0 0 4px rgba(243,154,8,.95),0 0 35px rgba(243,154,8,.35);transform:translateY(-4px)}
  75%{box-shadow:0 0 0 4px rgba(243,154,8,.75),0 0 25px rgba(243,154,8,.22);transform:translateY(-2px)}
  100%{box-shadow:0 0 0 0 rgba(243,154,8,0);transform:translateY(0)}
}

/* ===== CARDÁPIO ORGANIZADO POR CATEGORIA ===== */
.catalog-sections{
  display:flex;
  flex-direction:column;
  gap:44px;
}
.catalog-category{
  scroll-margin-top:110px;
}
.catalog-category-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:16px;
  padding:0 2px 13px;
  margin-bottom:17px;
  border-bottom:1px solid #2d2d2d;
}
.catalog-category-head h3{
  margin:0;
  font-size:27px;
  color:#f5f5f5;
  letter-spacing:.2px;
}
.catalog-category-head span{
  color:#777;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}
@media(max-width:700px){
  .catalog-sections{gap:36px}
  .catalog-category-head h3{font-size:23px}
}

/* ===== ESCOLHA DE PÃO ===== */
.bread-options{
  display:grid;
  gap:12px;
  margin:18px 0 22px;
}
.bread-option{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0;
  padding:15px;
  border:1px solid #333;
  border-radius:13px;
  background:#151515;
  cursor:pointer;
}
.bread-option:has(input:checked){
  border-color:var(--orange);
  box-shadow:0 0 0 1px rgba(243,154,8,.3);
}
.bread-option input{
  width:auto;
  margin:0;
}
.bread-option span{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.bread-option strong{color:#fff}
.bread-option small{color:#999}
.cart-bread{
  display:block;
  color:var(--orange);
  margin-top:4px;
}
.bread-badge{
  display:inline-block;
  color:#e9c17b;
  font-weight:800;
  margin:5px 0 8px 10px;
}

/* ===== REGRAS DO PÃO ===== */
.bread-option em{
  color:var(--orange);
  font-style:normal;
  font-size:12px;
  margin-left:5px;
}
#productBreadSettings{
  margin-top:4px;
}

.bread-dialog-hint{color:#aaa;font-size:13px;margin:6px 0 0;line-height:1.4}
.bread-upgrade-info input:disabled{opacity:1}
