html {
      scroll-behavior: smooth;
    }
    body {
      background-color: #fdf6ee;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #3e3e3e;
      padding-top: 70px; /* Compensa la navbar fija */
    }
    
    .navbar {
      background-color: #fffaf5 !important;
      border-bottom: 2px solid #000;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
    }

    .fixed-top {
      z-index: 1030;
    }

    .navbar-brand img {
      width: 25px;
      height: auto;
    }

    h1, h2, .display-5, .display-6 {
      color: #5d3a00;
    }

    .nav-link {
      color: #5d3a00 !important;
      font-weight: 500;
    }

    .nav-link:hover {
      color: #d17c44 !important;
    }

    .btn-outline-success {
      border-color: #5d3a00;
      color: #5d3a00;
    }

    .btn-outline-success:hover {
      background-color: #5d3a00;
      color: #fff;
    }

    .img-title-bg {
      background-color: rgba(255, 255, 255, 0.8);
      padding: 0.5rem 1rem;
      border-radius: 8px;
      border: 1px solid #000;
      display: inline-block;
    }

    .product-img {
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .product-img:hover {
      transform: scale(1.05);
    }

    .card-title {
      font-weight: 600;
      color: #5d3a00;
    }

    .card-text {
      font-size: 0.95rem;
      color: #4f4f4f;
    }

    .btn-outline-dark {
      border-color: #5d3a00;
      color: #5d3a00;
    }

    .btn-outline-dark:hover {
      background-color: #5d3a00;
      color: #fff;
    }

    .seccion-clara {
      background-color: #fdf6ee;
    }

    .seccion-oscura {
      background-color: #e6d9cc;
    }
    .zoom-link {
  transition: transform 0.3s ease;
  display: block;
  border-radius: 12px;
}

.zoom-img {
  transition: transform 0.3s ease;
}

.zoom-link:hover .zoom-img {
  transform: scale(1.08);
}
/* Estilo para los toasts */
.toast {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 300px;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.toast .toast-body {
  margin-right: 16px;
  color: #333;
}

.toast .btn-close {
  background-color: transparent;
  border: none;
  color: #6c757d;
}

.toast .btn-close:hover {
  color: #5a6268;
}
.btn-danger {
    background-color: red !important;
    color: white !important;
}
#notificacionModal .modal-dialog {
  z-index: 2000 !important;
}