@media (min-width: 1024px) {
  .product-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 16px;
    row-gap: 18px;
  }

  .product-info .product-detail-title,
  .product-info .rating-row,
  .product-info #badge-container,
  .product-info .product-monthly-sales,
  .product-info #product-description-section,
  .product-info #product-benefits-section,
  .product-info #product-specifications-section {
    flex: 0 0 100%;
  }

  .product-info .product-detail-title {
    order: 1;
  }

  .product-info .rating-row {
    order: 2;
  }

  .product-info #badge-container {
    order: 3;
  }

  .product-info .product-monthly-sales {
    order: 4;
  }

  .product-info .product-price {
    order: 5;
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    font-size: 1.82rem;
    line-height: 1.2;
  }

  .product-info .product-detail-cta {
    order: 6;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    padding: 0 14px;
    min-height: 38px;
    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
    align-self: center;
    margin-top: 0;
    transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease, border-color 240ms ease;
  }

  .product-info .product-detail-cta:hover {
    background: linear-gradient(180deg, #3B4436 0, #2B3127 100%);
    border-color: #2B3127;
    box-shadow: 0 16px 34px rgba(59, 68, 54, 0.22);
    transform: translateY(-1px);
  }

  .product-info #product-description-section {
    order: 7;
  }

  .product-info #product-benefits-section {
    order: 8;
  }

  .product-info #product-specifications-section {
    order: 9;
  }
}
