:root{
  --paper:#eff0ec;
  --paper-2:#f7f4ed;
  --navy:#182864;
  --navy-dark:#0b1d5c;
  --ink:#17191f;
  --muted:#6f726f;
  --line:rgba(24,40,100,.16);
  --white:#fff;
  --shadow:0 18px 50px rgba(17,24,39,.08);
  --radius:22px;
  --serif:Georgia,"Times New Roman",serif;
  --sans:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  -webkit-font-smoothing:antialiased;
}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.shell{min-height:100vh}
.container{width:min(1120px,calc(100% - 32px));margin:0 auto}
.header{
  position:sticky;top:0;z-index:50;
  background:rgba(239,240,236,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  min-height:72px;display:flex;align-items:center;justify-content:space-between;gap:18px;
}
.brand{display:flex;align-items:center;gap:10px}
.brand img{width:88px;height:44px;object-fit:contain;mix-blend-mode:multiply}
.brand-word{font-family:var(--serif);font-size:20px;letter-spacing:.04em}
.nav{display:flex;align-items:center;gap:18px;font-size:14px}
.nav a,.nav button{background:none;border:0;color:var(--ink);padding:10px 0}
.nav .cart-pill{border:1px solid var(--line);padding:9px 13px;border-radius:999px}
.mobile-toggle{display:none;background:none;border:0;font-size:24px}
.mobile-menu{display:none;padding:10px 0 18px;border-top:1px solid var(--line)}
.mobile-menu.open{display:grid;gap:4px}
.mobile-menu a{padding:10px 0}

.hero{padding:78px 0 54px}
.hero-grid{
  display:grid;grid-template-columns:1.08fr .92fr;gap:56px;align-items:end
}
.kicker{
  text-transform:uppercase;letter-spacing:.22em;font-size:11px;color:var(--navy);font-weight:700
}
.hero h1{
  font-family:var(--serif);font-size:clamp(48px,7vw,92px);line-height:.95;
  font-weight:400;letter-spacing:-.04em;margin:14px 0 22px;color:var(--navy-dark)
}
.hero p{font-family:var(--serif);font-size:20px;line-height:1.55;color:#4d504d;max-width:620px}
.hero-card{
  min-height:420px;border-radius:28px;overflow:hidden;position:relative;
  background:
    linear-gradient(180deg,rgba(10,20,50,.02),rgba(10,20,50,.55)),
    radial-gradient(circle at 25% 20%,#b59f7f 0 8%,transparent 9%),
    linear-gradient(135deg,#6b563f,#30271f 55%,#171512);
  box-shadow:var(--shadow);
}
.hero-card::before{
  content:"";position:absolute;inset:22px;border:1px solid rgba(255,255,255,.45);border-radius:20px
}
.hero-card-content{position:absolute;left:34px;right:34px;bottom:30px;color:white}
.hero-card-content span{font-size:11px;letter-spacing:.22em;text-transform:uppercase}
.hero-card-content h2{font-family:var(--serif);font-size:36px;font-weight:400;margin:10px 0 0}
.actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.btn{
  border:0;border-radius:999px;padding:14px 20px;font-weight:700;
  display:inline-flex;align-items:center;justify-content:center;gap:8px
}
.btn-primary{background:var(--navy);color:white}
.btn-secondary{background:transparent;border:1px solid var(--navy);color:var(--navy)}
.btn-ghost{background:transparent;border:1px solid var(--line);color:var(--ink)}
.btn-danger{background:#7a2323;color:white}
.btn:disabled{opacity:.5;cursor:not-allowed}

.section{padding:42px 0 70px}
.section-head{display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:28px}
.section h2{font-family:var(--serif);font-size:40px;font-weight:400;margin:0;color:var(--navy-dark)}
.section-note{max-width:580px;color:var(--muted);line-height:1.6}
.editorial-strip{
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  padding:22px 0;display:grid;grid-template-columns:repeat(3,1fr);gap:24px
}
.editorial-strip div{padding:8px 0}
.editorial-strip strong{display:block;font-family:var(--serif);font-size:20px;font-weight:400;color:var(--navy-dark)}
.editorial-strip span{display:block;color:var(--muted);font-size:13px;margin-top:6px}

.categories{display:flex;gap:10px;overflow:auto;padding-bottom:10px}
.chip{white-space:nowrap;border:1px solid var(--line);background:transparent;border-radius:999px;padding:10px 14px}
.chip.active{background:var(--navy);color:white;border-color:var(--navy)}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.product{
  background:rgba(255,255,255,.46);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden
}
.product-media{
  aspect-ratio:4/3;background:linear-gradient(135deg,#e1ddd3,#c8bba7);display:grid;place-items:center;
  color:rgba(24,40,100,.55);font-family:var(--serif);font-size:28px
}
.product-media img{width:100%;height:100%;object-fit:cover}
.product-body{padding:20px}
.product h3{font-family:var(--serif);font-size:24px;font-weight:400;margin:0 0 8px}
.product p{color:var(--muted);line-height:1.5;margin:0 0 18px;min-height:46px}
.product-meta{display:flex;align-items:center;justify-content:space-between;gap:14px}
.price{font-weight:800;color:var(--navy)}
.empty{
  border:1px dashed rgba(24,40,100,.28);border-radius:24px;padding:46px 24px;text-align:center;
  background:rgba(255,255,255,.28)
}
.empty h3{font-family:var(--serif);font-size:28px;font-weight:400;color:var(--navy-dark);margin:0 0 10px}
.empty p{color:var(--muted);max-width:620px;margin:0 auto;line-height:1.6}

.panel{
  background:rgba(255,255,255,.55);border:1px solid var(--line);border-radius:24px;padding:24px;
  box-shadow:0 14px 40px rgba(17,24,39,.04)
}
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.field{display:grid;gap:7px}
.field.full{grid-column:1/-1}
label{font-size:13px;font-weight:700;color:#393c44}
input,select,textarea{
  width:100%;border:1px solid var(--line);border-radius:14px;background:#fff;padding:13px 14px;color:var(--ink)
}
textarea{min-height:110px;resize:vertical}
.help{font-size:12px;color:var(--muted)}
.checkout-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:24px}
.summary{position:sticky;top:96px}
.summary-row{display:flex;justify-content:space-between;gap:20px;padding:10px 0;border-bottom:1px solid var(--line)}
.summary-row.total{font-weight:800;font-size:18px;border:0;padding-top:16px}
.notice{
  border-left:3px solid var(--navy);background:rgba(24,40,100,.06);padding:14px 16px;border-radius:0 12px 12px 0;
  color:#41444d;font-size:14px;line-height:1.5
}
.status-timeline{display:grid;gap:12px;margin-top:22px}
.status-step{display:flex;gap:12px;align-items:flex-start}
.status-dot{width:12px;height:12px;border-radius:50%;background:#c8cad1;margin-top:4px;flex:0 0 auto}
.status-step.done .status-dot,.status-step.current .status-dot{background:var(--navy)}
.status-step.current strong{color:var(--navy)}
.small{font-size:13px;color:var(--muted)}

.admin-shell{display:grid;grid-template-columns:240px 1fr;min-height:calc(100vh - 72px)}
.admin-nav{border-right:1px solid var(--line);padding:24px 18px}
.admin-nav button{
  display:block;width:100%;text-align:left;background:none;border:0;padding:12px 10px;border-radius:10px;color:#3d4048
}
.admin-nav button.active{background:rgba(24,40,100,.08);color:var(--navy);font-weight:800}
.admin-main{padding:28px}
.table-wrap{overflow:auto;border:1px solid var(--line);border-radius:16px}
table{border-collapse:collapse;width:100%;min-width:720px;background:rgba(255,255,255,.5)}
th,td{padding:13px 14px;border-bottom:1px solid var(--line);text-align:left;font-size:14px}
th{font-size:12px;text-transform:uppercase;letter-spacing:.08em;color:var(--muted)}
.badge{display:inline-flex;padding:6px 9px;border-radius:999px;background:rgba(24,40,100,.08);color:var(--navy);font-size:12px;font-weight:800}
.modal{
  position:fixed;inset:0;background:rgba(8,12,25,.55);display:grid;place-items:center;padding:20px;z-index:100
}
.modal-card{width:min(640px,100%);max-height:90vh;overflow:auto;background:var(--paper-2);border-radius:24px;padding:24px}
.close{float:right;background:none;border:0;font-size:22px}
.toast{
  position:fixed;right:18px;bottom:18px;z-index:200;background:#111827;color:white;
  padding:12px 16px;border-radius:12px;box-shadow:var(--shadow);max-width:360px
}
.footer{margin-top:48px;border-top:1px solid var(--line);padding:42px 0 28px}
.footer-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:28px}
.footer-logo{width:120px;mix-blend-mode:multiply;opacity:.88}
.footer h4{font-size:12px;text-transform:uppercase;letter-spacing:.15em;margin:0 0 10px;color:var(--navy)}
.footer p,.footer a{font-size:14px;color:var(--muted);line-height:1.7}
.footer-bottom{margin-top:30px;padding-top:18px;border-top:1px solid var(--line);font-size:12px;color:var(--muted)}

@media(max-width:860px){
  .hero{padding-top:44px}
  .hero-grid,.checkout-grid{grid-template-columns:1fr}
  .hero-card{min-height:330px}
  .grid{grid-template-columns:repeat(2,1fr)}
  .editorial-strip{grid-template-columns:1fr}
  .summary{position:static}
  .admin-shell{grid-template-columns:1fr}
  .admin-nav{display:flex;gap:6px;overflow:auto;border-right:0;border-bottom:1px solid var(--line)}
  .admin-nav button{width:auto;white-space:nowrap}
}
@media(max-width:640px){
  .container{width:min(100% - 22px,1120px)}
  .nav{display:none}
  .mobile-toggle{display:block}
  .brand img{width:74px}
  .hero h1{font-size:52px}
  .hero p{font-size:18px}
  .hero-card{min-height:260px}
  .section{padding:32px 0 52px}
  .section h2{font-size:34px}
  .section-head{align-items:start;flex-direction:column}
  .grid,.form-grid,.footer-grid{grid-template-columns:1fr}
  .field.full{grid-column:auto}
  .admin-main{padding:18px 12px}
}

/* V3 — components */
.product-detail-media{border-radius:24px;overflow:hidden;aspect-ratio:1/1}
.product-title{font-family:var(--serif);font-size:clamp(36px,5vw,52px);font-weight:400;color:var(--navy-dark);margin:10px 0 12px}
.product-description{line-height:1.7;color:var(--muted)}
.product-price{font-size:24px;margin:20px 0 8px}
.thumb-row{display:flex;gap:10px;margin-top:10px;overflow:auto}
.thumb-row img{width:88px;height:88px;object-fit:cover;border-radius:14px;border:1px solid var(--line)}
.option-group{border:0;padding:0;margin:22px 0}
.option-group legend{font-family:var(--serif);font-size:22px;color:var(--navy-dark);margin-bottom:10px}
.option-list{display:grid;gap:8px}
.option-row{display:flex;justify-content:space-between;gap:18px;align-items:center;border:1px solid var(--line);border-radius:14px;padding:12px 14px;background:rgba(255,255,255,.55);font-weight:500}
.option-row input{width:auto;margin-right:8px}
.seasonal-row{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.seasonal-card{border:1px solid var(--line);border-radius:18px;padding:20px;background:rgba(255,255,255,.42);min-height:150px;display:flex;flex-direction:column;justify-content:flex-end}
.seasonal-card span{font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:var(--navy)}
.seasonal-card strong{font-family:var(--serif);font-size:26px;font-weight:400;color:var(--navy-dark);margin:8px 0 5px}
.seasonal-card small{color:var(--muted);line-height:1.4}
.cart-line{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:16px 0;border-bottom:1px solid var(--line)}
.cart-line:last-child{border-bottom:0}
.cart-controls{display:flex;align-items:center;gap:9px;flex-wrap:wrap;justify-content:flex-end}
.summary-title,.panel-title{font-family:var(--serif);font-size:28px;font-weight:400;color:var(--navy-dark);margin:0 0 14px}
.track-wrap{max-width:760px}
.success-code{font-family:var(--serif);font-size:46px;font-weight:400;color:var(--navy-dark);margin:8px 0 12px}
.track-status{font-family:var(--serif);font-size:36px;font-weight:400;color:var(--navy-dark)}
.pix-box{margin-top:22px;border:1px solid var(--line);border-radius:20px;padding:18px;display:grid;grid-template-columns:1fr 180px;gap:18px;align-items:center;background:rgba(255,255,255,.5)}
.pix-box img{width:100%;border-radius:14px;background:#fff}
.admin-login-grid{max-width:940px;display:grid;grid-template-columns:1fr 1fr;gap:22px}
.admin-login-title{font-family:var(--serif);font-size:36px;font-weight:400;color:var(--navy-dark);margin:8px 0 18px}
.admin-topline{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px}
.modal-title{font-family:var(--serif);font-size:34px;font-weight:400;color:var(--navy-dark);margin:6px 0 18px}
.muted-badge{opacity:.6}
.admin-image-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.admin-image-grid>div{display:grid;gap:6px}
.admin-image-grid img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:12px}
.mini-panel{padding:16px;margin-bottom:12px;box-shadow:none}
.compact-head{margin-bottom:12px;align-items:center}
.inline-option-form{display:grid;grid-template-columns:1fr 130px auto;gap:8px;margin-top:12px}
.soft-rule{border:0;border-top:1px solid var(--line);margin:22px 0}
.check-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;border:1px solid var(--line);border-radius:14px;padding:14px;max-height:260px;overflow:auto;background:rgba(255,255,255,.5)}
.check-grid input{width:auto;margin-right:7px}
.hours-grid{display:grid;gap:10px}
.hour-row{display:grid;grid-template-columns:110px 110px 1fr 1fr 100px;gap:10px;align-items:center;padding:10px 0;border-bottom:1px solid var(--line)}
.hour-row input[type=checkbox]{width:auto}
.block-list{display:grid;gap:8px;margin-top:18px}
.block-item{display:flex;justify-content:space-between;align-items:center;gap:14px;padding:10px 0;border-bottom:1px solid var(--line)}

@media(max-width:860px){
  .seasonal-row{grid-template-columns:1fr 1fr}
  .pix-box{grid-template-columns:1fr 150px}
  .admin-login-grid{grid-template-columns:1fr}
  .hour-row{grid-template-columns:1fr 1fr 1fr}.hour-row strong{grid-column:1/-1}.hour-row label{grid-column:1/-1}
}
@media(max-width:640px){
  .seasonal-row{grid-template-columns:1fr}
  .cart-line{align-items:flex-start;flex-direction:column}.cart-controls{justify-content:flex-start}
  .pix-box{grid-template-columns:1fr}.pix-box img{max-width:220px}
  .admin-image-grid{grid-template-columns:repeat(2,1fr)}
  .inline-option-form{grid-template-columns:1fr}.check-grid{grid-template-columns:1fr}
  .hour-row{grid-template-columns:1fr 1fr}.hour-row strong,.hour-row label{grid-column:1/-1}.hour-row select{grid-column:1/-1}
}


/* V4 — experiência de loja */
body{padding-bottom:0}
.header-inner{min-height:60px}
.brand img{width:68px;height:36px}
.brand-word{font-size:16px}
.nav{gap:16px}
.header-cart-mobile{display:none;border:1px solid var(--line);border-radius:999px;padding:8px 11px;font-size:12px}
.shop-hero{padding:44px 0 18px}
.shop-hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:24px;align-items:stretch}
.shop-hero h1,.menu-title-row h1,.search-page-head h1{font-family:var(--serif);font-weight:400;color:var(--navy-dark);letter-spacing:-.035em}
.shop-hero h1{font-size:clamp(38px,5vw,66px);line-height:.98;margin:10px 0 14px;max-width:650px}
.shop-hero p{font-size:16px;line-height:1.6;color:var(--muted);max-width:560px}
.compact-actions{margin-top:20px}
.shop-hero-card{min-height:240px;border-radius:22px;padding:24px;background:var(--navy-dark);color:white;display:flex;flex-direction:column;justify-content:flex-end;box-shadow:var(--shadow)}
.shop-hero-card span,.eyebrow{font-size:10px;letter-spacing:.18em;text-transform:uppercase;font-weight:800}
.shop-hero-card strong{font-family:var(--serif);font-size:28px;font-weight:400;line-height:1.1;margin:10px 0 18px}
.shop-hero-card small{opacity:.8}
.store-search{padding:12px 0 6px}
.search-launch{display:flex;align-items:center;gap:10px;border:1px solid var(--line);background:rgba(255,255,255,.58);border-radius:16px;padding:13px 15px;color:var(--muted)}
.search-launch>span:first-child{font-size:22px;color:var(--navy)}
.shop-section{padding:28px 0 38px}
.soft-section{background:rgba(255,255,255,.30)}
.shop-section-head{display:flex;align-items:end;justify-content:space-between;gap:16px;margin-bottom:16px}
.shop-section-head h2{font-size:30px}
.shop-section-head>a{font-size:13px;color:var(--navy);font-weight:700}
.category-cards{display:grid;grid-template-columns:repeat(6,1fr);gap:10px}
.category-card{min-height:88px;padding:15px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.48);display:flex;flex-direction:column;justify-content:space-between}
.category-card span{font-family:var(--serif);font-size:18px;color:var(--navy-dark)}
.category-card small{font-size:11px;color:var(--muted)}
.grid{grid-template-columns:repeat(4,1fr);gap:12px}
.product{border-radius:16px;background:rgba(255,255,255,.55)}
.product-media{aspect-ratio:1/1;font-size:22px;position:relative}
.product-placeholder{background:linear-gradient(145deg,#e8e1d6,#c9baa7)}
.product-placeholder>div{display:grid;gap:4px;text-align:center}
.placeholder-mark{font-family:var(--serif);font-size:42px;color:rgba(24,40,100,.55)}
.product-placeholder small{font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:rgba(24,40,100,.62)}
.product-badges{position:absolute;left:8px;top:8px;display:flex;gap:5px;flex-wrap:wrap}
.product-badges span,.detail-badges span{background:rgba(247,244,237,.94);color:var(--navy-dark);border:1px solid rgba(24,40,100,.12);font-size:9px;font-weight:800;padding:5px 7px;border-radius:999px}
.product-body{padding:12px}
.product-category{display:block;font-size:9px;letter-spacing:.13em;text-transform:uppercase;color:var(--muted);margin-bottom:5px;font-weight:800}
.product h3{font-size:18px;margin:0 0 6px;line-height:1.12}
.product p{font-size:12px;line-height:1.45;margin:0 0 10px;min-height:34px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-meta{font-size:13px}
.product-plus{width:26px;height:26px;border-radius:50%;background:var(--navy);color:white;display:grid;place-items:center;font-size:18px;line-height:1}
.demo-banner{border:1px dashed var(--line);border-radius:14px;padding:14px 16px;display:flex;gap:10px;align-items:center;font-size:12px;color:var(--muted)}
.demo-banner strong{color:var(--navy)}
.menu-main{padding-top:20px}
.back-row{margin-bottom:18px}
.back-button{display:inline-flex;align-items:center;gap:6px;font-size:13px;color:var(--navy);font-weight:700}
.back-button::first-letter{font-size:22px}
.menu-title-row{display:flex;justify-content:space-between;align-items:end;gap:16px;margin-bottom:14px}
.menu-title-row h1,.search-page-head h1{font-size:42px;margin:4px 0 5px}
.menu-title-row p,.search-page-head p{color:var(--muted);margin:0;line-height:1.5}
.mini-cart-link{border:1px solid var(--line);border-radius:999px;padding:9px 12px;font-size:12px}
.menu-search{margin-bottom:12px}
.category-pills{margin:6px 0 18px}
.chip{padding:8px 11px;font-size:12px}
.compact-seasonal{margin:8px 0 18px}
.compact-seasonal .seasonal-card{min-height:105px;padding:15px}
.compact-seasonal .seasonal-card strong{font-size:20px}
.product-layout{display:grid;grid-template-columns:.9fr 1.1fr;gap:34px;align-items:start}
.product-detail-media{aspect-ratio:1/1;border-radius:18px}
.product-detail{max-width:580px}
.detail-badges{display:flex;gap:6px;flex-wrap:wrap;margin:8px 0 0}
.product-title{font-size:clamp(32px,4vw,46px);margin:8px 0 10px}
.product-description{font-size:14px}
.product-price{font-size:22px;margin:14px 0 8px}
.lead-pill{display:inline-flex;background:rgba(24,40,100,.07);border-radius:999px;padding:7px 10px;font-size:11px;color:var(--navy);margin-bottom:14px}
.option-group{margin:16px 0}
.option-group legend{font-size:17px}
.option-row{padding:10px 11px;border-radius:12px;font-size:12px}
.compact-field{margin-top:12px}
.compact-field textarea{min-height:72px}
.add-cart-button{width:100%;margin-top:16px}
.cart-main{padding-top:20px}
.cart-panel{padding:14px 18px}
.cart-line{padding:13px 0}
.qty-button{width:30px;height:30px;border:1px solid var(--line);border-radius:50%;background:white}
.cart-checkout-button{width:100%;margin-top:14px}
.text-button{border:0;background:none;color:var(--muted);font-size:12px;width:100%;padding:12px}
.checkout-heading{margin-bottom:16px}
.checkout-form-panel{padding:20px}
.payment-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}
.payment-grid label{border:1px solid var(--line);border-radius:12px;padding:12px 10px;background:white;font-weight:600}
.payment-grid input{width:auto;margin-right:6px}
.search-page-head{margin-bottom:16px}
.search-field-wrap{display:flex;align-items:center;gap:10px;border:1px solid var(--line);border-radius:16px;background:white;padding:0 13px}
.search-field-wrap>span{font-size:22px;color:var(--navy)}
.search-field-wrap input{border:0;background:transparent;padding-left:0;outline:0}
.search-results{margin-top:20px}
.account-wrap{max-width:760px}
.account-links{display:grid;gap:10px;margin-top:14px}
.account-link-card{display:flex;justify-content:space-between;gap:14px;align-items:center;border:1px solid var(--line);background:rgba(255,255,255,.5);border-radius:14px;padding:15px}
.account-link-card span{font-size:12px;color:var(--muted)}
.account-link-card.subtle{opacity:.72}
.badge-checks{display:flex;gap:8px;flex-wrap:wrap}
.badge-checks label{border:1px solid var(--line);border-radius:999px;padding:8px 10px;background:white;font-weight:600}
.badge-checks input{width:auto;margin-right:5px}
.cart-dock{display:none}
.bottom-nav{display:none}

@media(max-width:900px){
  .category-cards{grid-template-columns:repeat(3,1fr)}
  .grid{grid-template-columns:repeat(3,1fr)}
  .product-layout{grid-template-columns:1fr 1fr}
}

@media(max-width:640px){
  body{padding-bottom:72px}
  .header{position:sticky}
  .header-inner{min-height:54px}
  .brand img{width:58px;height:30px}
  .brand-word{display:none}
  .nav{display:none}
  .header-cart-mobile{display:inline-flex}
  .footer{padding-bottom:34px}
  .shop-hero{padding:24px 0 10px}
  .shop-hero-grid{grid-template-columns:1fr;gap:12px}
  .shop-hero h1{font-size:38px;max-width:360px}
  .shop-hero p{font-size:14px}
  .shop-hero-card{min-height:150px;padding:18px;border-radius:18px}
  .shop-hero-card strong{font-size:22px;margin:8px 0 10px}
  .btn{padding:11px 15px;font-size:13px}
  .shop-section{padding:22px 0 28px}
  .shop-section-head{margin-bottom:12px}
  .shop-section-head h2{font-size:25px}
  .category-cards{display:flex;overflow:auto;gap:8px;margin-right:-11px;padding-right:11px}
  .category-card{min-width:128px;min-height:78px}
  .grid{grid-template-columns:repeat(2,1fr);gap:9px}
  .product-body{padding:10px}
  .product h3{font-size:16px}
  .product p{font-size:11px;min-height:31px}
  .price{font-size:13px}
  .demo-banner{align-items:flex-start;flex-direction:column}
  .menu-title-row h1,.search-page-head h1{font-size:34px}
  .menu-title-row{align-items:center}
  .mini-cart-link{display:none}
  .category-pills{margin-right:-11px;padding-right:11px}
  .seasonal-row{display:flex;overflow:auto;margin-right:-11px;padding-right:11px}
  .compact-seasonal .seasonal-card{min-width:200px}
  .product-layout{grid-template-columns:1fr;gap:18px}
  .product-detail-media{max-height:420px}
  .product-title{font-size:32px}
  .panel{padding:16px;border-radius:18px}
  .checkout-grid{gap:12px}
  .payment-grid{grid-template-columns:1fr 1fr}
  .cart-controls{gap:6px}
  .cart-line{align-items:flex-start;flex-direction:column}
  .cart-controls{width:100%;justify-content:space-between}
  .bottom-nav{
    position:fixed;left:0;right:0;bottom:0;z-index:90;height:64px;padding:6px max(8px,env(safe-area-inset-right)) calc(6px + env(safe-area-inset-bottom)) max(8px,env(safe-area-inset-left));
    display:grid;grid-template-columns:repeat(5,1fr);background:rgba(247,244,237,.97);border-top:1px solid var(--line);backdrop-filter:blur(16px)
  }
  .bottom-nav-item{display:grid;place-items:center;align-content:center;gap:2px;color:#777}
  .bottom-nav-item span{font-size:18px;line-height:1}
  .bottom-nav-item small{font-size:9px;font-weight:700}
  .bottom-nav-item.active{color:var(--navy)}
  .bottom-cart-count{position:absolute;right:4%;top:4px;background:var(--navy);color:#fff;border-radius:999px;min-width:18px;height:18px;display:grid;place-items:center;font-size:9px;font-weight:800}
  .cart-dock{
    position:fixed;left:12px;right:12px;bottom:70px;z-index:80;background:var(--navy);color:white;border-radius:16px;padding:11px 14px;display:flex;justify-content:space-between;align-items:center;box-shadow:0 12px 28px rgba(11,29,92,.28)
  }
  .cart-dock span{display:flex;flex-direction:column;gap:1px}
  .cart-dock small{font-size:10px;opacity:.8}
  .toast{bottom:142px}
}

.recent-orders{margin-top:28px}
.recent-orders .shop-section-head h2{font-size:26px}
.recent-order-card{display:flex;align-items:center;justify-content:space-between;gap:14px;border-bottom:1px solid var(--line);padding:13px 2px}
.recent-order-card span:first-child{display:grid;gap:3px}
.recent-order-card small{color:var(--muted)}
.recent-order-card>span:last-child{font-size:12px;color:var(--navy)}

/* V5 — loja Venzke: mais gastronômica, menos institucional */
:root{
  --paper:#f8f3ea;
  --paper-2:#fffaf3;
  --white:#fffdf9;
  --ink:#2c241f;
  --muted:#776f68;
  --navy:#27364b;
  --navy-dark:#263140;
  --accent:#8d5f51;
  --accent-soft:#ead7cf;
  --rose:#d6a7a0;
  --caramel:#c99a6b;
  --sage:#a5aa95;
  --line:rgba(58,45,37,.13);
  --shadow:0 14px 38px rgba(73,52,39,.08);
  --radius:18px;
}
body{background:var(--paper);color:var(--ink)}
.header{background:rgba(248,243,234,.94);border-bottom:1px solid var(--line)}
.header-inner{min-height:58px}
.brand img{width:74px;height:36px;mix-blend-mode:multiply}
.nav{font-size:13px;gap:20px}
.nav a{color:var(--ink)}
.cart-pill{display:flex;align-items:center;gap:7px}
.cart-count{min-width:20px;height:20px;padding:0 5px;border-radius:999px;background:var(--ink);color:white;display:inline-grid;place-items:center;font-size:10px;font-weight:800}
.cart-count.is-zero,.bottom-cart-count.is-zero{display:none}
.kicker,.eyebrow{color:var(--accent);letter-spacing:.17em;font-size:10px;font-weight:800;text-transform:uppercase}
.section{padding:32px 0 48px}
.section h2,.shop-section-head h2,.panel-title,.summary-title,.track-status,.success-code,.product-title,.search-page-head h1,.menu-title-row h1{color:var(--ink)}
.btn{border-radius:14px;padding:12px 17px;font-size:13px}
.btn-primary{background:var(--ink);color:#fff}
.btn-primary:hover{background:#45362d}
.btn-secondary{border:1px solid var(--line);background:var(--white);color:var(--ink)}
.btn-ghost{border-color:var(--line);color:var(--ink)}
.text-link{font-size:13px;font-weight:700;color:var(--accent);align-self:center}
.actions{gap:10px}
.panel{background:rgba(255,253,249,.82);border-color:var(--line);border-radius:18px;box-shadow:none}
input,select,textarea{border-color:var(--line);border-radius:12px;background:#fffdf9;color:var(--ink)}
input:focus,select:focus,textarea:focus{outline:2px solid rgba(141,95,81,.18);border-color:rgba(141,95,81,.4)}
.notice{border-left-color:var(--accent);background:rgba(141,95,81,.07);color:#564c46}
.price{color:var(--ink)}
.small,.help{color:var(--muted)}

.shop-hero{padding:34px 0 14px}
.shop-hero-grid{grid-template-columns:1.15fr .85fr;gap:22px;align-items:stretch}
.hero-copy{padding:18px 0 8px}
.shop-hero h1{font-family:var(--serif);font-size:clamp(38px,5.8vw,68px);line-height:.98;letter-spacing:-.045em;font-weight:400;color:var(--ink);margin:9px 0 15px;max-width:680px}
.shop-hero p{font-family:var(--sans);font-size:15px;line-height:1.65;color:var(--muted);max-width:540px;margin:0}
.compact-actions{margin-top:20px;align-items:center}
.hero-tile{border-radius:22px;background:linear-gradient(145deg,#e9d8ca,#f3e9dd);border:1px solid rgba(119,86,65,.08);padding:22px;display:grid;grid-template-columns:76px 1fr;gap:18px;align-items:center;min-height:190px}
.hero-tile-mark{width:76px;height:76px;border-radius:26px 26px 32px 32px;background:var(--ink);color:#fff;display:grid;place-items:center;font-family:var(--serif);font-style:italic;font-size:38px}
.hero-tile span{display:block;text-transform:uppercase;letter-spacing:.14em;font-size:9px;color:var(--accent);font-weight:800}
.hero-tile strong{display:block;font-family:var(--serif);font-size:25px;line-height:1.08;font-weight:400;margin:8px 0;color:var(--ink)}
.hero-tile small{color:var(--muted);font-size:11px}
.store-search{padding:6px 0 12px}
.search-launch,.search-field-wrap{display:flex;align-items:center;gap:10px;background:rgba(255,253,249,.88);border:1px solid var(--line);border-radius:14px;padding:12px 14px;color:var(--muted)}
.search-launch .ui-icon,.search-field-wrap .ui-icon{color:var(--accent)}
.search-field-wrap input{border:0;background:transparent;outline:0;padding:4px 0;min-width:0}
.search-clear{margin-left:auto;border:0;background:none;color:#9b938d;padding:4px;display:grid;place-items:center}
.shop-section{padding:24px 0 36px}
.shop-section-head{display:flex;justify-content:space-between;align-items:end;gap:18px;margin-bottom:15px}
.shop-section-head h2{font-family:var(--serif);font-size:29px;font-weight:400;margin:3px 0 0}
.shop-section-head>a,.gift-heading>a{font-size:12px;color:var(--accent);font-weight:800}
.category-section{padding-top:20px}
.category-cards{display:grid;grid-template-columns:repeat(6,1fr);gap:10px}
.category-card{min-height:102px;padding:14px;border-radius:16px;border:1px solid var(--line);background:rgba(255,253,249,.62);display:grid;align-content:space-between;gap:7px}
.category-orb{width:24px;height:24px;border-radius:50%;background:var(--accent-soft)}
.category-card.tone-2 .category-orb{background:#e4c3b7}.category-card.tone-3 .category-orb{background:#d7d8c9}.category-card.tone-4 .category-orb{background:#e7cfae}
.category-card strong{font-family:var(--serif);font-size:17px;font-weight:400}
.category-card small{font-size:10px;color:var(--muted)}
.gift-section{background:rgba(230,214,200,.28);border-top:1px solid rgba(89,62,47,.06);border-bottom:1px solid rgba(89,62,47,.06)}
.gift-heading{display:grid;grid-template-columns:auto 1fr auto;gap:14px;align-items:center;margin-bottom:16px}
.gift-icon{width:42px;height:42px;border-radius:14px;background:var(--white);border:1px solid var(--line);display:grid;place-items:center;color:var(--accent)}
.gift-heading h2{font-family:var(--serif);font-weight:400;font-size:28px;margin:3px 0}
.demo-banner{border:1px dashed rgba(141,95,81,.3);background:rgba(255,253,249,.45);border-radius:14px;padding:13px 15px;font-size:11px;color:var(--muted);display:flex;gap:9px}
.demo-banner strong{color:var(--accent)}

.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.product{position:relative;background:rgba(255,253,249,.8);border:1px solid var(--line);border-radius:16px;overflow:hidden;box-shadow:none}
.product-media{aspect-ratio:1/1;position:relative;background:linear-gradient(145deg,#eadbcf,#d8c1b2);overflow:hidden}
.product-media-link{display:block;width:100%;height:100%}
.product-media img{width:100%;height:100%;object-fit:cover}
.product-placeholder{background:linear-gradient(145deg,#ede3d9,#d7c4b7)}
.placeholder-inner{width:100%;height:100%;display:grid;place-items:center;align-content:center;gap:6px}
.placeholder-mark{font-family:var(--serif);font-style:italic;font-size:43px;color:rgba(80,55,44,.48)}
.placeholder-inner small{font-size:8px;letter-spacing:.16em;text-transform:uppercase;color:rgba(80,55,44,.55)}
.product-badges{position:absolute;left:8px;top:8px;right:42px;display:flex;gap:5px;flex-wrap:wrap;pointer-events:none}
.product-badges span,.detail-badges span{background:rgba(255,250,243,.92);border:1px solid rgba(80,55,44,.09);color:#6e493e;font-size:8px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;padding:5px 7px;border-radius:999px}
.favorite-button{border:0;background:rgba(255,253,249,.9);color:#72645c;border-radius:50%;display:grid;place-items:center}
.product-media>.favorite-button{position:absolute;right:8px;top:8px;width:32px;height:32px}
.favorite-button.active{color:#9b4d52;background:#fff5f2}
.favorite-button.active svg{fill:currentColor;stroke:currentColor}
.product-body{padding:11px 11px 12px}
.product-category{display:block;text-transform:uppercase;letter-spacing:.12em;font-size:8px;font-weight:800;color:#997362;margin-bottom:5px}
.product h3{font-family:var(--serif);font-size:17px;line-height:1.12;font-weight:400;margin:0 0 6px;color:var(--ink)}
.product p{font-size:10.5px;line-height:1.45;color:var(--muted);margin:0 0 10px;min-height:30px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-meta{display:flex;align-items:end;justify-content:space-between;gap:8px}
.price-wrap{display:grid;gap:1px}
.price-wrap small{font-size:9px;color:#918780}
.price{font-size:14px;font-weight:800}
.quick-add{width:31px;height:31px;border:0;border-radius:11px;background:var(--ink);color:white;display:grid;place-items:center}

.menu-main{padding-top:18px}
.back-row{margin-bottom:13px}
.back-button{display:inline-flex;align-items:center;gap:5px;font-size:12px;font-weight:800;color:#6f5549}
.menu-title-row{margin-bottom:14px}
.menu-title-row h1,.search-page-head h1{font-family:var(--serif);font-size:41px;font-weight:400;line-height:1;margin:4px 0 7px}
.menu-title-row p,.search-page-head p{font-size:13px;color:var(--muted);margin:0;line-height:1.55}
.catalog-search-row{margin:15px 0 11px}
.category-pills{display:flex;gap:8px;overflow:auto;padding:0 0 9px;margin:0 0 11px}
.chip{display:inline-flex;align-items:center;gap:7px;white-space:nowrap;border:1px solid var(--line);background:rgba(255,253,249,.7);border-radius:999px;padding:8px 11px;font-size:11px;font-weight:800;color:#514943}
.chip.active{background:var(--ink);border-color:var(--ink);color:white}
.chip-dot{width:7px;height:7px;border-radius:50%;background:#c8a695}.chip.active .chip-dot{background:#f2dccd}
.catalog-toolbar{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:10px 0 13px;border-bottom:1px solid var(--line);margin-bottom:12px;font-size:11px;color:var(--muted)}
.catalog-toolbar label{display:flex;align-items:center;gap:7px;font-size:11px;color:var(--muted);font-weight:700}
.catalog-toolbar select{border:0;background:transparent;padding:4px 20px 4px 3px;font-weight:800;color:var(--ink)}
.seasonal-row{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.compact-seasonal{margin:8px 0 14px}
.seasonal-card{min-height:100px;border-radius:14px;border:1px solid var(--line);padding:13px;background:linear-gradient(145deg,#f3e5d7,#fff9f0);display:flex;flex-direction:column;justify-content:flex-end}
.seasonal-card span{font-size:8px;color:var(--accent);letter-spacing:.14em;text-transform:uppercase;font-weight:800}
.seasonal-card strong{font-family:var(--serif);font-size:19px;font-weight:400;margin:5px 0 2px}
.seasonal-card small{font-size:10px;color:var(--muted)}

.product-main{padding:18px 0 112px}
.product-container{position:relative}
.product-top-actions{display:flex;justify-content:space-between;margin-bottom:12px}
.round-action{width:38px;height:38px;border:1px solid var(--line);background:rgba(255,253,249,.9);border-radius:50%;display:grid;place-items:center;color:var(--ink)}
.product-layout{display:grid;grid-template-columns:.9fr 1.1fr;gap:34px;align-items:start}
.product-detail-media{aspect-ratio:1/1;border-radius:20px;overflow:hidden}
.product-detail{padding-top:4px}
.detail-badges{display:flex;gap:5px;flex-wrap:wrap;margin:7px 0 0}
.product-title{font-family:var(--serif);font-size:clamp(34px,4vw,48px);line-height:1.02;letter-spacing:-.03em;font-weight:400;margin:8px 0 10px}
.product-description{font-size:14px;line-height:1.65;color:var(--muted);margin:0 0 14px}
.product-price-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin:10px 0 12px}
.product-price{font-size:22px;margin:0}
.lead-pill{font-size:10px;color:#75564b;background:#efe1d8;padding:7px 9px;border-radius:999px}
.option-group{border:0;padding:0;margin:18px 0}
.option-group legend{font-family:var(--sans);font-size:14px;font-weight:800;color:var(--ink);margin-bottom:8px}
.option-list{display:grid;gap:7px}
.option-row{display:flex;justify-content:space-between;align-items:center;gap:12px;background:rgba(255,253,249,.8);border:1px solid var(--line);border-radius:12px;padding:11px 12px;font-size:12px;font-weight:650}
.option-row input{width:auto;accent-color:var(--accent)}
.compact-field{margin-top:15px}
.compact-field textarea{min-height:82px}
.thumb-row{display:flex;gap:8px;margin-top:8px;overflow:auto}.thumb-row img{width:70px;height:70px;object-fit:cover;border-radius:12px;border:1px solid var(--line)}
.product-buy-bar{position:fixed;left:50%;transform:translateX(-50%);bottom:12px;width:min(720px,calc(100% - 24px));z-index:75;background:rgba(255,253,249,.96);border:1px solid var(--line);box-shadow:0 12px 30px rgba(64,44,34,.16);backdrop-filter:blur(16px);border-radius:18px;padding:9px;display:grid;grid-template-columns:auto 1fr;gap:9px}
.qty-stepper{display:grid;grid-template-columns:34px 32px 34px;align-items:center;border:1px solid var(--line);border-radius:13px;background:#fff}
.qty-stepper button{border:0;background:none;font-size:20px;color:var(--ink)}.qty-stepper strong{text-align:center;font-size:13px}
.add-cart-button{width:100%;border-radius:13px}

.search-page-field{margin:15px 0 10px}.search-pills{margin-top:2px}.search-results{margin-top:0}
.account-wrap{max-width:850px}.account-section{margin-top:28px}.account-links{display:grid;gap:8px;margin-top:22px}.account-link-card,.recent-order-card{display:flex;align-items:center;justify-content:space-between;gap:12px;border:1px solid var(--line);background:rgba(255,253,249,.72);border-radius:13px;padding:13px 14px}.account-link-card span,.recent-order-card span:last-child{font-size:10px;color:var(--muted)}.recent-order-card span:first-child{display:grid;gap:2px}.recent-order-card small{color:var(--muted);font-size:10px}.account-link-card.subtle{opacity:.7}

.cart-main{padding-top:18px}.cart-panel{padding:12px 17px}.cart-line{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:13px 0;border-bottom:1px solid var(--line)}.cart-line:last-child{border:0}.cart-controls{display:flex;align-items:center;gap:8px}.qty-button{width:30px;height:30px;border:1px solid var(--line);border-radius:50%;background:white}.cart-checkout-button{width:100%;margin-top:12px}.text-button{border:0;background:none;color:var(--muted);font-size:11px;padding:11px;width:100%}
.checkout-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:18px}.checkout-form-panel{padding:18px}.choice-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}.choice-card,.payment-card{display:flex;align-items:flex-start;gap:9px;border:1px solid var(--line);border-radius:13px;background:#fffdfa;padding:11px;font-weight:600}.choice-card input,.payment-card input{width:auto;margin-top:2px;accent-color:var(--accent)}.choice-card span,.payment-card span{display:grid;gap:3px}.choice-card small,.payment-card small{font-size:9.5px;color:var(--muted);font-weight:500;line-height:1.35}.payment-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}.summary{position:sticky;top:76px}.summary-row{display:flex;justify-content:space-between;gap:14px;padding:9px 0;border-bottom:1px solid var(--line);font-size:12px}.summary-row.total{font-size:16px;border:0}.checkout-submit{width:100%;margin-top:12px}.checkout-security{text-align:center;font-size:9px;color:var(--muted);margin:8px 0 0}

.success-card{background:rgba(255,253,249,.78);border:1px solid var(--line);border-radius:20px;padding:24px}.success-mark{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:#e4e5da;color:#53614c;font-weight:900;margin-bottom:13px}.success-card h1{font-family:var(--serif);font-size:40px;font-weight:400;margin:5px 0 9px}.success-card>p{color:var(--muted);font-size:13px;line-height:1.55}.pix-box{margin-top:19px;border:1px solid var(--line);border-radius:16px;padding:15px;display:grid;grid-template-columns:1fr 170px;gap:15px;align-items:center;background:#fff}.pix-box img{width:100%;border-radius:12px;background:#fff}.pix-info p{font-size:12px;line-height:1.6;color:var(--muted)}.payment-live-status{display:inline-flex;align-items:center;gap:7px;margin-top:10px;font-size:11px;font-weight:800;color:#846451}.status-pulse{width:8px;height:8px;border-radius:50%;background:#c49a6b;box-shadow:0 0 0 5px rgba(196,154,107,.15)}.payment-live-status.paid{color:#4f6e4e}.payment-live-status.paid .status-pulse{background:#5d8059}
.tracking-meta{display:flex;gap:7px;flex-wrap:wrap;margin:8px 0 18px}.tracking-meta span{font-size:9.5px;background:#efe9e0;border-radius:999px;padding:6px 8px;color:#6b625b}.payment-state.paid{background:#e1e8db;color:#496245}.status-dot{background:#d4c9bf}.status-step.done .status-dot,.status-step.current .status-dot{background:var(--accent)}.status-step.current strong{color:var(--accent)}

.footer{margin-top:36px;border-top:1px solid var(--line);background:rgba(238,225,212,.28);padding:34px 0 24px}.footer-logo{width:96px}.footer h4{color:var(--accent)}.footer p,.footer a{font-size:12px;color:var(--muted)}
.cart-dock{display:none}
.bottom-nav{display:none}

/* admin */
.admin-shell{grid-template-columns:220px 1fr}.admin-nav{border-right-color:var(--line);background:rgba(255,253,249,.45)}.admin-nav button{font-size:12px;color:#5e554f}.admin-nav button.active{background:#eee2d9;color:#6d493f}.admin-main{padding:24px}.table-wrap{border-color:var(--line)}table{background:rgba(255,253,249,.68)}th,td{border-bottom-color:var(--line);font-size:12px}.badge{background:#eee2d9;color:#6d493f;font-size:9px}.modal{background:rgba(45,34,29,.48)}.modal-card{background:var(--paper-2);border-radius:18px}.close{color:var(--ink)}.payment-mode-admin{display:grid;grid-template-columns:1fr 1fr;gap:8px}.disabled-card{opacity:.55}.admin-section-gap{height:18px}.hours-grid{display:grid;gap:8px}.hour-row{display:grid;grid-template-columns:100px 90px 1fr 1fr 100px;gap:8px;align-items:center}.hour-row input,.hour-row select{padding:8px}.block-list{display:grid;gap:7px;margin-top:12px}.block-item{display:flex;justify-content:space-between;align-items:center;gap:10px;border-top:1px solid var(--line);padding-top:9px;font-size:11px}.admin-image-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:9px}.badge-checks{display:flex;gap:7px;flex-wrap:wrap}.badge-checks label{border:1px solid var(--line);border-radius:999px;padding:7px 9px;background:#fff;font-size:10px}.check-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:7px}.check-grid label{font-size:11px}.admin-login-grid{max-width:900px;display:grid;grid-template-columns:1fr 1fr;gap:18px}.admin-login-title,.modal-title{font-family:var(--serif);color:var(--ink);font-weight:400}.toast{background:#332a25;bottom:18px}

@media(max-width:900px){
  .category-cards{grid-template-columns:repeat(3,1fr)}.grid{grid-template-columns:repeat(3,1fr)}.product-layout{grid-template-columns:1fr 1fr}.checkout-grid{grid-template-columns:1fr}.summary{position:static}.admin-shell{grid-template-columns:1fr}.admin-nav{display:flex;gap:5px;overflow:auto;border-right:0;border-bottom:1px solid var(--line);padding:10px}.admin-nav button{width:auto;white-space:nowrap}.hour-row{grid-template-columns:90px 85px 1fr 1fr}.hour-row select{grid-column:4}.admin-login-grid{grid-template-columns:1fr}
}

@media(max-width:640px){
  body{padding-bottom:68px}.container{width:min(100% - 22px,1120px)}.header-inner{min-height:52px}.brand img{width:62px;height:31px}.nav{display:none}.header-cart-mobile{display:flex;align-items:center;gap:5px;color:var(--ink)}.header-cart-mobile .cart-count{position:relative;min-width:18px;height:18px;font-size:9px}
  .shop-hero{padding:20px 0 8px}.shop-hero-grid{grid-template-columns:1fr;gap:11px}.hero-copy{padding:7px 0}.shop-hero h1{font-size:38px;max-width:360px}.shop-hero p{font-size:13px}.hero-tile{min-height:116px;grid-template-columns:54px 1fr;padding:14px;border-radius:16px}.hero-tile-mark{width:54px;height:54px;border-radius:19px;font-size:29px}.hero-tile strong{font-size:20px}.hero-tile small{font-size:9.5px}.compact-actions{margin-top:15px}.text-link{font-size:11px}
  .store-search{padding:5px 0 7px}.search-launch{padding:11px 12px;border-radius:13px;font-size:12px}.shop-section{padding:19px 0 26px}.shop-section-head{margin-bottom:11px}.shop-section-head h2,.gift-heading h2{font-size:24px}.shop-section-head>a,.gift-heading>a{font-size:10px}
  .category-cards{display:flex;overflow:auto;gap:8px;margin-right:-11px;padding-right:11px}.category-card{min-width:118px;min-height:82px;padding:11px}.category-card strong{font-size:15px}.category-orb{width:20px;height:20px}
  .grid{grid-template-columns:repeat(2,1fr);gap:8px}.product{border-radius:13px}.product-body{padding:9px}.product h3{font-size:15px}.product p{font-size:9.5px;min-height:27px;margin-bottom:7px}.product-category{font-size:7px}.product-badges{left:6px;top:6px;right:36px}.product-badges span{font-size:6.8px;padding:4px 5px}.product-media>.favorite-button{right:6px;top:6px;width:28px;height:28px}.quick-add{width:29px;height:29px;border-radius:9px}.price{font-size:13px}
  .gift-heading{grid-template-columns:auto 1fr;gap:10px}.gift-heading>a{grid-column:2}.gift-icon{width:36px;height:36px}
  .menu-main,.section{padding-top:17px}.menu-title-row h1,.search-page-head h1{font-size:34px}.menu-title-row p,.search-page-head p{font-size:11.5px}.catalog-toolbar{font-size:10px}.category-pills{margin-right:-11px;padding-right:11px}.seasonal-row{display:flex;overflow:auto;margin-right:-11px;padding-right:11px}.seasonal-card{min-width:190px}
  .product-main{padding-top:9px;padding-bottom:134px}.product-top-actions{position:absolute;z-index:4;left:9px;right:9px;top:9px}.round-action{background:rgba(255,253,249,.94);box-shadow:0 4px 14px rgba(51,38,31,.08)}.product-layout{grid-template-columns:1fr;gap:16px}.product-container{width:100%;margin:0}.product-detail-media{border-radius:0;max-height:410px}.product-detail{padding:0 11px}.product-title{font-size:31px}.product-description{font-size:12.5px}.product-price{font-size:20px}.option-group{margin:16px 0}.option-row{padding:10px 11px;font-size:11px}.product-buy-bar{left:10px;right:10px;transform:none;width:auto;bottom:70px;border-radius:15px;padding:8px}.qty-stepper{grid-template-columns:31px 27px 31px}.add-cart-button{font-size:12px;padding:11px}.footer{display:none}
  .choice-grid,.payment-grid{grid-template-columns:1fr 1fr}.choice-card,.payment-card{padding:10px}.checkout-form-panel{padding:14px}.summary{padding:14px}.pix-box{grid-template-columns:1fr 120px;padding:12px}.success-card{padding:18px}.success-card h1{font-size:34px}
  .bottom-nav{position:fixed;left:0;right:0;bottom:0;z-index:90;height:64px;padding:5px 7px calc(5px + env(safe-area-inset-bottom));display:grid;grid-template-columns:repeat(5,1fr);background:rgba(255,252,246,.97);border-top:1px solid var(--line);backdrop-filter:blur(16px)}.bottom-nav-item{position:relative;display:grid;place-items:center;align-content:center;gap:2px;color:#8a817a}.bottom-nav-item small{font-size:8.5px;font-weight:700}.bottom-nav-item.active{color:var(--ink)}.bottom-cart-count{position:absolute;right:20%;top:0;background:var(--accent);color:white;border-radius:999px;min-width:17px;height:17px;padding:0 4px;display:grid;place-items:center;font-size:8px;font-weight:800}.cart-dock{display:none}.toast{bottom:78px;left:12px;right:12px;max-width:none;font-size:11px;text-align:center}
  .account-section .grid{grid-template-columns:repeat(2,1fr)}.hour-row{grid-template-columns:1fr 1fr;gap:6px}.hour-row strong{grid-column:1/-1}.hour-row select{grid-column:auto}.payment-mode-admin{grid-template-columns:1fr}.admin-main{padding:13px 10px}.table-wrap{border-radius:12px}.form-grid{grid-template-columns:1fr}.field.full{grid-column:auto}.admin-image-grid{grid-template-columns:repeat(2,1fr)}.check-grid{grid-template-columns:1fr}
}
.pix-admin-row{display:flex;align-items:center;gap:14px;border:1px solid var(--line);border-radius:14px;padding:11px;background:#fffdfa}.pix-admin-row img{width:92px;height:92px;object-fit:contain;border-radius:10px;border:1px solid var(--line);background:#fff}.pix-admin-row input[type=file]{font-size:11px;padding:8px;background:#fff}
@media(max-width:640px){.pix-admin-row{align-items:flex-start}.pix-admin-row img{width:82px;height:82px}}
.header .brand img{width:31px;height:39px;object-fit:cover;border-radius:10px;mix-blend-mode:multiply}.footer-logo{width:150px;height:auto;mix-blend-mode:multiply}
@media(max-width:640px){.header .brand img{width:29px;height:36px;border-radius:9px}}
