.producto-page {
    padding: 0 16px;
  }
  
  .goback {
    display: block;
    width: 24px;
    height: 24px;
    margin-top: 32px;
    margin-bottom: 24px;
  }
  
  .product-detail {
    display: flex;
    background-color: #F4F5F7;
    height: auto;
    padding: 24px;
    border-radius: 24px;
  }
  .product-detail .preview {
    display: block;
    width: 43.831%;
    height: auto;
  }
  .product-detail .preview .img {
    position: relative;
    width: 100%;
    height: auto;
  }
  .product-detail .preview .img:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%;
  }
  .product-detail .preview .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 24px;
  }
  .product-detail .preview ul {
    display: flex;
    margin-top: 16px;
  }
  .product-detail .preview ul.hidden {
    overflow: hidden;
    height: 0;
    margin: 0;
  }
  .product-detail .preview ul li {
    display: block;
    border-radius: 8px;
    width: 88px;
    cursor: pointer;
    margin-left: 16px;
  }
  .product-detail .preview ul li .img, .product-detail .preview ul li img {
    border-radius: 8px;
  }
  .product-detail .preview ul li.active {
    border: 2px solid #3BC9AF;
  }
  .product-detail .details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 56.169%;
    height: auto;
    padding-left: 56px;
  }
  .product-detail .details .from {
    font-family: "Amsi Pro";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #181A1A;
  }
  .product-detail .details .name {
    font-family: "Amsi Pro";
    margin-top: 15px;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #181A1A;
  }
  .product-detail .details .stock {
    font-family: "Amsi Pro";
    margin-top: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #3BC9AF;
  }
  .product-detail .details .description {
    font-family: "Amsi Pro";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #181A1A;
    margin-top: 23px;
  }
  .product-detail .details .size {
    font-family: "Amsi Pro";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #181A1A;
    margin-top: 48px;
  }
  .product-detail .details ul.sizes {
    display: flex;
    margin-top: 7px;
  }
  .product-detail .details ul.sizes button {
    display: block;
    border-radius: 80px;
    width: 80px;
    height: 48px;
    border: 1px solid #181A1A;
    background: #fff;
    cursor: pointer;
    margin-left: 8px;
  }
  .product-detail .details ul.sizes button.active {
    background: rgba(59, 201, 175, 0.1);
    border-color: #3BC9AF;
    color: #3BC9AF;
  }
  .product-detail .details .buy .price {
    font-family: "Amsi Pro";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #181A1A;
    margin-bottom: 24px;
  }
  .product-detail .details .buy .buy-controls {
    display: flex;
    justify-content: space-between;
  }
  .product-detail .details .buy .buy-controls select {
    margin-right: 16px;
    width: 80px;
    padding: 0 18px;
    height: 56px;
    background-color: #fff;
    border: 1px #181A1A solid;
    border-radius: 24px;
    font-size: 18px;
    line-height: 25px;
  }
  .product-detail .details .buy .buy-controls .btn {
    width: 100%;
  }
  @media screen and (max-width: 1024px) {
    .product-detail {
      flex-direction: column;
    }
    .product-detail .preview {
      width: 100%;
    }
    .product-detail .details {
      width: 100%;
      margin-top: 16px;
      padding: 0;
    }
  }
  
  p.related_title {
    font-family: "OCR-A-Std-Regular";
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 43px;
    margin-top: 80px;
    margin-bottom: 32px;
  }
  
  .store-product-grid {
    margin-bottom: 96px;
  }