* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.header {
  width: 100%;
  height: auto;
  background-color: #ffe262;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 10px 5%;
}

.redes {
  display: flex;
  flex-wrap: wrap;
}

.redes li {
  list-style: none;
  margin: 5px;
}

.redes li a img {
  width: 36px;
  height: 36px;
  filter: invert(100%);
}

/* MENU */

.menu {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 90%;
  padding: 20px 0;
  border-bottom: 3px solid #ffe262;
}

.izquierdo {
  flex: 1 1 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.izquierdo_imagen {
  max-height: 300px;
  width: auto;
}

.derecho {
  flex: 2 1 300px;
  padding: 10px;
}

.derecho_imagen img {
  width: 100%;
  height: auto;
  display: block;
}

.derecho_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.nav {
  width: 100%;
}

.menu2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 18px;
  gap: 15px;
  padding: 0;
}

.menu2 li {
  list-style: none;
  margin: 8px;
  font-weight: 500;
}

.menu2 li a {
  color: black;
  text-decoration: none;
}

.menu2 li:not(:last-child)::after {
  content: "|";
  margin-left: 20px;
  color: #ffe262;
}

.boton {
  border: none;
  color: white;
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 50px;
  transition: transform 0.3s ease-in-out;
}

.boton:hover {
  background-color: #ffee00;
}

.boton:active {
  transform: scale(0.9);
}

.primary {
  background-image: linear-gradient(to right, #f7e869ea, #ffc933f5);
}

/* RESPONSIVE RULES */

@media (max-width: 768px) {
  .menu2 {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .menu2 li:not(:last-child)::after {
    content: "";
  }

  .boton {
    font-size: 16px;
    padding: 10px 16px;
  }

  .menu {
    flex-direction: column;
    align-items: center;
  }

  .header {
    justify-content: center;
    padding: 10px;
  }

  .derecho_menu {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .redes li a img {
    width: 30px;
    height: 30px;
  }

  .menu2 {
    font-size: 16px;
  }

  .boton {
    font-size: 14px;
    padding: 8px 14px;
  }
}

/* DETALLES */

body {
  font-family: Arial, sans-serif;
  color: #333;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  margin: 0 auto;
  width: 80%;
  margin-top: 20px;
}

.breadcrumb a {
  text-decoration: none;
  color: #333;
}

.breadcrumb span {
  color: #aaa;
}

.nombre {
  margin: 0 auto;
  width: 80%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  width: 85%;
}

.product-image {
  flex: 1 1 100px;
  /* border: 2px solid #ffe262; */
  padding: 70px;
  text-align: center;
}

.product-image img {
  width: 200px;
  height: 200px;
}

.product-info {
  flex: 1 1 300px;
}

.product-title {
  font-size: 24px;
  margin-bottom: 5px;
  color: #777;
}

.product-code {
  font-size: 14px;
  text-align: right;
  margin-bottom: 20px;
  font-weight: bold;
}

.product-description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.accordion {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 4px;
}

.accordion-header {
  background: #eee;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
}

.accordion-content {
  display: none;
  padding: 10px;
  background: #f9f9f9;
}

@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .accordion-content img {
    width: 300px;
  }
  .product-image img {
    width: 200px;
    height: 200px;
  }
}
