:root{
  --bg1:#070812;
  --bg2:#0b0c1b;

  --glass: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.12);
  --stroke2: rgba(255,255,255,.10);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);

  --pink:#ff4fd8;
  --violet:#6366f1;

  --radius: 22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(99,102,241,.25), transparent 60%),
    radial-gradient(1200px 700px at 80% 15%, rgba(255,79,216,.25), transparent 60%),
    linear-gradient(180deg, var(--bg2), var(--bg1));
  overflow-x:hidden;
}

a{ color:inherit; }
.muted{ color: var(--muted); }

/* =========================
   AMBIENT + CURSOR GLOW
========================= */
.ambient{
  position: fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 10% 0%, rgba(99,102,241,.18), transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(255,79,216,.16), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,.06), transparent 55%);
  opacity: .9;
  z-index:0;
}

.cursorGlow{
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  pointer-events:none;
  opacity: 0;
  z-index: 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at center, rgba(99,102,241,.20), transparent 55%),
    radial-gradient(circle at center, rgba(255,79,216,.14), transparent 60%);
  filter: blur(2px);
}


/* =========================
   CONTAINER
========================= */
.container{
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 22px 0 90px;
}

/* =========================
   BUTTONS + LINKS
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:0;
  cursor:pointer;
  text-decoration:none;
  color:#fff;
  font-weight: 950;
  border-radius: 999px;
  padding: 12px 16px;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 18px 70px rgba(0,0,0,.35); }
.btn--primary{
  background: linear-gradient(90deg, rgba(99,102,241,.95), rgba(255,79,216,.88));
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}
.btn--sm{ padding: 10px 14px; font-size: 13px; }
.btn--block{ width:100%; }

.link{
  color:#fff;
  text-decoration:none;
  border-bottom: 1px solid rgba(255,79,216,.35);
}
.link:hover{ border-bottom-color: rgba(255,79,216,.75); }

/* =========================
   NAVBAR + MOBILE MENU
========================= */
.nav{
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 20, .55);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.nav__inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 10px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  min-height: 76px;
}

.nav__logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

/* Logo */
.nav__logo img{
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(255,79,216,.45);
  box-shadow: 0 18px 70px rgba(0,0,0,.40), 0 0 40px rgba(255,79,216,.18);
  object-fit: cover;
  object-position: center 60%;
  display:block;
  /* RECORTE para esconder borde negro tipo sticker */
  clip-path: circle(49% at 50% 50%);
  transform: scale(1.15);
}


.nav__links{
  display:flex;
  gap: 18px;
  align-items:center;
  justify-content:center;
  font-weight: 900;
}
.nav__links a{
  text-decoration:none;
  color: rgba(255,255,255,.86);
  opacity:.9;
}
.nav__links a:hover{ opacity:1; }

.nav__right{
  display:flex;
  align-items:center;
  gap:10px;
}

.cartCount{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 22px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  margin-left: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 1000;
}

/* Burger */
.nav__burger{
  display:none;
  width: 46px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.nav__burger span{
  display:block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius: 99px;
  box-shadow: 0 0 16px rgba(255,79,216,.18);
}

/* Drawer */
.navDrawer{
  display:none;
  width: min(420px, 92vw);
  margin: 10px auto 14px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 90px rgba(0,0,0,.45);
}
.navDrawer.is-open{ display:block; }
.navDrawer__link{
  display:block;
  padding: 12px 12px;
  border-radius: 16px;
  text-decoration:none;
  color:#fff;
  font-weight: 900;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 10px;
}
.navDrawer__link:hover{ transform: translateY(-1px); }

@media (max-width: 880px){
  .nav__links{ display:none; }
  .nav__burger{ display:inline-flex; }
}
@media (max-width:520px){
  .nav__logo img{ width: 72px; height: 72px; }
  .nav__inner{ min-height: 70px; }
}

/* =========================
   HERO FULL IMAGE (FULL BLEED)
   (asumiendo que el <section class="heroFull"> está FUERA del .container)
========================= */
.heroFull{
  position: relative;
  width: 100%;
  height: min(78vh, 720px);
  min-height: 520px;
  overflow: hidden;
  margin: 0;               /* pegado al navbar */
  border-radius: 0;        /* full ancho real */
}

.heroFull__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center 58%;
  display:block;
  filter: saturate(1.10) contrast(1.10) brightness(1.03);
  transform: scale(1.02);
}

