/* Ficha de producto — fondo neutro, header blanco */
body.nc-producto-page {
  background: #f4f7f5;
  min-height: 100vh;
}

body.nc-producto-page .nc-destacados {
  border-top-color: #e8ece9;
}

body.nc-producto-page .nc-destacados__viewport::before {
  background: linear-gradient(90deg, #f4f7f5 25%, transparent);
}

body.nc-producto-page .nc-destacados__viewport::after {
  background: linear-gradient(270deg, #f4f7f5 25%, transparent);
}

.nc-producto-wrap {
  padding: 1rem 0 2rem;
}

.nc-producto-card {
  background: #fff;
  border: 1px solid #e8ece9;
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(27, 67, 50, 0.1);
  padding: 1.25rem;
  overflow: visible;
}

.nc-producto-card > .row {
  align-items: flex-start;
}

.nc-producto-gallery {
  padding: 0.5rem 1rem 0.5rem 0.5rem;
}

.nc-producto-main-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: #fafbfa;
  border: 1px solid #eef1ef;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.85rem;
}

.nc-producto-main-img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  margin: 0 auto;
}

.nc-producto-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.nc-producto-thumb {
  flex: 0 0 calc(20% - 0.4rem);
  max-width: 72px;
  border: 2px solid #e8ece9;
  border-radius: 8px;
  padding: 0.25rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.nc-producto-thumb:hover,
.nc-producto-thumb--active {
  border-color: #28a745;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.nc-producto-thumb img {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

.nc-producto-info {
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}

.nc-producto-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1b4332;
  text-decoration: none;
  margin-bottom: 0.85rem;
}

.nc-producto-back:hover {
  color: #28a745;
  text-decoration: none;
}

.nc-producto-title {
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  font-weight: 700;
  color: #1b4332;
  line-height: 1.35;
  margin: 0 0 0.75rem;
}

.nc-producto-especial {
  background: #f4fbf6;
  border: 1px solid #c5e8d0;
  border-left: 4px solid #28a745;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: #2b4a38;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.nc-producto-listas-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6c757d;
  margin: 0 0 0.65rem;
}

.nc-producto-listas {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.nc-producto-lista {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem;
  border: 2px solid #e8ece9;
  border-radius: 12px;
  background: #fafbfa;
  transition: box-shadow 0.15s, transform 0.15s;
}

.nc-producto-lista:hover {
  box-shadow: 0 4px 14px rgba(27, 67, 50, 0.08);
  transform: translateY(-1px);
}

.nc-producto-lista__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.nc-producto-lista__meta {
  flex: 1 1 auto;
  min-width: 0;
}

.nc-producto-lista__nombre {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.nc-producto-lista__minimo {
  display: block;
  font-size: 0.72rem;
  color: #6c757d;
}

.nc-producto-lista__precio {
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b4332;
  white-space: nowrap;
  line-height: 1.3;
}

.nc-producto-lista__btn {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-producto-mantenimiento {
  background: #fde8e8;
  border: 1px solid #f5c2c2;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: #842029;
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .nc-producto-gallery {
    padding: 0;
    margin-bottom: 1.25rem;
    width: 100%;
  }

  .nc-producto-info {
    padding: 0;
    width: 100%;
  }

  .nc-producto-main-img {
    min-height: 240px;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .nc-producto-wrap {
    padding-top: 0.65rem;
  }

  .nc-producto-card {
    padding: 1rem 0.85rem;
    border-radius: 12px;
  }

  .nc-producto-main-img {
    min-height: 0;
    aspect-ratio: 1 / 1;
    max-height: none;
    padding: 1.15rem;
  }

  .nc-producto-main-img img {
    max-height: min(72vw, 320px);
    width: auto;
    height: auto;
    max-width: 100%;
  }

  .nc-producto-thumb {
    flex: 0 0 calc(25% - 0.4rem);
  }

  .nc-producto-lista {
    padding: 0.85rem;
    gap: 0.75rem;
  }

  .nc-producto-lista__top {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .nc-producto-lista__precio {
    font-size: 1.2rem;
    padding: 0.35rem 0;
    border-top: 1px dashed #dee2e6;
    border-bottom: 1px dashed #dee2e6;
    text-align: center;
  }

  .nc-producto-lista__btn {
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
    min-height: 48px;
  }
}
