/* Exquisory Unlock Page Styles */

/* Reset y contenedor principal */
.exquisory-unlock-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.exquisory-unlock-box {
  max-width: 400px;
  width: 100%;
  background: #ffffff;
  text-align: center;
}

/* Header */
.exquisory-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.exquisory-logo {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
  color: #000000;
}

.exquisory-shop-link {
  font-size: 14px;
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.exquisory-shop-link:hover {
  color: #d97398;
}

/* Isotipo SVG */
.exquisory-skull-container {
  margin: 40px auto;
  max-width: 200px;
}

.exquisory-skull {
  width: 100%;
  height: auto;
  display: block;
}

/* Asegurar que el SVG y sus estilos se apliquen correctamente */
.exquisory-skull path {
  fill: none;
  stroke: #df64a5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8px;
}

/* Animación de dibujo del SVG */
.exquisory-skull .svg-elem-1 {
  stroke-dashoffset: 1658.753173828125px;
  stroke-dasharray: 1658.753173828125px;
  -webkit-transition: stroke-dashoffset 3s cubic-bezier(0.47, 0, 0.745, 0.715)
    0s;
  transition: stroke-dashoffset 3s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}

.exquisory-skull.active .svg-elem-1 {
  stroke-dashoffset: 0;
}

/* Contenido */

.exquisory-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 30px;
  line-height: 34px;
  font-family: 'Open Sans', sans-serif;
}

/* Mensajes de error */
.exquisory-error {
  background-color: #ffebee;
  color: #c62828;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.exquisory-error i {
  font-size: 20px;
}

/* Formulario */
.exquisory-form {
  margin-top: 30px;
}

.exquisory-code-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.exquisory-code-input {
  width: 50px;
  height: auto;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  border: none;
  border-bottom: 2px solid #000000;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
  outline: none;
  text-transform: uppercase;
  padding: 8px 0;
}

.exquisory-code-input:focus {
  border-bottom-color: #df64a5;
  box-shadow: none;
}

.exquisory-code-input:valid {
  border-bottom-color: #df64a5;
  background: transparent;
}

/* Botón de envío */
.exquisory-submit-btn {
  width: 100%;
  max-width: 400px;
  padding: 16px 32px;
  font-size: 20px;
  font-weight: 400;
  color: #666666;
  background: #f4f1ee;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.exquisory-submit-btn:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.exquisory-submit-btn:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .exquisory-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .exquisory-logo {
    font-size: 28px;
  }

  .exquisory-skull-container {
    max-width: 200px;
    margin: 30px auto;
  }


  .exquisory-code-input {
    width: 45px;
    height: auto;
    padding: 6px 0;
  }

}

@media (max-width: 480px) {
  .exquisory-code-inputs {
    gap: 6px;
  }

  .exquisory-code-input {
    width: 40px;
    height: auto;
    padding: 4px 0;
  }
}

/* Ocultar columnas laterales en esta página */
#wrapper .container {
  max-width: 100%;
}

/* Breadcrumb personalizado */
.exquisory-unlock-container ~ .breadcrumb {
  display: none;
}