.heroFull__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1100px 600px at 18% 35%, rgba(255,79,216,.22), transparent 60%),
    radial-gradient(1100px 600px at 78% 35%, rgba(99,102,241,.22), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.40) 52%, rgba(0,0,0,.58) 100%);
  pointer-events:none;
}

/* =========================
   HERO TITLE OVER IMAGE
========================= */
.heroFull__title{
  position: absolute;
  left: 50%;
  top: clamp(90px, 10vh, 150px);   /* siempre arriba del sillón */
  transform: translateX(-50%);     /* centrado horizontal */
  z-index: 6;
  text-align: center;
  width: min(900px, 92vw);
  pointer-events: none;
}

/* Tablet */
@media (max-width: 920px){
  .heroFull__title{
    top: 20%;
  }
}

/* Cuando achicás la ventana en desktop (sin llegar a mobile) */
@media (max-width: 1100px){
  .heroFull__title{
    top: clamp(70px, 8vh, 120px);
  }
}

/* Variante para el título dentro del hero */
.brandTitle--hero{
  align-items: center;
}

/* Opcional: un poquito más grande en el hero */
.brandTitle--hero .brandTitle__eleven{
  font-size: clamp(54px, 6vw, 86px);
}

.brandTitle--hero .brandTitle__showroom{
  font-size: clamp(46px, 5vw, 76px);
  margin-top: -14px;
}

/* Responsive: lo subimos un poco para que no quede tan abajo */
@media (max-width: 520px){
  .heroFull__title{
    top: 56%;
  }
}


/* Eros badge */
.petBadge{
  position:absolute;
  right: 22px;
  bottom: 18px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  padding: 10px;
  z-index: 5;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 26px 90px rgba(0,0,0,.55),
    0 0 60px rgba(255,79,216,.20);
  backdrop-filter: blur(10px);
}

.petBadge__img{
  width:100%;
  height:100%;
  border-radius: 999px;
  object-fit: cover;
  display:block;
  filter: saturate(1.08) contrast(1.08);
}

@media (max-width: 860px){
  .petBadge{ right: 14px; bottom: 14px; width: 104px; height: 104px; }
}
@media (max-width: 520px){
  .heroFull{ min-height: 440px; }
  .petBadge{ width: 92px; height: 92px; }
}

/* =========================
   HERO CONTENT (AFUERA DE LA IMAGEN)
========================= */
.heroContent{
  padding: 26px 0 10px;
}

.heroContent__grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 920px){
  .heroContent__grid{ grid-template-columns: 1fr; }
  .heroContent__left{ text-align:center; }
  .hero__cta{ justify-content:center; }
}

/* Títulos */
.brandTitle{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.brandTitle__eleven{
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 0.95;
  font-weight: 1000;
  letter-spacing: 2px;
  color:#fff;
  text-shadow:
    -1px -1px 0 rgba(255,79,216,.95),
     1px -1px 0 rgba(255,79,216,.95),
    -1px  1px 0 rgba(255,79,216,.95),
     1px  1px 0 rgba(255,79,216,.95),
     0 0 22px rgba(255,79,216,.45),
     0 0 60px rgba(255,79,216,.22);
}

.brandTitle__showroom{
  font-family: "Great Vibes", cursive;
  font-size: clamp(40px, 4.4vw, 62px);
  color: var(--pink);
  margin-top: -10px;
  text-shadow:
    0 0 14px rgba(255,79,216,.55),
    0 0 38px rgba(255,79,216,.30),
    0 0 70px rgba(255,79,216,.18);
}

.hero__subtitle{ margin-top: 8px; font-weight: 700; }
.hero__cta{ display:flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }

/* Info outside */
.infoOutside{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 26px 90px rgba(0,0,0,.35);
}
.infoOutside__row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 10px;
}
.infoOutside__row:last-child{ margin-bottom:0; }

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 950;
}

