@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


/* =========================
   browNY - base limpia
   Fuentes:
   - Principal (titulos): Recoleta Bold
   - Secundaria (texto): Poppins
   ========================= */
body{
  margin:0;
  border:0;
}

:root{
  --pink: #ffc2d6;
  --black: #000;
  --white: #fff;
  --topbar-h: 68px;
  --radius: 14px;
  --font-secondary: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-primary: 'Recoleta', 'Recoleta Bold', var(--font-secondary), serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font-secondary);
  color:#111;
  background:#fff;
}

/* Global responsive safeguards */
html,body{max-width:100%;overflow-x:hidden;}
img,svg,video,canvas,iframe{max-width:100%;height:auto;}
input,select,textarea,button{max-width:100%;}

#paymentBrick_container img,
#paymentBrick_container svg,
#paymentBrick_container video,
#paymentBrick_container canvas,
#paymentBrick_container iframe {
  height: 100%;
}

/* Titulos */
h1,h2,h3,.brand{ font-family: var(--font-primary); }

/* =========================
   FOOTER
   ========================= */
.footer{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.35), transparent 28%),
    linear-gradient(180deg, #ffd6e3 0%, #f5b8ca 100%);
  padding: 56px 20px 24px;
  margin-top: 80px;
  border-top: 1px solid rgba(91,45,31,.08);
}

.footer__inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer__brand{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer__logo img,
.footer__brand img{
  width: 150px;
  height:auto;
  display:block;
}

.footer__tagline{
  margin: 0;
  max-width: 280px;
  color: rgba(59,31,27,.78);
  line-height: 1.65;
  font-size: 15px;
}

.footer__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #3b1f1b;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .04em;
  transition: transform .18s ease, background .18s ease;
}

.footer__cta:hover{
  background: #5b2d1f;
  transform: translateY(-1px);
}

