* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1a1612;
  color: #f2e6cf;
  font-family: 'Inter', sans-serif;
  overflow: hidden; /* 🔥 bloquea scroll en PC */
}

.container {
  display: flex;
  height: 100vh;
}

/* IMAGEN */
.image {
  flex: 1;
  background: linear-gradient(180deg, #f5ecd8 0%, #d6c5a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image img {
  width: 78%;
  height: auto;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.75)) contrast(1.04);
}

/* INFO */
.info {
  flex: 1;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge {
  background: #8b2c1c;
  color: #fff;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  width: fit-content;
  margin-bottom: 18px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 13px;
  letter-spacing: 1.5px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.prices {
  margin-bottom: 22px;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.35;
  margin-right: 12px;
}

.new-price {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
}

.label {
  display: block;
  font-size: 13px;
  font-style: italic;
  margin-top: 4px;
  opacity: 0.7;
}
.btn-info {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 15px auto 0;
  padding: 14px;
  text-align: center;
  border-radius: 40px;
  border: 2px solid #c89b3c;
  color: #c89b3c;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  background: transparent;
  transition: 0.3s;
}

.btn-info:hover {
  background: #c89b3c;
  color: #120d09;
}

/* PREMIO */
.prize-box {
  border-left: 3px solid #8b2c1c;
  padding-left: 14px;
  margin-bottom: 22px;
}

.prize-title {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

.prize-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
}

/* TIMER */
.timer-box {
  background: #0f0c09;
  padding: 18px;
  margin-bottom: 26px;
}

.timer-title {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 6px;
}

.timer {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
}

/* BOTÓN */
.buy {
  background: #f2e6cf;
  color: #1a1612;
  text-decoration: none;
  padding: 18px 30px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.2px;
  width: fit-content;
  transition: all 0.25s ease;
}

.buy:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

/* MOBILE — ESTILO INSTAGRAM */
@media (max-width: 768px) {
    
      body {
    overflow-y: auto; /* permite scroll en teléfono */
  }

  .container {
    flex-direction: column;
    height: auto;
  }

  .image {
    min-height: 65vh;
  }

  .image img {
    width: 92%;
    margin-top: 20px;
  }

  .info {
    padding: 22px 20px 120px;
  }

  h1 {
    font-size: 28px;
  }

  .new-price {
    font-size: 34px;
  }

  .buy {
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    text-align: center;
    font-size: 16px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  }
}
