*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#000;
color:white;
}

header{
position:sticky;
top:0;
z-index:1000;
background:black;
}

.logo{
height:70px;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
font-weight:bold;
background:white;
color:black;
}

.marquesina{
height:40px;
overflow:hidden;
background:#ff4d00;
display:flex;
align-items:center;
}

.texto{
white-space:nowrap;
animation:mover 15s linear infinite;
}

@keyframes mover{
0%{transform:translateX(100%);}
100%{transform:translateX(-100%);}
}

.feed{
padding:15px;
}

.card{
background:#111;
border:1px solid #222;
margin:20px auto;
max-width:500px;
}

.descuento{
background:red;
padding:10px;
font-size:22px;
font-weight:bold;
text-align:center;
}

.slider{
overflow-x:auto;
display:flex;
scroll-snap-type:x mandatory;
}

.slider img{
width:100%;
height:400px;
object-fit:cover;
scroll-snap-align:start;
flex-shrink:0;
}

.info{
    background:white;
    color:black;
    padding:15px;
    text-align:center;
}

.delivery{
font-size:18px;
margin-bottom:10px;
}

.antes{
text-decoration:line-through;
color:#999;
}

.ahora{
font-size:28px;
color:#00ff66;
font-weight:bold;
margin-top:10px;
}

.botones{
    background:white;
    padding:15px;
    display:flex;
    gap:10px;
}

button{
flex:1;
border:none;
padding:15px;
cursor:pointer;
font-size:16px;
border-radius:8px;
}

.whatsapp{
background:#25D366;
}

.guardar{
background:#ff4444;
}

.compartir{
background:#4444ff;
}