/* =========================
   SECTIONS
========================= */
.section{ margin-top: 44px; }
.sectionHead h2{
  margin:0;
  font-size: 26px;
  font-weight: 1000;
}
.sectionHead p{ margin:8px 0 0; }

/* Grid */
.grid{ display:grid; gap: 12px; }

/* Products grid + cards */
.grid--products{ grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 980px){
  .grid--products{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .grid--products{ grid-template-columns: 1fr; }
}

.card{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: 0 26px 90px rgba(0,0,0,.35);
}
.card__img{
  display:block;
  height: 220px;
  overflow:hidden;
}
.card__img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1);
  transition: transform .22s ease;
}
.card:hover .card__img img{ transform: scale(1.04); }

.card__body{ padding: 14px; }
.card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.card__title{
  margin: 0;
  font-weight: 1000;
  font-size: 16px;
}
.card__price{
  font-weight: 1000;
  white-space: nowrap;
  color: rgba(255,255,255,.92);
}
.card__desc{
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.35;
}

.input{
  width:100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color:#fff;
  outline:none;
}
.input:focus{
  border-color: rgba(255,79,216,.35);
  box-shadow: 0 0 0 4px rgba(255,79,216,.10);
}

/* Showroom grid */
.grid--showroom{ grid-template-columns: repeat(6, minmax(0,1fr)); }
@media (max-width: 980px){ .grid--showroom{ grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 520px){ .grid--showroom{ grid-template-columns: repeat(2, minmax(0,1fr)); } }

.shot{
  display:block;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
}
.shot:hover{ transform: translateY(-2px); box-shadow: 0 26px 90px rgba(0,0,0,.45); }
.shot img{ width:100%; height:100%; object-fit: cover; display:block; }

/* Steps */
.steps{ display:grid; gap: 12px; margin-top: 12px; }
.step{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: 14px;
}
.step__n{
  width: 34px; height: 34px;
  border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 1000;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
}
.step__t{ font-weight: 1000; }

/* Empty */
.emptyState{
  margin-top: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 26px 100px rgba(0,0,0,.45);
}
.emptyState__title{ font-weight: 1000; font-size: 16px; }

/* Reveal */
.reveal{ opacity:0; transform: translateY(10px); transition: .5s ease; }
.reveal.is-visible{ opacity:1; transform: translateY(0); }

/* Contact aligned right (desktop) */
#contacto{
  display:flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
#contacto .sectionHead{ width: min(520px, 100%); }
#contacto .btn{ margin-top: 10px; }
@media (max-width: 920px){
  #contacto{ align-items: flex-start; text-align:left; }
}

/* Footer centered */
.footer{
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 26px 0 40px;
  color: rgba(255,255,255,.72);
  border-top: 1px solid rgba(255,255,255,.10);
  text-align:center;
}
.footer b{ color: rgba(255,255,255,.92); }

/* =========================
   ADMIN BAR (premium)
========================= */
.adminBar{
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 20, .55);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.adminBar__inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.adminBar__title{
  font-weight: 1000;
  letter-spacing: .2px;
  color: var(--pink);
  text-shadow: 0 0 28px rgba(255,79,216,.32);
}
.adminBar__sub{
  font-size: 12px;
  color: rgba(255,255,255,.72);
  margin-top: 2px;
  font-weight: 800;
}
.adminBar__right{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}
.adminBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration:none;
  color:#fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .18s ease, box-shadow .18s ease;
}
.adminBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 60px rgba(0,0,0,.35);
}
.adminBtn--danger{
  background: rgba(239,68,68,.10);
  border-color: rgba(239,68,68,.18);
}