.footer__nav,
.footer__social-block{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__title{
  margin: 0 0 2px;
  font-family: var(--font-primary);
  font-size: 22px;
  color: #4a261f;
}

.footer__nav a{
  color: rgba(59,31,27,.78);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.55;
  transition: color .18s ease, transform .18s ease;
}

.footer__nav a:hover{
  color: #3b1f1b;
  transform: translateX(3px);
}

.footer__social{
  display:flex;
  align-items:center;
  gap:18px;
}

.footer__social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color:#4a261f;
  background: rgba(255,255,255,.46);
  text-decoration: none;
  font-size: 20px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

@media (hover:hover){
  .footer__social a:hover{
    transform: translateY(-3px);
    background: #fff3f7;
    color: #3b1f1b;
  }
}

.footer__microcopy{
  margin: 0;
  color: rgba(59,31,27,.62);
  font-size: 13px;
  line-height: 1.55;
}

.footer__bottom{
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(91,45,31,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer__copy,
.footer__legal-note{
  margin: 0;
  font-size: 13px;
  color: rgba(59,31,27,.65);
  letter-spacing:.2px;
}

/* =========================
   TOPBAR
   ========================= */
.topbar{
  position: sticky;
  top: var(--topbar-h);
  z-index: 50;
  height: var(--topbar-h);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  padding: 0 24px;
  background: #ffe8f0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.menu-btn{
  grid-column: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #4b2e2a;
  font-family: inherit;
  padding: 0 8px;
}

.brand{
  grid-column: 2;
  justify-self: center;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}


.brand img{
  width: 250px;
  max-width: 100%;
  height: auto;
  display: block;
}

.right{
  grid-column: 3;
  display:flex;
  justify-content:flex-end;
  gap: 10px;
}


/* TOPBAR SCROLL STATE (rosa + muestra "Pedir ahora") */
.topbar .js-order{
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
}

body.is-scrolled .topbar{
  background: var(--pink);
  border-bottom: 1px solid rgba(0,0,0,.10);
}

body.is-scrolled .topbar .menu-btn{
  color:#000;
}

body.is-scrolled .topbar .burger span{
  background:#000;
}

body.is-scrolled .topbar .js-order{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Mobile: un poco más chico */
@media (max-width:520px){
  :root{ --topbar-h: 62px; }
  .brand img{ height: 48px; }
  .topbar {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    box-sizing: border-box;
    background: #ffe8f0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    height: var(--topbar-h);
    gap: 0;
  }
  .menu-btn {
    margin-left: 0;
    flex-shrink: 0;
  }
  .brand {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    min-width: 0;
  }
  .right {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .menu-text {
    display: none;
  }
}

/* =========================
   BUTTONS (NEGROS + LETRAS BLANCAS)
   ========================= */
.btn,
button,
a.btn{
  font-family: var(--font-secondary);
  text-decoration:none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor:pointer;
  font-weight: 600;
  letter-spacing: .2px;
}

.btn--black{
  background: var(--black);
  color: var(--white);
}

.btn--black:hover{
  filter: brightness(1.05);
}

.btn--black:active{
  transform: translateY(1px);
}

/* Si hay botones sueltos (por si después pegás secciones) */
button{
  background: var(--black);
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
}

/* =========================
   MENU BUTTON
   ========================= */
.menu-btn{
  display:flex;
  align-items:center;
  gap:12px;
  background:transparent;
  border:none;
  padding:0;
  cursor:pointer;
  color:#4b2e2a;
}

.menu-text{
  font-family:"Recoleta", Georgia, serif;
  font-size:28px;
  font-weight:700;
  line-height:1;
  color:#4b2e2a !important;
}

.burger{
  display:inline-flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:28px;
  height:28px;
}

.burger span{
  display:block;
  width:28px;
  height:3px;
  border-radius:999px;
  background:#4b2e2a !important;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}

/* Animación X cuando el menú está abierto */
body.is-menu-open .burger span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
body.is-menu-open .burger span:nth-child(2){
  opacity: 0;
  width: 0;
}
body.is-menu-open .burger span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* que siga marrón al hacer scroll */
.topbar .menu-btn,
.topbar .menu-text,
.topbar .burger span{
  color:#4b2e2a !important;
  background-color:unset;
}

/* =========================
   DRAWER
   ========================= */
.backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 9998;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

body.is-menu-open .backdrop{
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  height: 100dvh;
  width: min(380px, 92vw);
  background: #fff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 8px 0 40px rgba(0,0,0,.14);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* === HEADER === */
.drawer-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  flex-shrink: 0;
}

.drawer-logo img{
  width: 120px;
  height: auto;
  display: block;
}

.drawer-close{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f3ebe8;
  color: #3b1f1b;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  flex-shrink: 0;
  margin-top: 16px;
  margin-left: 16px;
}

.drawer-close:hover{
  background: #e8d5cf;
  transform: rotate(90deg);
}

/* === NAV PRINCIPAL === */
.drawer-nav{
  display: flex;
  flex-direction: column;
  padding: 16px 16px 8px;
  gap: 4px;
  flex-shrink: 0;
}

.drawer-link{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #3b1f1b;
  transition: background .18s ease, transform .18s ease;
}

.drawer-link i{
  width: 22px;
  text-align: center;
  font-size: 17px;
  color: #9c6b59;
  flex-shrink: 0;
}

.drawer-link:hover{
  background: #fdf0ec;
  transform: translateX(3px);
}

/* === DIVIDER === */
.drawer-divider{
  height: 1px;
  background: rgba(0,0,0,.07);
  margin: 8px 24px;
  flex-shrink: 0;
}

/* === CTA === */
.drawer-cta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px 24px;
  padding: 15px 20px;
  background: #3b1f1b;
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease;
  flex-shrink: 0;
}

.drawer-cta i{
  font-size: 16px;
}

.drawer-cta:hover{
  background: #5b2d1f;
  transform: translateY(-1px);
}

/* === POLÍTICAS === */
.drawer-policies{
  padding: 8px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}

.drawer-policies__label{
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #b89b90;
  margin: 0 0 8px 4px;
}

.drawer-policy-link{
  display: block;
  padding: 9px 4px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 500;
  color: #7a5048;
  text-decoration: none;
  border-radius: 8px;
  transition: color .18s ease, background .18s ease;
}

.drawer-policy-link:hover{
  color: #3b1f1b;
  background: #fdf0ec;
  padding-left: 10px;
}

/* OPEN STATE */
body.is-menu-open .drawer { transform: translateX(0); }
body.is-menu-open{ overflow:hidden; }


/* =========================
   HERO (slider)
   ========================= */
.page{ padding: 0; }

.hero{
  position: relative;
  width: 100%;
  background:#000;
}

.hero-track{
  position: relative;
  height: calc(100dvh - var(--topbar-h));
  overflow: hidden;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition: opacity .35s ease;
}

.hero-slide.is-active{
  opacity:1;
  pointer-events:auto;
}

.hero-media{
  position:absolute;
  inset:0;
}

.hero-video,
.hero-fallback{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.hero-video{ background:transparent; }
.no-hero-video .hero-video{ display:none; }
.no-hero-video .hero-fallback{ display:block; }

.hero-fallback{ display:none; }

@supports not (object-fit: cover){
  .hero-video, .hero-fallback{ height:auto; }
}

/* si el video falla, mostramos el fallback */
.hero-video:not([src]) + .hero-fallback{ display:block; }

.hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 22px;
}

.hero-cta{
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}



/* Dots */
.hero-dots{
  position:absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display:flex;
  gap: 10px;
  z-index: 5;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.35);
  cursor:pointer;
  padding:0;
}

.dot.is-active{
  background: rgba(255,255,255,.95);
}

/* Secciones base */
.section{
  padding: 74px 16px;
}

.section-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.08);
}

.section-title{
  margin:0 0 10px;
  font-size: 34px;
}

.section-text{
  margin:0 0 18px;
  color: rgba(0,0,0,.72);
}


/* =========================
   (placeholder removido)
   ========================= */
  
.page{
  min-height: calc(100dvh - var(--topbar-h));
  padding: 28px 16px 0;
}

/* =========================
   FOOTER
   ========================= */
.footer{
  background: var(--pink);
  padding: 46px 18px 34px;
  text-align:center;
  margin-top: 80px;
}

.footer__social{
  display:flex;
  justify-content:center;
  gap: 26px;
  margin-bottom: 26px;
}

.footer__social a{
  font-size: 22px;
  color:#000;
  transition: transform .18s ease, opacity .18s ease;
}

@media (hover:hover){
  .footer__social a:hover{
    transform: translateY(-3px) scale(1.08);
    opacity:.7;
  }
}

.footer__brand img{
  height: 150px;
  width:auto;
  display:block;
  margin: 0 auto 18px;
}

.footer__copy{
  font-size: 13px;
  color: rgba(0,0,0,.7);
  letter-spacing:.2px;
}


/* =========================
   HERO "Experiencia browny" (tipo Crumbl)
   ========================= */

.hero-browny{
  position:absolute;
  inset:0;
  overflow:hidden;
  display:grid;
  place-items:center;
  padding: 64px 18px;
  background: radial-gradient(1200px 700px at 50% 35%, #ffd6e1 0%, var(--pink) 52%, #f3a9bf 100%);
}

.hero-browny .hero-content{
  position: relative;
  z-index: 2;
  text-align:center;
  max-width: 900px;
  padding: 24px 18px;
}

/* Experiencia en POPPINS */
.hero-browny .hero-eyebrow{
  font-family: var(--font-secondary);
  font-weight: 600;
  letter-spacing: .2px;
  color: rgba(59,47,43,.85);
  font-size: clamp(22px, 2.6vw, 40px);
  margin: 0 0 10px 0;
}

/* browny como logo (wordmark) */
.hero-browny .hero-wordmark-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 0 auto 14px;
}

.hero-browny .hero-wordmark{
  width: clamp(220px, 42vw, 560px);
  height: auto;
  display:block;
}

/* linea debajo del logo */
.hero-browny .hero-underline{
  width: min(560px, 78vw);
  height: 2px;
  background: rgba(59,47,43,.30);
  margin: 6px auto 0;
  border-radius: 999px;
}

.hero-browny .hero-sub2{
  font-family: var(--font-secondary);
  color: rgba(59,47,43,.85);
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.8;
  margin: 18px 0 26px 0;
}

/* Cookies decorativas */
.hero-browny .hero-cookie{
  position:absolute;
  z-index: 1;
  pointer-events:none;
  filter: drop-shadow(0 18px 45px rgba(0,0,0,.16));
  transform-origin:center;
}

/* distribución tipo referencia */
.hero-browny .c-top-left{
  width: min(320px, 36vw);
  top: -90px;
  left: -120px;
  transform: rotate(-10deg);
}

.hero-browny .c-top-left2{
  width: min(320px, 38vw);
  top: 95px;
  left: -170px;
  transform: rotate(12deg);
}

.hero-browny .c-top-right{
  width: min(300px, 34vw);
  top: -80px;
  right: -120px;
  transform: rotate(10deg);
}

.hero-browny .c-bottom-left{
  width: min(360px, 44vw);
  left: -160px;
  bottom: -260px;
  transform: rotate(-12deg);
}

.hero-browny .c-bottom-mid{
  width: min(340px, 40vw);
  left: 50%;
  bottom: -240px;
  transform: translateX(-50%) rotate(0deg);
}

.hero-browny .c-bottom-right{
  width: min(360px, 44vw);
  right: -180px;
  bottom: -220px;
  transform: rotate(14deg);
}


@media (max-width: 780px){
  .hero-browny{ padding: 56px 14px; }
  .hero-browny .c-top-left2{ display:none; }
  .hero-browny .c-bottom-mid{ bottom: -280px; }
  .hero-browny .c-bottom-left{ bottom: -300px; }
  .hero-browny .c-bottom-right{ bottom: -280px; }
}
  .hero-browny .c-left{ display:none; }
  .hero-browny .c-bottom-mid{ bottom: -260px; }


 







:root{
--cookie-width:340px;
--browny-pink:#e6a9b8;
--browny-brown:#3b2f2b;
}



/* CONTENEDOR */

.browny-cards-fix{
  max-width:1200px;
  margin:60px auto;
  display:grid;
  grid-template-columns:repeat(3,auto);
  gap:40px;
  justify-content:center;
}



/* CARD */

.browny-card-fix{
width:var(--cookie-width);
display:flex;
flex-direction:column;
align-items:center;
}



/* IMAGEN */

.browny-card-fix__top{
width:var(--cookie-width);
display:flex;
justify-content:center;
position:relative;
z-index:3;
}

.browny-card-fix__top img{
width:var(--cookie-width);
height:auto;
display:block;
transition:.35s;
}



/* BODY */

.browny-card-fix__body{
width:var(--cookie-width);
margin-top:-70px;
background:var(--browny-pink);
padding:50px 28px 28px;
border-radius:6px;
box-shadow:0 12px 28px rgba(0,0,0,.15);
text-align:left;
}



/* TITULO */

.browny-card-fix__body h3{
font-family:"Recoleta",serif;
font-size:34px;
color:var(--browny-brown);
margin-bottom:12px;
}



/* TEXTO */

.browny-card-fix__body p{
font-family:"Poppins",sans-serif;
font-size:15px;
line-height:1.4;
color:var(--browny-brown);
margin-bottom:22px;
}



/* BOTON */

.browny-card-fix__btn{
display:inline-block;
background:black;
color:white;
padding:11px 22px;
border-radius:40px;
text-decoration:none;
font-family:"Poppins",sans-serif;
font-weight:600;
font-size:13px;
box-shadow:0 6px 14px rgba(0,0,0,.18);
transition:.25s;
}

.browny-card-fix__btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 22px rgba(0,0,0,.25);
}



/* HOVER COOKIE */

.browny-card-fix:hover img{
transform:translateY(-6px) scale(1.03);
}



/* TABLET */

@media (max-width:1100px){

.browny-cards-fix{
grid-template-columns:repeat(2,var(--cookie-width));
}

}



/* MOBILE */

@media (max-width:700px){

:root{
--cookie-width:300px;
}

.browny-cards-fix{
grid-template-columns:1fr;
justify-items:center;
}

}



























/* FUENTE Y COLOR GLOBAL */

body{
font-family:'Poppins', sans-serif;
color:#3b241d;
}


/* SECCION CAJAS */

.packs-page{
padding:120px 20px;
background:#f7f3f2;
}

.packs-container{
max-width:1200px;
margin:auto;
}

.packs-header{
text-align:center;
margin-bottom:60px;
}

.packs-header h1{
font-size:42px;
margin-bottom:10px;
color:#3b241d;
}

.packs-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}


