/** Shopify CDN: Minification failed

Line 188:15 Expected identifier but found whitespace
Line 188:17 Unexpected "{"
Line 188:26 Expected ":"
Line 199:10 Expected identifier but found whitespace
Line 199:12 Unexpected "{"
Line 199:21 Expected ":"
Line 342:10 Expected identifier but found whitespace
Line 342:12 Unexpected "{"
Line 342:21 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:case_study_collection (INDEX:9) */
.case-study-section {
    background: #f3f5f4;
    color: #00132e;
  }

  .case-study-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(5rem, 7vw, 8rem) 2rem;
  }

  .case-study-header {
    max-width: 78rem;
    margin-bottom: 3.2rem;
  }

  .case-study-header h1 {
    margin: 0 0 1.2rem;
    color: #00132e;
    font-size: clamp(3.6rem, 5vw, 5.6rem);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.05;
  }

  .case-study-header p {
    max-width: 72rem;
    margin: 0;
    color: #263a51;
    font-size: 1.7rem;
    line-height: 1.6;
  }

  .filter-scroll {
    margin-bottom: 2.8rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .filter-scroll::-webkit-scrollbar {
    display: none;
  }

  .industry-filters {
    display: flex;
    gap: 1rem;
    min-width: max-content;
    padding-bottom: .4rem;
  }

  .filter-btn {
    flex: 0 0 auto;
    min-height: 4rem;
    padding: .8rem 1.7rem;
    border: 1px solid #d6dcda;
    border-radius: 999px;
    background: #fff;
    color: #00132e;
    cursor: pointer;
    font: inherit;
    font-size: 1.4rem;
    transition: background-color .2s, border-color .2s, color .2s;
  }

  .filter-btn:hover {
    border-color: #8b9994;
    background: #f9faf9;
  }

  .filter-btn.active {
    border-color: #00132e;
    background: #00132e;
    color: #fff;
  }

  .filter-btn:focus-visible,
  .case-study-card a:focus-visible {
    outline: .2rem solid #12846f;
    outline-offset: .3rem;
  }

  .case-study-collection {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .case-study-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dce2e0;
    border-radius: 1.6rem;
    background: #fff;
    transition: box-shadow .25s, transform .25s;
  }

  .case-study-card:hover {
    box-shadow: 0 .8rem 2rem rgba(0, 19, 46, .08);
    transform: translateY(-.3rem);
  }

  .case-study-card > a {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #eef1ef;
  }

  .case-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .case-study-card--vineika-yogurt-packaging-ecosystem .case-img {
    object-fit: contain;
  }

  .case-study-card__content {
    display: flex;
    flex: 1;
    align-items: flex-start;
    padding: 2rem;
  }

  .case-study-card h2 {
    margin: 0;
    color: #00132e;
    font-size: clamp(2rem, 2.2vw, 2.6rem);
    font-weight: 500;
    letter-spacing: -.015em;
    line-height: 1.25;
  }

  .case-study-card h2 a {
    color: inherit;
    text-decoration: none;
  }

  @media (min-width: 640px) {
    .case-study-collection {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (min-width: 990px) {
    .case-study-collection {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 639px) {
    .case-study-wrapper {
      padding-inline: 1.6rem;
    }

    .case-study-header {
      margin-bottom: 2.4rem;
    }
  }
/* END_SECTION:case_study_collection */

/* START_SECTION:related-products (INDEX:68) */
.related-products-section {
    padding: 48px 24px;
    background: {{ section.settings.background_color }};
  }

  .related-products-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .related-products-title {
    font-size: 28px;
    font-weight: 600;
    color: {{ section.settings.title_color }};
    margin-bottom: 32px;
  }

  .products-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    color: #6b7280;
  }

  .carousel-nav:hover {
    background: #f3f4f6;
    color: #111827;
  }

  .carousel-nav.prev {
    left: -24px;
  }

  .carousel-nav.next {
    right: -24px;
  }

  .carousel-nav svg {
    width: 24px;
    height: 24px;
  }

  .products-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0;
  }

  .products-container::-webkit-scrollbar {
    display: none;
  }

  .products-grid {
    display: flex;
    gap: 20px;
    padding: 0;
    min-width: min-content;
  }

  .product-card {
    flex: 0 0 280px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
  }

  .product-card:hover {
    transform: translateY(-4px);
  }

  .product-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: #f3f4f6;
    border-radius: 16px;
    overflow: hidden;
  }

  .product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    color: #111827;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .product-meta {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
  }

  .product-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.4;
  }

  .product-price {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0;
  }

  .product-cta {
    align-self: flex-start;
    background: none;
    border: none;
    color: {{ section.settings.button_color }};
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
  }

  .product-cta:hover {
    color: #111827;
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .related-products-section {
      padding: 32px 16px;
    }

    .related-products-title {
      font-size: 20px;
      margin-bottom: 24px;
    }

    .carousel-nav.prev {
      left: 0;
    }

    .carousel-nav.next {
      right: 0;
    }

    .product-card {
      flex: 0 0 240px;
      min-width: 240px;
    }
  }
/* END_SECTION:related-products */