/** Shopify CDN: Minification failed

Line 214:0 Unexpected "<"

**/

  .our-pick-text-products {
    padding: 60px 0;
    transition: all 0.3s ease;
  }

  /* Theme variations */
  .our-pick-text-products.theme-blue {
    background-color: var(--blue);
    color: var(--white);
    border-top: 1px solid black;
  }

  .our-pick-text-products.theme-white {
    background-color: var(--white);
    color: black;
    border-top: 1px solid black;
  }

  .our-pick-text-products.theme-neutral {
    background-color: var(--neutral);
    color: black;
    border-top: 1px solid black;
  }

  .our-pick-text-products.theme-yellow {
    background-color: var(--yellow);
    color: var(--white);
    border-top: 1px solid black;
  }

  .our-pick-text-products.theme-orange {
    background-color: var(--orange);
    color: var(--white);
    border-top: 1px solid black;
  }

  .our-pick-text-products.theme-red {
    background-color: var(--red);
    color: var(--white);
    border-top: 1px solid black;
  }

  /* Product card theme variations */
  .theme-blue .our-pick-product-card,
  .theme-yellow .our-pick-product-card,
  .theme-orange .our-pick-product-card,
  .theme-red .our-pick-product-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  .theme-blue .our-pick-product-card:hover,
  .theme-yellow .our-pick-product-card:hover,
  .theme-orange .our-pick-product-card:hover,
  .theme-red .our-pick-product-card:hover {
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .theme-white .our-pick-product-card,
  .theme-neutral .our-pick-product-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
  }

  .theme-white .our-pick-product-card:hover,
  .theme-neutral .our-pick-product-card:hover {
    border: 1px solid rgba(0, 0, 0, 0.5);
  }

  /* Text color variations */
  .theme-blue .our-pick-product-title,
  .theme-blue .product-block-authors,
  .theme-blue .our-pick-products a,
  .theme-yellow .our-pick-product-title,
  .theme-yellow .product-block-authors,
  .theme-yellow .our-pick-products a,
  .theme-orange .our-pick-product-title,
  .theme-orange .product-block-authors,
  .theme-orange .our-pick-products a,
  .theme-red .our-pick-product-title,
  .theme-red .product-block-authors,
  .theme-red .our-pick-products a {
    color: var(--white);
  }

  .theme-white .our-pick-product-title,
  .theme-white .product-block-authors,
  .theme-white .our-pick-products a,
  .theme-neutral .our-pick-product-title,
  .theme-neutral .product-block-authors,
  .theme-neutral .our-pick-products a {
    color: black;
  }

  /* Rest of the existing styles */
  .our-pick-grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    padding: 0 30px;
  }

  .our-pick-text-content {
    grid-column: 1 / span 2;
    order: 1;
  }

  .our-pick-products {
    grid-column: 3 / span 4;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    order: 2;
  }

  .reverse-layout .our-pick-text-content {
    grid-column: 5 / span 2;
    order: 2;
  }

  .reverse-layout .our-pick-products {
    grid-column: 1 / span 4;
    order: 1;
  }

  .our-pick-text-content h2 {
    margin-bottom: 20px;
    transform: skewX(0deg);
  }

  .our-pick-body-text {
    line-height: 1.6;
  }

  .our-pick-product-card {
    padding: 3px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
  }

  .our-pick-product-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: none;
    height: calc(100vw / 4.5);
    max-height: 340px;
  }

  .our-pick-product-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 2.2rem;
    max-height: 2.2rem;
    margin: 0px;
    padding: 0;
  }

  h5.product-block-authors.our-picks {
    font-size: var(--base-font);
  }

  @media (max-width: 1100px) {
    .our-pick-product-img {
      height: calc(100vw / 3.5);
    }
    .our-pick-grid-container {
      padding: 20px 20px;
    }
    .our-pick-text-products {
      padding: 20px 0px;
    }
  }

  @media (max-width: 900px) {
    .our-pick-grid-container {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .our-pick-product-img {
      height: calc(100vw / 1.9);
    }

    .our-pick-text-content,
    .our-pick-products,
    .reverse-layout .our-pick-text-content,
    .reverse-layout .our-pick-products {
      grid-column: 1 / -1;
    }

    .our-pick-products {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .reverse-layout .our-pick-text-content {
      order: 2;
    }

    .reverse-layout .our-pick-products {
      order: 1;
    }
  }
</style>