/* TARJETAS */

.pack-card{
background:#e6aebb;
border-radius:25px;
overflow:hidden;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
transition:0.3s;
}

.pack-card:hover{
transform:translateY(-8px);
}


/* IMAGEN CAJA */

.pack-image-wrap{
background:#f3c6d2;
padding:30px;
display:flex;
justify-content:center;
align-items:center;
}

.pack-image{
max-width:320px;
width:100%;
filter:drop-shadow(0 20px 20px rgba(0,0,0,0.2));
}


/* CONTENIDO */

.pack-content{
padding:30px;
text-align:center;
}

.pack-content h2{
color:#3b241d;
font-weight:600;
margin-top:10px;
}

.pack-content p{
color:#5a3b33;
font-size:15px;
}


/* ETIQUETA */

.pack-tag{
background:#f7dfe5;
padding:8px 14px;
border-radius:4px;
font-size:14px;
font-weight:600;
color:#3b241d;
}


/* BOTON */

.pack-button{
display:inline-block;
margin-top:18px;
background:black;
color:white;
padding:12px 22px;
border-radius:30px;
font-weight:600;
transition:0.2s;
text-decoration: none;
}

.pack-button:hover{
transform:translateY(-2px);
background:#222;
}


/* HEADER NORMAL */

.topbar{
position:sticky;
top:0;
z-index:1000;
background:transparent;
transition:background 0.25s ease, box-shadow 0.25s ease;
}


