* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: calibri;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  display: none;
}

.menu-mobil {
  display: none;
}
.pagina {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.encabezado-pc {
  padding-top: 10px;
  display: flex;
  width: 100%;
  background: #fff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.izquierda {
  display: flex;
  width: 40%;
  align-items: center;
  justify-content: center;
}
.menu-pc {
  display: flex;
  width: 60%;
  justify-content: space-evenly;
  position: relative;
}
.item_menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #40322c;
}
.item_menu a:hover {
  color: #ffb347;
}
/* sub menu navecgacion */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -1%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -1%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.item_menu .cuadro-submenu {
  display: none;
  width: calc(100% + 50%);
  position: absolute;
  top: 100%;
  background-color: rgba(255, 255, 255, 0.925);
  height: auto;
  z-index: 30;
  border-radius: 0px 0px 2px 2px;
  border: 1px solid #ffb347;
  left: 0;
}
.cuadro-submenu a {
  color: var(--gris);
  padding: 0;
  display: inline;
}
.cuadro-submenu ul.submenu {
  display: flex;
  padding: 0px 10px;
}
.cuadro-submenu li {
  display: block;
  padding: 10px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.192);
}
.cuadro-submenu li a:hover {
  text-decoration: underline;
  color: #ffb347;
}
.cuadro-submenu li a:hover {
  text-decoration: none;
  color: #ffb347;
}
.item_menu:hover > .cuadro-submenu {
  display: block;
}
/* sub menu navecgacion */
.centro {
  display: flex;
  width: 20%;
  justify-content: center;
  align-items: center;
}
.logo {
  z-index: 10;
  display: flex;
  background: #fff;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.circulo {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 2px 3px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.derecha {
  display: flex;
  width: 40%;
  align-items: center;
  justify-content: center;
}
.medios-pc {
  display: flex;
  width: 60%;
  justify-content: space-evenly;
}
.medios-pc a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #40322c;
}
.medios-pc a:hover {
  color: #ffb347;
}
.medios-pc .icon_carrito {
  position: relative;
}
.medios-pc .icon_carrito .cantidad-carrito {
  background-color: #eb322f;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 12px;
  border-radius: 50%;
  top: -10px;
  right: -10px;
}
/* contenido de página */
.contenido-pagina {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contenido-pagina .producto {
  width: 50%;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 20px;
}
.producto .nombre-producto {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.nombre-producto span {
  font-size: 20px;
}
.contenedor-producto {
  width: 100%;
  display: flex;
  justify-content: center;
}
.contenedor-producto .imagen-producto {
  width: 30%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.imagen-producto .imagen {
  margin-bottom: 10px;
}
.imagen-producto .imagen img {
  width: 100%;
}
.imagen-producto .etiqueta {
  background-color: #eb322f;
  color: #fff;
  border-radius: 50px;
  width: max-content;
  padding: 2px 10px;
  font-size: 15px;
  margin-bottom: 30px;
}
.contenedor-producto .detalle-producto {
  width: 40%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.detalle-producto .peso-cantidad {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.peso-cantidad .contenedor {
  display: flex;
}
.peso-cantidad .texto {
  width: 100%;
  font-size: 20px;
}
.peso-cantidad .peso {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0px;
}
.peso select {
  width: 100%;
  height: 100%;
}
.peso-cantidad .cantidad {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}
.cantidad .cantidad-num {
  padding: 10px 0px;
}
.cantidad button {
  background: #40322c;
  outline: none;
  border-style: none;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 10px;
  border-radius: 5px;
}
.detalle-producto .precio-producto {
  width: 100%;
  margin-bottom: 20px;
}
.precio-producto span {
  font-size: 35px;
  color: #40322c;
  font-weight: bold;
}
.detalle-producto .boton-producto {
  width: 100%;
}
.boton-producto button.icon-boton {
  border-style: none;
  color: #40322c;
  background-color: #ffb347;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
}

.icon-boton img {
  width: 20px;
  margin-right: 10px;
}
/* contenido de página */
/* 1440x900, 1600x900, 1600x1024, 1680x1050, 1920x1080 */
@media (min-width: 1440px) {
  .menu-mobil {
    display: none;
  }
  .encabezado-pc {
    height: 120px;
  }
  .item_menu img {
    width: 40px;
    margin-bottom: 5px;
  }
  .logo img {
    height: 100px;
  }
  .circulo {
    top: 0px;
    width: 160px;
    height: 160px;
  }
  .item_medios img {
    width: 30px;
  }
}
@media (min-width: 1367px) and (max-width: 1439px) {
  .menu-mobil {
    display: none;
  }
  .encabezado-pc {
    height: 120px;
  }
  .item_menu img {
    width: 40px;
    margin-bottom: 5px;
  }
  .logo img {
    height: 100px;
  }
  .circulo {
    top: 0px;
    width: 160px;
    height: 160px;
  }
  .item_medios img {
    width: 30px;
  }
}
/* 1366x768 */
@media (min-width: 1281px) and (max-width: 1366px) {
  .menu-mobil {
    display: none;
  }
  .encabezado-pc {
    height: 120px;
  }
  .item_menu img {
    width: 40px;
    margin-bottom: 5px;
  }
  .logo img {
    height: 100px;
  }
  .circulo {
    top: 0px;
    width: 160px;
    height: 160px;
  }
  .item_medios img {
    width: 30px;
  }
}
/* 1280x720, 1280x768, 1280x800, 1280x960, 1280x1024 */
@media (min-width: 1025px) and (max-width: 1280px) {
  .menu-mobil {
    display: none;
  }
  .encabezado-pc {
    height: 120px;
  }
  .item_menu img {
    width: 40px;
    margin-bottom: 5px;
  }
  .logo img {
    height: 100px;
  }
  .circulo {
    top: 10px;
    width: 160px;
    height: 160px;
  }
  .item_medios img {
    width: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .menu-mobil {
    display: none;
  }
  .encabezado-pc {
    height: 100px;
  }
  .menu-pc {
    width: 70%;
  }
  .item_menu a {
    font-size: 13px;
  }
  .item_menu img {
    width: 30px;
    margin-bottom: 2px;
  }
  .logo img {
    height: 80px;
  }
  .circulo {
    top: 10px;
    width: 130px;
    height: 130px;
  }
  .medios-pc {
    width: 85%;
  }
  .item_medios img {
    width: 22px;
  }
  .linea_redes {
    font-size: 12px;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .menu-mobil {
    display: none;
  }
  .encabezado-pc {
    height: 100px;
  }
  .menu-pc {
    width: 70%;
  }
  .item_menu a {
    font-size: 13px;
  }
  .item_menu img {
    width: 30px;
    margin-bottom: 2px;
  }
  .logo img {
    height: 80px;
  }
  .circulo {
    top: 10px;
    width: 130px;
    height: 130px;
  }
  .medios-pc {
    width: 85%;
  }
  .item_medios img {
    width: 22px;
  }
  .linea_redes {
    font-size: 12px;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .encabezado-pc {
    height: 100px;
  }
  .logo {
    height: auto;
  }
  .logo img {
    height: 50px;
    position: absolute;
    top: 65px;
  }
  .circulo {
    top: 50px;
    width: 90px;
    height: 90px;
  }
  .linea_redes {
    display: none;
  }
  .medios-pc {
    width: 85%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
  }
  /* grid iconos */
  .medios-pc .icon_wsp {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 3;
    display: flex;
    justify-content: flex-end;
  }
  /* grid iconos */
  /* menu mobil */
  .izquierda {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 5px;
    padding-top: 15px;
  }
  .menu-pc {
    display: none;
  }
  .menu-mobil img {
    width: 20px;
    margin-right: 5px;
  }
  .menu-mobil {
    display: flex;
    padding: 5px;
    position: relative;
  }
  .menu-mobil #btnMenu {
    display: flex;
  }
  #menuMobil {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ffb347;
    border-radius: 5px;
    z-index: 20;
    padding: 10px 20px;
    top: calc(100% + 10px);
    box-shadow: rgb(60 64 67 / 30%) 0px 2px 3px 0px,
      rgb(60 64 67 / 15%) 0px 1px 3px 1px;
  }
  #menuMobil .item_menu a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  #menuMobil .item_menu {
    padding: 10px;
    border-bottom: 1px solid #40322c;
  }
  #menuMobil .item_menu:last-child {
    border: none;
  }
  .item_menu a p {
    display: inline-flex;
  }
  .menu-mobil span {
    display: flex;
    align-items: center;
  }
  /* menu mobil */
  .item_medios img {
    width: 22px;
  }
  .linea_redes {
    font-size: 12px;
  }
}
