/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 93:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .carousel-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
    color: #0396e4;
  }

  .carousel-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #0396e4;
    font-weight: 600;
    text-align: center;
  }

  .carousel-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
  }

  .carousel-wrapper::-webkit-scrollbar {
    display: none;
  }

  .carousel-item {
    flex: 0 0 calc(25% - 20px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    padding: 16px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease;
    color: #0396e4;
  }

  .carousel-item:hover {
    transform: translateY(-4px);
  }

  .carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: default;
  }

  .carousel-item:hover img {
    transform: scale(1.1);
  }

  .carousel-item p {
    margin-top: 12px;
    font-size: 14px;
    color: #0396e4;
    text-align: center;
  }

  @media (max-width: 1024px) {
    .carousel-item {
      flex: 0 0 calc(33.33% - 20px);
    }
  }

  @media (max-width: 768px) {
    .carousel-item {
      flex: 0 0 calc(50% - 20px);
    }
  }

  @media (max-width: 480px) {
    .carousel-item {
      flex: 0 0 100%;
    }
  }
</style>