@charset "UTF-8";
img {
  width: 100%;
  height: 100%;
}

.container-title {
  font-size: 1.4rem;
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  margin-top: 7rem;
  padding: 30px;
  background-color: #eee;
  margin-bottom: 50px;
  color: #222;
}

main {
  display: flex;
  gap: 30px;
  margin: 0 6% 70px;
}

.container-img {
  background-color: #f7f7f7;
  width: 82%;
  height: 35rem;
}

.container-info-product {
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.container-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.container-price span {
  font-size: 1.8rem;
  font-weight: bold;
}

.container-details-product {
  margin-bottom: 1.5rem;
}

.container-description {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1rem;
}

.title-description {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.title-description i {
  transition: transform 0.3s ease;
}

.title-description.open i {
  transform: rotate(180deg);
}

.text-description {
  margin-top: 0.8rem;
  color: #4b5563;
}

.container-add-cart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.container-quantity {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quantity-btn:hover {
  background-color: #e5e7eb;
}

.quantity-btn.decrease {
  border-radius: 0.375rem 0 0 0.375rem;
}

.quantity-btn.increase {
  border-radius: 0 0.375rem 0.375rem 0;
}

.btn-add-to-cart:hover {
  background-color: #171a22;
}

.btn-add-to-cart i {
  margin-right: 0.5rem;
}

.espec-prod p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.espec-prod p::before {
  content: "•";
  margin-right: 0.5rem;
}

.alert {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.alert-success {
  background-color: #d1fae5;
  color: #065f46;
}

.form-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group label {
  width: 100px;
  color: #222;
  font-weight: 700;
}

.form-group select {
  width: 300px;
  border: none;
  padding: 12px 15px;
  background-color: #f7f7f7;
  outline: none;
  color: #666;
}

.btn-clean {
  border: none;
  background: none;
  color: #666;
  margin-left: 120px;
  cursor: pointer;
}

.btn-clean:hover {
  color: #1bbeb4;
}

.container-add-cart {
  display: flex;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e4e4e4;
}

.container-quantity {
  position: relative;
}

.input-quantity:focus {
  outline: none;
}

.input-quantity::-webkit-inner-spin-button,
.input-quantity::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

.fa-chevron-down:hover {
  color: #1bbeb4;
}

.fa-chevron-up:hover {
  color: #1bbeb4;
}

.btn-add-to-cart:hover {
  color: #ffffff;
}

.hidden {
  display: none;
}

.container-description,
.container-additional-information,
.container-reviews {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e4e4e4;
  padding: 10px 0;
}

.title-description,
.title-additional-information,
.title-reviews {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.container-related-products h2 {
  text-align: center;
  margin-bottom: 30px;
}

.card-list-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card {
  cursor: pointer;
}

.card-img {
  background: transparent;
  margin-bottom: 15px;
}

.card-img img {
  height: 400px;
  object-fit: cover;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.info-card {
  display: flex;
  justify-content: space-between;
}

.text-product {
  color: #252525;
  font-weight: 300;
  line-height: 1.4;
}

.text-product h3 {
  color: inherit;
  font-weight: inherit;
  font-size: 15px;
}

.text-product h3:hover {
  color: #1bbeb4;
}

.text-product p {
  color: #666;
  font-size: 13px;
}

.text-product p:hover {
  color: #1bbeb4;
}

footer {
  padding: 30px;
  background-color: #eee;
  margin-top: 50px;
  color: #222;
}

.productos-relacionados {
  margin-top: 40px;
  padding: 20px;
}

.productos-relacionados h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.producto-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}

.producto-card img {
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
}

.producto-card h3 {
  margin: 10px 0;
  font-size: 16px;
}

.producto-card p {
  color: #007bff;
  font-weight: bold;
}

.btn-ver-mas {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 10px;
}

.btn-ver-mas:hover {
  background-color: #0056b3;
}

#loop-prod a {
  text-decoration: none;
  color: black;
}
#loop-prod .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
#loop-prod h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
#loop-prod .carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#loop-prod .carousel-content {
  display: flex;
  transition: transform 0.3s ease;
  cursor: grab;
}
#loop-prod .carousel-content:active {
  cursor: grabbing;
}
#loop-prod .carousel-item {
  flex: 0 0 100%;
  min-width: 300px;
  padding: 0.25rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  #loop-prod .carousel-item {
    flex: 0 0 50%;
  }
}
@media (min-width: 1024px) {
  #loop-prod .carousel-item {
    flex: 0 0 33.333%;
  }
}
#loop-prod .card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#loop-prod .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}
#loop-prod .card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}
#loop-prod .card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#loop-prod .card p {
  color: #6b7280;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 1rem;
}
#loop-prod .carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  border: 1px solid #d1d5db;
  color: #374151;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
#loop-prod .carousel-button:hover {
  background-color: #f3f4f6;
}
#loop-prod .carousel-button.prev {
  left: 1rem;
}
#loop-prod .carousel-button.next {
  right: 1rem;
}

/*# sourceMappingURL=show.css.map */