/* =========================
   CART DRAWER (side panel)
========================= */
.cartDrawer{
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  transform: translateX(110%);
  transition: transform .22s ease;
  z-index: 5000;
  background: rgba(10,10,20,.86);
  border-left: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: -40px 0 120px rgba(0,0,0,.65);
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.cartDrawer.is-open{ transform: translateX(0); }

.cartBackdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  z-index: 4999;
  display:none;
}
.cartBackdrop.is-open{ display:block; }

.cartTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.cartTop__title{
  font-weight: 1000;
  color: var(--pink);
  text-shadow: 0 0 26px rgba(255,79,216,.30);
}
.cartClose{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff;
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 1000;
  cursor:pointer;
}

.cartList{
  flex: 1;
  overflow:auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding: 10px;
}
.cartEmpty{
  color: rgba(255,255,255,.75);
  padding: 14px;
}

.cartBottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 12px;
}
.cartTotalRow{
  display:flex;
  justify-content:space-between;
  font-weight: 1000;
  margin-bottom: 10px;
}
.navDrawer__cta{ margin-top:10px; }

/* =========================
   ADMIN MODAL (Modo admin)
========================= */
.adminSecret{
  position: fixed;
  left: 12px;
  bottom: 12px;
  width: 14px;
  height: 14px;
  opacity: 0;            /* invisible pero clickeable si tu JS lo usa */
  z-index: 9998;
  border: 0;
  background: transparent;
}

/* Contenedor modal */
.adminModal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;         /* se prende con JS (agregando clase o cambiando aria) */
}

/* Si tu JS usa aria-hidden */
.adminModal[aria-hidden="false"]{
  display: block;
}

/* Backdrop */
.adminModal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
}

/* Card centrada */
.adminModal__card{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: min(520px, 92vw);
  padding: 18px;
  border-radius: 20px;

  background: rgba(10,10,20,.88);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 26px 120px rgba(0,0,0,.65);

  color: rgba(255,255,255,.92);
}

/* Textos */
.adminModal__title{
  font-weight: 1000;
  color: var(--pink);
  text-shadow: 0 0 26px rgba(255,79,216,.28);
}

.adminModal__sub{
  margin-top: 6px;
  color: rgba(255,255,255,.75);
  font-weight: 800;
}

/* Field */
.adminModal__field{
  margin-top: 12px;
}
.adminModal__field label{
  display:block;
  font-weight: 900;
  margin-bottom: 6px;
}
.adminModal__field input{
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: #fff;
  outline: none;
}
.adminModal__field input:focus{
  border-color: rgba(255,79,216,.35);
  box-shadow: 0 0 0 4px rgba(255,79,216,.10);
}

/* Botones */
.adminModal__actions{
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* =========================
   FOOTER + FIRMA CREADOR
========================= */
.footer{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.footer__copy{
  margin-top: 8px;
  font-size: 13px;
}

.footer__adminLink{ margin-top:10px; }
.footer__admin{
  text-decoration:none;
  opacity:.55;
  font-weight:900;
}
.footer__admin:hover{ opacity:.8; }

.creatorSig{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  color: rgba(255,255,255,.92);

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 70px rgba(0,0,0,.25);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.creatorSig:hover{
  transform: translateY(-1px);
  box-shadow: 0 26px 90px rgba(0,0,0,.35);
  opacity: 1;
}

/* Responsive */
@media (max-width: 720px){
  .footer{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* =========================
   Firma EP (círculo clickeable)
========================= */
.creatorBadge{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 70px rgba(0,0,0,.25);

  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  opacity: .9;
}

.creatorBadge:hover{
  transform: translateY(-1px);
  box-shadow: 0 26px 90px rgba(0,0,0,.35);
  opacity: 1;
}

.creatorBadge img{
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
  border-radius: 999px;
  filter: saturate(1.1) contrast(1.05);
}