/* HEADER CON SCROLL */

.topbar.scrolled{
background:#efc4d0;
box-shadow:0 10px 24px rgba(0,0,0,0.10);
}



.top-announcement {
  width: 100%;
  background: linear-gradient(135deg, #4b2e2a 0%, #5a3a35 100%);
  color: #f8ebe7;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Gradient fade edges para mejor UX */
.top-announcement::before,
.top-announcement::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 10;
}

.top-announcement::before {
  left: 0;
  background: linear-gradient(90deg, #4b2e2a 0%, transparent 100%);
}

.top-announcement::after {
  right: 0;
  background: linear-gradient(270deg, #4b2e2a 0%, transparent 100%);
}

.top-announcement__track {
  display: flex;
  white-space: nowrap;
  animation: brownyMarqueeScroll var(--animation-duration, 30s) linear infinite;
  padding: 0 20px;
  will-change: transform;
  cursor: grab;
  transition: animation-play-state 0.3s ease;
}

.top-announcement__track:hover {
  animation-play-state: paused;
  cursor: grabbing;
}

.top-announcement__text {
  display: inline-block;
  padding-right: 60px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Animación suave con ease */
@keyframes brownyMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Respetar preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .top-announcement__track {
    animation: none;
    transform: translateX(0);
  }

  .top-announcement__track:hover {
    animation-play-state: running;
  }
}

/* Mobile: más lento para facilitar lectura en pantalla pequeña */
@media (max-width: 768px) {
  .top-announcement {
    height: 48px;
  }

  .top-announcement__track {
    animation-duration: 35s;
  }

  .top-announcement__text {
    font-size: 0.85rem;
    padding-right: 50px;
  }
}

/* =========================================
   HEADER CANONICO (logo izquierda, carrito+menu derecha)
   ========================================= */
.topbar#inicio{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:14px !important;
}

.topbar#inicio .brand{
  position:static !important;
  transform:none !important;
  left:auto !important;
  top:auto !important;
  margin:0 auto 0 0 !important;
  justify-self:auto !important;
}

.topbar#inicio .brand img{
  margin:0 !important;
}

