 @media (min-width: 1024px) {
  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    position: relative;
  }

  .image-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    position: relative;
  }

  .thumbnails {
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: 60px;
  }

  .thumbnails img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    display: block;
  }

  .thumbnails img.active {
    border-color: orange;
  }

  .main-image-wrapper {
    width: auto;
    position: relative;
    overflow: hidden;
    min-height: 400px;
  }

  .main-image-container {
    position: relative;
  }

  .main-image-container img {
    max-width: 480px;
    max-height: 580px;
    width: auto;
    height: auto;
    display: block;
  }

  .main-image-container.blurred::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: grayscale(60%) blur(1px);
    z-index: 4;
  }

  .lens {
    position: absolute;
    pointer-events: none;
    display: none;
    z-index: 10;
    border: 2px solid white;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
    background-repeat: no-repeat;
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.2);
  }

  .zoom-result {
    margin-top: 78px;
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 999;
  }

  .details-column {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    min-height: 500px;
  }

  .item-product-container-description {
    min-height: 250px;
    transition: all 0.3s ease-in-out;
  }

  .item-specification-container {
    min-height: 180px;
    transition: all 0.3s ease-in-out;
  }

  .large-screen-only {
    width: 300px;
    margin-top: 30px;
  }
}
