
:root{
  --orange:#f97316;
  --orange2:#fb923c;
  --laranjaclaro:#FFDBBB;
  --light:#fff7ed;
  --cream:#ffedd5;
  --dark:#3b1f0f;
  --text:#2b211b;
  --white:#fff;
  --shadow:0 10px 30px rgba(124,45,18,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,Arial,sans-serif;color:var(--text);background:#fff}
a{text-decoration:none;color:inherit}
button{font:inherit}
    .topbar
        {background:var(--orange);
        color:#fff;text-align:center;
        padding:8px 16px;
        font-size:13px
        }
.header{
    position:sticky;top:0;
    z-index:20;background:rgba(255,255,255,.96);
    backdrop-filter:blur(10px);
    border-bottom:1px solid #fed7aa
}
.header-inner{
    height:82px;
    max-width:1200px;
    margin:auto;display:grid;
    grid-template-columns:1fr auto 1fr;align-items:center;
    padding:0 20px
}
.icon-btn{
    border:0;
    background:var(--light);
    width:44px;
    height:44px;
    border-radius:50%;
    cursor:pointer;
    color:var(--dark);
    font-size:20px;
    display:flex;
    align-items:center;
    justify-content:center
}
.left-actions{
    display:flex;
    align-items:center;
    gap:10px
}
.logo{
    height:58px;
    max-width:210px;
    object-fit:contain
}
.cart-wrap{
    justify-self:end;
    position:relative
}
.badge{
    position:absolute;
    right:-3px;top:-3px;
    background:var(--orange);
    color:#fff;
    border-radius:20px;
    min-width:20px;
    height:20px;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800
}
.dropdown{
    display:none;
    position:absolute;
    top:72px;
    left:20px;
    background:#fff;
    border:1px solid #fed7aa;
    border-radius:16px;
    box-shadow:var(--shadow);
    padding:10px;
    min-width:210px
}
.dropdown.open{
    display:block
}
.dropdown a{
    display:block;
    padding:12px;
    border-radius:10px
}
.dropdown a:hover{
    background:var(--light);
    color:var(--orange)
}
.hero{
    background:linear-gradient(135deg,#fff7ed 0%,#ffedd5 45%,#fdba74 100%);
    padding:58px 20px
}
.hero-inner{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:35px;align-items:center
}
.eyebrow{
    display:inline-block;
    background:#fff;
    border:1px solid #fed7aa;
    color:var(--orange);
    font-weight:800;
    padding:8px 14px;
    border-radius:999px
}
.hero h1{
    font-size:clamp(38px,5vw,66px);
    line-height:1.02;
    margin:18px 0 15px;
    color:var(--dark)
}
.hero h1 span{
    color:var(--orange)
}
.hero p{
    font-size:18px;
    line-height:1.6;
    max-width:600px
}
.cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--orange);
    color:#fff;
    padding:14px 22px;
    border-radius:14px;
    font-weight:800;
    margin-top:12px;
    box-shadow:0 10px 20px rgba(249,115,22,.25)
}
.hero-card{
    background:#fff;
    border-radius:30px;
    padding:26px;
    box-shadow:var(--shadow);
    border:1px solid #fed7aa
}
.hero-card .screen{
    background:linear-gradient(145deg,#fff,#ffedd5);
    border-radius:22px;
    padding:22px;
    min-height:280px;
    display:flex;
    flex-direction:column;
    justify-content:center
}
.fake-row{
    display:flex;
    gap:12px;margin-top:18px
}
.fake-product{
    flex:1;
    height:82px;
    border-radius:16px;
    background:linear-gradient(135deg,#fed7aa,#fb923c)
}
.categories{
    max-width:1200px;
    margin:0 auto;
    padding:28px 20px 10px
}
    
.cat-scroll{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px
}
.cat{
    background:var(--light);
    border:1px solid #fed7aa;
    padding:16px 10px;
    border-radius:18px;
    text-align:center;
    font-weight:800;
    transition:.2s
}
.cat:hover,.cat.active{
    background:var(--orange);
    color:#fff;
    transform:translateY(-2px)
}
.section{
    max-width:1200px;
    margin:auto;
    padding:42px 20px
}
.section-head{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:20px;margin-bottom:22px
}
.section h2{
    font-size:32px;
    margin:0;color:var(--dark)
}
.muted{
    color:#765b49
}
.products{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px
}
.product{
    border:1px solid #f3d0b3;
    border-radius:22px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.04)
}
.product-img{
    height:210px;
    background:linear-gradient(145deg,#fff7ed,#fed7aa);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:62px
}
.product-body{
    padding:17px
}
.tag{
    font-size:12px;
    color:var(--orange);
    font-weight:800
}
.product h3{
    margin:7px 0;
    font-size:17px
}
.price{
    font-size:22px;
    font-weight:900;
    color:var(--dark)
}
.old{
    font-size:12px;
    color:#9a8170;
    text-decoration:line-through;
    margin-left:7px
}
.add{
    width:100%;
    border:0;
    background:var(--dark);
    color:#fff;
    padding:12px;
    border-radius:12px;
    margin-top:13px;
    cursor:pointer;
    font-weight:800
}
.add:hover{
    background:var(--orange)
}
.benefits{
    background:var(--laranjaclaro);
    color:#fb923c
}
.benefit-grid{
    max-width:1200px;
    margin:auto;
    padding:30px 20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px
}
.benefit{
    padding:18px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:18px;
    background:rgba(255,255,255,.04)
}
.benefit strong{
    display:block;color:#80380f;
    margin-bottom:7px
}
.footer{
    background: #f97316; /*#21130b;*/
    color:#fff;
    padding:42px 20px;
    
}
.footer-inner{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:30px
}
.footer h3{
    margin-top:0
}
.footer a{
    color:#fed7aa
}
.category-hero{
    background:linear-gradient(135deg,#fff7ed,#ffedd5);
    padding:55px 20px
}
.category-hero-inner{
    max-width:1200px;
    margin:auto
}
.category-hero h1{
    font-size:48px;
    color:var(--dark);
    margin:10px 0
}
.cart-panel{
    position:fixed;
    right:-420px;
    top:0;
    width:min(400px,100%);
    height:100vh;
    background:#fff;
    z-index:50;
    box-shadow:-10px 0 40px rgba(0,0,0,.2);
    transition:.25s;
    padding:22px;
    overflow:auto
}
.cart-panel.open{
    right:0
}
.cart-head{
    display:flex;
    justify-content:space-between;
    align-items:center
}
.cart-item{
    display:flex;
    gap:12px;
    padding:15px 0;
    border-bottom:1px solid #eee
}
.cart-item .mini{
    width:55px;
    height:55px;
    border-radius:12px;
    background:#ffedd5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px
}
.cart-total{
    font-size:24px;
    font-weight:900;
    margin:25px 0
}
.overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    z-index:40
}
.overlay.show{
    display:block
}
@media(max-width:850px){
  .hero-inner{grid-template-columns:1fr}
  .products{grid-template-columns:repeat(2,1fr)}
  .benefit-grid{grid-template-columns:repeat(2,1fr)}
  .footer-inner{grid-template-columns:1fr}
}
@media(max-width:560px){
  .header-inner{height:72px}
  .logo{height:48px;max-width:150px}
  .cat-scroll{grid-template-columns:repeat(5,minmax(115px,1fr));overflow-x:auto}
  .categories{overflow:hidden}
  .products{grid-template-columns:1fr}
  .benefit-grid{grid-template-columns:1fr}
  .hero{padding:38px 16px}
  .hero-card{padding:14px}
}