.topbar#inicio .topbar-actions{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:16px !important;
}

.topbar#inicio .topbar-cart{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#4b2e2a;
  background:none;
  border:none;
  padding:0 8px;
}

.topbar#inicio .topbar-cart i{
  font-size:22px;
}

.topbar#inicio .topbar-cart__dot{
  position:absolute;
  top:-6px;
  right:-4px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#d64e6a;
  color:#fff;
  font-size:11px;
  font-weight:700;
  line-height:1;
  border:2px solid #fff;
  box-shadow:0 2px 6px rgba(0,0,0,.2);
}

.topbar#inicio .menu-btn{
  position:static !important;
  transform:none !important;
  left:auto !important;
  top:auto !important;
  margin:0 !important;
  padding:0 8px !important;
  gap:8px !important;
}

.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

@media (max-width: 768px){
  .topbar#inicio{
    padding:0 12px !important;
  }

  .topbar#inicio .brand img{
    width:140px !important;
    max-width:140px !important;
    height:auto !important;
  }

  .topbar#inicio .topbar-actions{
    gap:8px !important;
  }

  .topbar#inicio .topbar-cart{
    padding:0 4px;
  }
}







/* =========================
   SECCIÓN DE LINKS BROWNY
   ========================= */
.browny-links{
  width: 100%;
  background: #f3e7df; /* rosita/beige suave Browny */
  padding: 60px 20px;
  border-top: 1px solid rgba(91, 58, 41, 0.12);
}

.browny-links-container{
  max-width: 1200px;
  margin: 0 auto;
}

