/* Custom styling for print support inside the Estimator */
@media print {
  body * {
    visibility: hidden;
  }
  #printable-quotation-target, #printable-quotation-target * {
    visibility: visible;
  }
  #printable-quotation-target {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: white !important;
    color: black !important;
    border: none !important;
    padding: 20px !important;
  }
  /* Set light colors for print elements */
  #printable-quotation-target * {
    color: black !important;
  }
  #printable-quotation-target .text-amber-500,
  #printable-quotation-target .text-amber-400 {
    color: #b45309 !important; /* amber-700 */
    font-weight: bold !important;
  }
  #printable-quotation-target .bg-neutral-900,
  #printable-quotation-target .bg-neutral-950,
  #printable-quotation-target .bg-amber-500\/5 {
    background: #f3f4f6 !important; /* light gray bg */
    border: 1px solid #e5e7eb !important;
  }
}

/* Base custom font integration matched to user specifications */
body {
  font-family: "TT Hoves";
  scroll-behavior: smooth;
  height: 100%;
  background-color: #001b2f; /* CHOSEN BLUE */
  color: #b6b6b6; /* CHRISTMAS SILVER */
}

/* Principal / INTER BOLD para títulos, botones, etiquetas y logotipos */
h1, h2, h3, h4, h5, h6, 
button, 
input, 
select, 
textarea, 
label, 
.nav-link, 
.font-display, 
.font-principal,
.logo-title {
  font-family: "Inter", sans-serif !important;
  font-weight: 700 !important; /* Inter Bold */
}

/* Forzar regular weight en el texto de párrafo y descriptivo con TT Hoves y fallbacks elegantes */
p, li, .font-secundaria {
  font-family: "TT Hoves", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 400;
}

/* Efecto de texto con delineado blanco y relleno transparente */
.text-outline-white {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-weight: 800 !important;
  color: transparent !important;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.95);
  text-stroke: 0.5px rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .text-outline-white {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.95);
    text-stroke: 1.5px rgba(255, 255, 255, 0.95);
  }
}

/* Ocultar barra de desplazamiento para navegación horizontal elegante en móvil */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;  /* IE y Edge */
  scrollbar-width: none;  /* Firefox */
}
