:root{
  --bg: #f3f3f1;
  --card: #ffffff;
  --text: #111111;
  --muted: #666666;
  --line: #d7d7d2;
  --shadow: 0 20px 60px rgba(0,0,0,.10);
  --radius: 28px;
}

*{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
}

body{
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

a{
  text-decoration: none;
}

.hero-shell{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.hero-card{
  width: min(1380px, 100%);
  min-height: 860px;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  position: relative;
}

.hero-left{
  padding: 58px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.brand-top{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}

.brand-row{
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo{
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-name{
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 3vw, 3.5rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-location{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 400;
}

.hero-copy{
  max-width: 620px;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title{
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.4vw, 4.5rem);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-actions{
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn{
  min-width: 190px;
  padding: 17px 28px;
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn-dark{
  background: #111111;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.btn-dark:hover{
  background: #000000;
}

.btn-light{
  background: #ffffff;
  color: #111111;
  border: 1px solid #cfcfc9;
}

.btn-light:hover{
  background: #f7f7f5;
}

.hero-note{
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 520px;
}

.hero-title-small{
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
}

.hero-right{
  position: relative;
  height: 100%;
  min-height: 860px;
}

.hero-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-fade{
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.96) 0%,
    rgba(255,255,255,0.82) 20%,
    rgba(255,255,255,0.48) 48%,
    rgba(255,255,255,0.00) 100%
  );
  pointer-events: none;
}

.social-float-stack{
  position: fixed;
  right: 34px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.social-float{
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0;
  font-weight: 700;
  letter-spacing: normal;
}

.social-float-icon{
  width: 30px;
  height: 30px;
  fill: currentColor;
  display: block;
}

.social-whatsapp{
  background: #25D366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .34);
}

.social-instagram{
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 55%, #8134af 100%);
  box-shadow: 0 14px 34px rgba(221, 42, 123, .28);
}

.social-float.is-disabled{
  opacity: .45;
  pointer-events: none;
}

.btn-reset{
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.catalog-btn{
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.catalog-label{
  margin: 0;
  font-size: .95rem;
  letter-spacing: .18em;
  color: var(--muted);
  font-weight: 600;
}

.catalog-menu{
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.catalog-link{
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  color: var(--text);
  line-height: 1.15;
  transition: transform .18s ease, opacity .18s ease;
}

.catalog-link:hover{
  transform: translateX(4px);
  opacity: .75;
}

.catalog-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.section-intro{
  margin: 0;
  color: #5d564d;
  line-height: 1.6;
}

.catalog-side-note{
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f8f6f2;
  border: 1px solid #e6dfd5;
  color: #4f4941;
  line-height: 1.6;
}

.catalog-stack{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.line-products-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.line-product-card{
  background: #faf8f4;
  border: 1px solid #e7dfd5;
  border-radius: 30px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.line-product-card .product-gallery{
  gap: 12px;
}

.line-product-card .product-gallery-frame{
  max-width: 100%;
}

.line-product-card .detail-image-card{
  min-height: 360px;
  border-radius: 26px;
}

.line-product-body{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.line-product-kicker{
  margin: 0;
  color: #8d5a19;
  font-size: .92rem;
  font-weight: 700;
}

.line-product-name{
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.2;
}

.line-product-price{
  margin: 0;
  font-size: 1.65rem;
  font-weight: 700;
  color: #111111;
}

.line-product-description{
  margin: 0;
  color: #5c554d;
  line-height: 1.6;
}

.line-product-variants{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
}

.line-variant{
  padding: 12px 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e7dfd5;
}

.line-variant-color,
.line-variant-size{
  margin: 0;
}

.line-variant-color{
  color: #27231f;
  font-weight: 700;
}

.line-variant-size{
  margin-top: 6px;
  color: #5c554d;
  line-height: 1.5;
}

.line-variant-empty{
  background: #f3efe8;
}

.catalog-entry{
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e3ddd4;
}

.catalog-entry:last-child{
  padding-bottom: 0;
  border-bottom: none;
}

.detail-head{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

.detail-line{
  flex: 1;
  height: 1px;
  background: #d9d6d0;
}

.detail-title{
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.detail-images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.detail-images.single-photo{
  grid-template-columns: 1fr;
  max-width: 320px;
  margin: 0 auto;
}

.product-gallery{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-gallery-frame{
  position: relative;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.product-slide{
  display: none;
}

.product-slide.is-active{
  display: block;
}

.detail-image-card{
  border-radius: 16px;
  overflow: hidden;
  background: #efeeea;
  min-height: 280px;
}

.detail-image-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.gallery-nav span{
  font-size: 1.9rem;
  line-height: 1;
}

.gallery-prev{
  left: 14px;
}

.gallery-next{
  right: 14px;
}

.gallery-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gallery-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #d1cabf;
  cursor: pointer;
  padding: 0;
}

.gallery-dot.is-active{
  width: 28px;
  background: #111111;
}

.detail-meta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 1.4vw, 1.6rem);
  color: var(--text);
  padding: 8px 0 4px;
}

.detail-dot{
  color: #9a958b;
}

.detail-description{
  margin: 0;
  color: #47433d;
  line-height: 1.7;
  text-align: center;
}

.detail-table-wrap{
  border-top: 1px solid #ddd9d2;
  padding-top: 18px;
}

.detail-table-title{
  margin: 0 0 14px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  color: var(--text);
}

.detail-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.detail-table th,
.detail-table td{
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #e2ded7;
}

.detail-table th{
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.detail-table td{
  color: #47433d;
}

.detail-actions{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.combo-desc-block{
  padding: 4px 0 0;
}

.combo-desc{
  margin: 0;
  color: #3e3a35;
  line-height: 1.6;
  text-align: center;
}

.support-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.support-card{
  padding: 18px;
  border-radius: 18px;
  background: #f8f6f2;
  border: 1px solid #e6dfd5;
}

.support-card h3{
  margin: 6px 0 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
}

.support-card p:last-child{
  margin: 0;
  color: #504b44;
  line-height: 1.6;
}

.support-kicker{
  margin: 0;
  color: #7a7267;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
}

.faq-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item{
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e3ddd4;
}

.faq-item h3{
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
}

.faq-item p{
  margin: 0;
  color: #504b44;
  line-height: 1.6;
}

.empty-note{
  margin: 0;
  color: #6a655d;
}

.confirm-card{
  gap: 18px;
}

.confirm-message{
  margin: 0;
  color: #45413b;
  line-height: 1.7;
}

.address-card{
  padding: 16px 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e4ddd3;
}

.address-label{
  margin: 0 0 6px;
  color: #7a7267;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
}

.address-value{
  margin: 0;
  color: #24211d;
  font-size: 1.02rem;
  line-height: 1.6;
}

@media (max-width: 1100px){
  .hero-card{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left{
    order: 2;
    padding: 42px 28px 54px;
    gap: 28px;
  }

  .hero-right{
    order: 1;
    min-height: 560px;
  }

  .hero-fade{
    width: 100%;
    height: 38%;
    inset: auto 0 0 0;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.38) 35%,
      rgba(255,255,255,0.82) 72%,
      rgba(255,255,255,0.96) 100%
    );
  }

  .hero-copy{
    max-width: 100%;
  }
}

@media (max-width: 900px){
  .support-grid{
    grid-template-columns: 1fr;
  }

  .line-products-grid{
    grid-template-columns: 1fr;
  }

  .detail-images{
    grid-template-columns: 1fr;
  }

  .detail-image-card{
    min-height: 240px;
  }

  .line-product-card .detail-image-card{
    min-height: 300px;
  }

  .detail-meta{
    justify-content: flex-start;
  }

  .detail-actions{
    justify-content: stretch;
  }

  .detail-actions .btn{
    width: 100%;
  }
}

@media (max-width: 640px){
  .hero-shell{
    padding: 12px;
  }

  .hero-card{
    border-radius: 22px;
  }

  .hero-right{
    min-height: 430px;
  }

  .brand-logo{
    width: 48px;
    height: 48px;
  }

  .brand-name{
    font-size: 2.1rem;
  }

  .brand-location{
    font-size: .98rem;
  }

  .hero-title{
    font-size: 2.35rem;
  }

  .brand-top{
    flex-direction: column;
    align-items: flex-start;
  }

  .btn{
    width: 100%;
    min-width: auto;
    font-size: 1.05rem;
  }

  .social-float-stack{
    right: 18px;
    bottom: 18px;
  }

  .social-float{
    width: 62px;
    height: 62px;
  }

  .gallery-nav{
    width: 40px;
    height: 40px;
  }

  .gallery-prev{
    left: 10px;
  }

  .gallery-next{
    right: 10px;
  }
}

.steps-bar{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.step-pill{
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #ddd7ce;
  background: #f7f5f1;
  color: #5d564d;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.step-pill.active{
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  font-weight: 700;
}

.reserve-card{
  background: #f8f6f2;
  border: 1px solid #e6e0d6;
  border-radius: 20px;
  padding: 24px;
}

.reserve-title{
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}

.reserve-sub{
  margin: 0 0 22px;
  color: #5f5a52;
  line-height: 1.6;
}

.reserve-form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label{
  font-weight: 600;
  color: #27231f;
}

.reserve-input{
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d9d2c8;
  background: #ffffff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.reserve-input:focus{
  outline: none;
  border-color: #111111;
}

.reserve-summary{
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e4ddd3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reserve-summary p{
  margin: 0;
  color: #3d3934;
  line-height: 1.5;
}

.preferences-stack{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.preference-card{
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e4ddd3;
}

.preference-title{
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #1f1b18;
}

.preference-size-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.summary-preferences-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-preference-item{
  margin: 0;
  color: #3d3934;
  line-height: 1.5;
}

.step-panel{
  animation: fadeInSoft .22s ease;
}

.reserve-tip-box{
  background: #ffffff;
  border: 1px solid #e4ddd3;
  color: #4a443d;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: .96rem;
  line-height: 1.5;
}

.form-errors{
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e7c7c7;
  background: #fff7f7;
}

.form-errors p{
  margin: 0;
  color: #8b2e2e;
  line-height: 1.5;
}

.form-errors p + p{
  margin-top: 6px;
}

.field-error{
  margin: 8px 0 0;
  color: #8b2e2e;
  font-size: .94rem;
}

.step-inline-message{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #ead1d1;
  background: #fff7f7;
  color: #8b2e2e;
  font-size: .95rem;
  line-height: 1.5;
}

.horarios-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.horario-pill{
  min-width: 110px;
  cursor: pointer;
  user-select: none;
}

.horario-pill.active{
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  font-weight: 700;
}

.horarios-empty{
  margin: 4px 0 0;
  color: #6a655d;
  line-height: 1.5;
}

.panel-body{
  background: #f1efe9;
}

.panel-shell{
  min-height: 100vh;
  padding: 28px;
}

.panel-card{
  width: min(1180px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.panel-heading{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.panel-title{
  margin: 8px 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.panel-subtitle{
  margin: 0;
  max-width: 720px;
  color: #5c554d;
  line-height: 1.7;
}

.panel-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.panel-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.panel-item{
  padding: 22px;
  border-radius: 20px;
  background: #f8f6f2;
  border: 1px solid #e7dfd5;
}

.panel-item h2{
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
}

.panel-item p{
  margin: 0;
  color: #4f4941;
  line-height: 1.6;
}

.panel-item-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.panel-item-actions a{
  color: #111111;
  font-weight: 600;
}

.panel-note{
  padding: 18px 20px;
  border-radius: 18px;
  background: #111111;
  color: #ffffff;
}

.panel-note p{
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 640px){
  .horarios-wrap{
    gap: 10px;
  }

  .horario-pill{
    min-width: 96px;
  }

  .preference-size-grid{
    grid-template-columns: 1fr;
  }

  .panel-shell{
    padding: 12px;
  }

  .panel-card{
    padding: 24px;
    border-radius: 22px;
  }

  .panel-heading{
    flex-direction: column;
  }
}

@media (max-width: 980px){
  .panel-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px){
  .panel-grid{
    grid-template-columns: 1fr;
  }
}