.browny-links-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}

.browny-links-col h3{
  font-family: "Recoleta", serif;
  font-weight: 700;
  font-size: 32px;
  color: #5b3a29;
  margin-bottom: 18px;
  line-height: 1.1;
}

.browny-links-col a{
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #5b3a29;
  text-decoration: none;
  margin-bottom: 14px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.browny-links-col a:hover{
  opacity: 0.7;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px){
  .browny-links-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .browny-links-col h3{
    font-size: 28px;
  }
}

@media (max-width: 576px){
  .browny-links{
    padding: 45px 20px;
  }

  .browny-links-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .browny-links-col h3{
    font-size: 26px;
    margin-bottom: 14px;
  }

  .browny-links-col a{
    font-size: 17px;
    margin-bottom: 12px;
  }
}





















/* BOTON PEDIR AHORA DEL HEADER */
.topbar .right .js-go-cajas{
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-8px) !important;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease !important;
}

/* SOLO APARECE AL HACER SCROLL */
body.is-scrolled .topbar .right .js-go-cajas,
.topbar.is-scrolled .right .js-go-cajas{
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}





.browny-prefooter{
  background: #fff;
  padding: 50px 20px 40px;
  border-top: 1px solid #eee;
  font-family: 'Poppins', sans-serif;
}

.browny-prefooter-container{
  max-width:1200px;
  margin:0 auto;

  display:flex;
  flex-direction:column;
  gap:30px;
}

/* FILAS */

.browny-prefooter-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px 40px;
  width:100%;
  text-align:center;
}

/* LINKS */

.browny-prefooter-row a{
  text-decoration:none;

  color:#5b2d1f;

  font-family:'Poppins', sans-serif;
  font-size:15px;
  font-weight:500;

  letter-spacing:.3px;

  transition:.2s ease;
}

.browny-prefooter-row a:hover{
  opacity:.6;
}





.dubai-banner{
  width:100%;
  padding:40px 0;
  background:#ffffff;
}

.dubai-banner__link{
  position:relative;
  display:block;
  width:100%;
  max-width:1000px; /* imagen un poco más chica */
  margin:0 auto;
  overflow:hidden;
  text-decoration:none;
}

.dubai-banner__link img{
  display:block;
  width:100%;
  height:auto;
  transition: transform .35s ease;
}

/* efecto suave al pasar el mouse por el banner */
.dubai-banner__link:hover img{
  transform: scale(1.03);
}

/* BOTON */
.dubai-banner__btn{
  position:absolute;

  left:50%;
  bottom:20px;
  transform:translateX(-50%);

  background:#000;
  color:#fff;

  padding:16px 36px;

  border-radius:999px;
  font-family:Poppins, sans-serif;
  font-size:15px;
  font-weight:600;

  letter-spacing:0.5px;

  cursor:pointer;
  transition:all .25s ease;
}

@media (max-width: 768px){
  .dubai-banner__btn{
    left: 50% !important;
    bottom: 12px !important;
    transform: translateX(-50%) !important;
    padding: 8px 16px;
    font-size: 11px;
    white-space: nowrap;
  }
}

/* animación hover */
.dubai-banner__btn:hover{
  transform:translateX(-50%) translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
}






















/* AJUSTES HERO BROWNY */
.hero-overlay{
  z-index: 3;
}

.hero-media{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f8d7e1;
}

.sound-toggle{
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 4;

  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 194, 214, 0.92);
  color: #4b2e2a;
  font-size: 18px;
  cursor: pointer;

  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  transform: translateY(8px) scale(.96);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}

