/** Shopify CDN: Minification failed

Line 33:14 Expected identifier but found whitespace
Line 33:16 Unexpected "{"
Line 33:25 Expected ":"
Line 33:49 Expected ":"

**/


/* CSS from section stylesheet tags */
.centered-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .centered-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .centered-image-container img {
    max-width: {{ section.settings.max_width }}px;
    width: auto;
    height: auto;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.2s ease;
  }

  .centered-image-container img:hover {
    transform: scale(1.02);
  }

  /* 移动端适配 */
  @media (max-width: 749px) {
    .centered-image-wrapper {
      padding: 20px 0;
    }

    .centered-image-container {
      padding: 0 12px;
    }

    .centered-image-container img {
      max-width: 100%;
      max-height: 70vh;
      width: auto;
      height: auto;
    }
  }