  /* Laptop Media Query */
@media (max-width: 1280px) {
    .product-section {
      padding: 60px 60px 40px;
      height: auto;
    }
  
    .product-content-container {
      gap: clamp(10px, 3vw, 300px);
      flex-direction: column;
    }
    
    .product-image {
      width: clamp(20px, 45vw, 800px);
      height: clamp(20px, 45vw, 800px);
    }
    
    .product-title {
      font-size: 66px;
    }
    
    .product-artist {
      font-size: 32px;
    }
    
    .release-date {
      font-size: 16px;
      margin-top: 2px;
    }

    .price-and-button {

    }

    .product-price {
        font-size: 48px;
        grid-column: 1;
    }

    .product-buy-button {
        justify-self: end;
        grid-column: 3;
    }
    
    .track-list h3 {
      font-size: 32px;
    }
    
    .track-list ol {
      font-size: 17px;
    }
    
    .pressing-info h3 {
      font-size: 20px;
      }
      
    .pressing-info p {
      font-size: 14px;
    }
  
    .wide-separator {
      display: none;
    }
  
    .description-section {
      font-size: 24px;
      line-height: 1.5;
    }

    .related-merch-section {
      padding: 0 20px 150px;
    }
  
    .store-section {
      padding: 0 5vw;
      margin-bottom: 40px;
    }
  
    .store-heading {
      font-size: 34px;
    }
  
    .store-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5vw;
    }
  
    .merch-block {
      border: 3px solid #0B1215;
    }
  
    .merch-block-details-container {
      border-top: 3px solid #0B1215;
    }
  
    .merch-block-names-container {
      padding: 6px;
      border-right: 3px solid #0B1215;
    }
    
    .merch-block-artist-name {
      font-size: 18px;
      margin-bottom: 4px;
    }
    
    .merch-block-product-name {
      font-size: 12px;
    }
  
    .merch-block-price {
      font-size: 30px;
    }  
}