.hero:hover .sound-toggle,
.hero:focus-within .sound-toggle{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sound-toggle:hover{
  background: #f2b8c6;
}


body:not(.is-scrolled) .topbar{
  background: #f2b8c6 !important;
}



main.page,
#order,
#hero,
.hero,
.hero--single,
.hero-track,
.hero-slide{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero{
  margin: 0 !important;
}

.hero-track{
  margin: 0 !important;
  height: calc(100dvh - var(--topbar-h));
}

.hero-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#hero{
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.hero-track,
.hero-slide,
.hero-media,
.hero-video{
  width: 100%;
}

.hero-video{
  display:block;
  object-fit:cover;
}

body{
  overflow-x: hidden;
}

body{
  border: none !important;
}

*{
  outline: none;
}



.browny-social{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:38px;              /* separación entre iconos */
  font-size:30px;        /* tamaño de iconos */
}

/* estilo base */

.browny-social a,
.browny-social span{
  color:#5b2d1f;         /* color browny */
  transition:.25s;
  cursor:pointer;        /* mano aunque no tenga link */
}

/* hover */

.browny-social a:hover,
.browny-social span:hover{
  transform:scale(1.2);
  opacity:.7;
}





































/* =========================================
   ¡¡ARREGLOS PARA LA VERSION MOBILEEEE!!
   ========================================= */
/* =========================================
   CAJAS.HTML — MOBILE FIX SEGURO
   PEGAR AL FINAL DE styles.css
   ========================================= */
@media (max-width: 768px){

  html,
  body{
    overflow-x: hidden !important;
  }

  /* TOPBAR */
  :root{
    --topbar-h: 58px;
  }

  .topbar{
    top: 0 !important;
    height: var(--topbar-h) !important;
    padding: 0 12px !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
  }

  .menu-btn{
    gap: 8px !important;
    font-size: 14px !important;
  }

  .menu-text{
    font-size: 13px !important;
  }

  .brand{
    justify-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .brand img{
    width: 118px !important;
    max-width: 118px !important;
    height: auto !important;
    object-fit: contain !important;
  }


  /* DRAWER */
  .drawer{
    width: min(88vw, 360px) !important;
  }

  .drawer-link{
    font-size: 18px !important;
  }

  /* SECCION PACKS */
  .packs-page{
    padding: 28px 14px 36px !important;
  }

  .packs-container{
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .packs-header{
    text-align: center !important;
    margin-bottom: 28px !important;
    padding: 0 4px !important;
  }

  .packs-header h1{
    font-size: 44px !important;
    line-height: 0.98 !important;
    margin: 0 0 14px !important;
    text-align: center !important;
  }

  .packs-header p{
    font-size: 16px !important;
    line-height: 1.45 !important;
    margin: 0 auto !important;
    max-width: 300px !important;
    text-align: center !important;
  }

  .packs-grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    justify-items: center !important;
  }

  .pack-card{
    width: min(100%, 330px) !important;
    margin: 0 auto !important;
    border-radius: 28px !important;
    overflow: hidden !important;
  }

  .pack-image-wrap{
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
    padding: 18px 18px 0 !important;
  }

  .pack-image{
    width: 100% !important;
    max-width: 220px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .pack-content{
    width: 100% !important;
    padding: 18px 18px 22px !important;
    text-align: center !important;
  }

  .pack-tag{
    display: inline-block !important;
    font-size: 13px !important;
    padding: 8px 14px !important;
    margin-bottom: 12px !important;
  }

  .pack-content h2{
    font-size: 22px !important;
    line-height: 1.15 !important;
    margin: 0 0 12px !important;
    text-align: center !important;
  }

  .pack-content p{
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin: 0 0 18px !important;
    text-align: center !important;
  }

  .pack-button{
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 190px !important;
    padding: 13px 20px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    margin: 0 auto !important;
  }

  /* PREFOOTER */
  .browny-prefooter{
    padding: 30px 16px 26px !important;
  }

  .browny-prefooter-container{
    gap: 16px !important;
  }

  .browny-prefooter-row{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    text-align: center !important;
    width: 100% !important;
  }

  .browny-prefooter-row a{
    font-size: 15px !important;
  }

  /* REDES */
  .browny-social{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 24px !important;
    font-size: 26px !important;
    flex-wrap: wrap !important;
  }

  .browny-social a,
  .browny-social span{
    cursor: pointer !important;
  }






   /* ===== CONTADOR BROWNY PREMIUM ===== */

.browny-urgency-banner {
  width: 100%;
  padding: 50px 16px;
  margin: 30px 0; 
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03), transparent 25%),
    linear-gradient(180deg, #4a1f14 0%, #5b2619 100%);
}

.browny-urgency-banner__box {
  max-width: 1200px;
  border: 2px solid rgba(200, 130, 100, 0.4);
  border-radius: 28px;
  padding: 34px 28px;
  background: rgba(255,255,255,0.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.browny-urgency-banner__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.browny-urgency-banner__line {
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.browny-urgency-banner__title {
  color: #f7e7e0;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  letter-spacing: 5px;
  font-weight: 700;
}

.browny-urgency-banner__center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.browny-urgency-banner__timer-box {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 18px 28px;
}

.browny-urgency-banner__timer-label {
  color: #f6dfd7;
  font-size: 26px;
}

.browny-urgency-banner__timer-value {
  color: #ffffff;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 2px;
}

.browny-urgency-banner__separator {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
}

.browny-urgency-banner__stock-pill {
  background: #f7d7df;
  color: #6b2d20;
  padding: 20px 34px;
  border-radius: 999px;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.browny-urgency-banner__bottom {
  margin-top: 26px;
  text-align: center;
  color: #f2ddd6;
  font-size: 22px;
}

/* 📱 MOBILE PERFECTO */
@media (max-width: 768px) {

  .browny-urgency-banner {
    padding: 30px 12px;
  }

  .browny-urgency-banner__title {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .browny-urgency-banner__line {
    width: 60px;
  }

  .browny-urgency-banner__center {
    flex-direction: column;
    gap: 16px;
  }

  .browny-urgency-banner__separator {
    display: none;
  }

  .browny-urgency-banner__timer-box {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .browny-urgency-banner__timer-label {
    font-size: 20px;
  }

  .browny-urgency-banner__timer-value {
    font-size: 42px;
  }

  .browny-urgency-banner__stock-pill {
    width: 100%;
    text-align: center;
    font-size: 26px;
    padding: 18px;
  }

  .browny-urgency-banner__bottom {
    font-size: 18px;
  }
}

/* ===== FIN ===== */

  /* FOOTER */
  .footer{
    padding: 34px 16px 28px !important;
  }

  .footer__inner{
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    text-align: center !important;
  }

  .footer__brand,
  .footer__nav,
  .footer__social-block{
    align-items: center !important;
  }

  .footer__brand img{
    width: 124px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .footer__tagline{
    max-width: 320px !important;
    text-align: center !important;
  }

  .footer__bottom{
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
    margin-top: 22px !important;
  }

  .footer__copy{
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
}


















/* Bloque legacy removido: forzaba logo centrado y menú a la izquierda */




/* =================================
   DUBAI CARD MOBILE FIX
   ================================= */

@media (max-width:768px){

  .dubai-banner{
    padding:28px 6px;
  }

  .dubai-banner__link img{
    width:100%;
    height:auto;
    display:block;
  }

  .dubai-banner__btn{
    left:58%;
    bottom:12px;
    transform:translateX(-50%);
    padding:6px 12px;
    font-size:10px;
    border-radius:999px;
    white-space:nowrap;
  }

}



/* =========================================
   MOBILE HERO + TOPBAR + DUBAI FINAL
   ========================================= */
@media (max-width: 768px){

  html,
  body{
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
  }

  /* barra marrón superior */
  .top-announcement{
    position: sticky !important;
    top: 0 !important;
    z-index: 300 !important;
  }

  /* topbar se controla con el bloque unificado de #inicio */
  }

  /* HERO VIDEO DESKTOP / MOBILE */
.hero-video--mobile{
  display: none;
}

.hero-video--desktop{
  display: block;
}

@media (max-width: 768px){

  .hero{
    margin: 0 !important;
    background: #f8d7e1 !important;
  }

  .hero-track{
    height: auto !important;
    min-height: auto !important;
    overflow: hidden !important;
  }

  .hero-slide{
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .hero-media{
    position: relative !important;
    width: 100% !important;
    height: 72vh !important;
    overflow: hidden !important;
    background: #f8d7e1 !important;
  }

  .hero-video--desktop{
    display: none !important;
  }

  .hero-video--mobile{
    display: block !important;
  }

  .hero-video{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .hero-overlay{
    position: absolute !important;
    inset: 0 !important;
    z-index: 3 !important;
    padding: 12px 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-overlay h1,
  .hero-overlay .headline{
    font-size: clamp(22px, 9vw, 40px) !important;
    line-height: .95 !important;
    margin: 0 !important;
    text-align: center !important;
    word-break: break-word !important;
  }

  .hero-overlay p,
  .hero-overlay .subheadline{
    font-size: 12px !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  .sound-toggle{
    opacity: 1 !important;
    right: 10px !important;
    bottom: 10px !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 15px !important;
    z-index: 6 !important;
  }
}

 

  
/* BOTON FIJO MOBILE */
.mobile-fixed-order-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-fixed-order-btn {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  }

  body {
    padding-bottom: 90px;
  }
}



