/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #f7f5f0;
  color: #333;
  font-family: "Montserrat", sans-serif !important;

}

.main-container {
  display: flex;
  flex-direction: row;
  /* max-width: 1200px; */
  /* margin: 40px auto; */
  padding: 20px;
  gap: 40px;

  /* Preguntar como quedaria */
  background-color: #ffffff;
}

.desing {
  /* background: #fffdf9; */
  background: #faf8f5;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* flex: 1; */
}

h1 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #2e2e2e;
}

h2 {
  font-size: 1.4em;
  margin-top: 30px;
  color: #2e2e2e;
}

/* .precio-lista {
  font-style: italic;
  color: #7a6a48;
} */

.color_brown {
  color: #988667;
}

.color_black {
  color: #333333;
}

/* .background_white {
  color: #ffffff;
} */

.btn {
  background-color: #988667;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 8px;
  cursor: pointer;
}

/* .slider {
  width: 100%;
  margin: 0 0 20px 0;
} */

.custom_range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #333333;
  border-radius: 100px;
  position: relative;
}

.custom_range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 6px;
  height: 30px;
  background: #333333;
  cursor: pointer;
  border-radius: 100px;
}

.custom_range::-moz-range-thumb {
  width: 6px;
  height: 30px;
  background: #333333;
  cursor: pointer;
  border-radius: 100px;
  border: none;
}

.place_i-end {
  place-items: end;
}

/* .checkbox-label {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
} */

/* .note {
  font-style: italic;
  color: #999;
} */

.line {
  border-top: 2px solid #1e1e1e;
  margin: 20px 0;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
    padding: 10px;
  }

  .desing {
    margin-bottom: 30px;
  }

  .btn {
    width: 100%;
    padding: 12px;
  }
}
