/** Shopify CDN: Minification failed

Line 120:23 Unexpected "{"
Line 120:32 Expected ":"
Line 120:39 Unexpected "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:shuffling-collection-grid (INDEX:97) */
.shuffling-collection-wrapper {
    padding-top: 30px;
    /* --- PADDING REDUCED --- */
    padding-bottom: 15px; /* Was 30px */
    background-color: #ECF39E;
  }
  .shuffling-collection-header-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .shuffling-collection-grid {
    display: grid;
    /* Use CSS variables from inline style */
    grid-template-columns: repeat(var(--grid-columns-mobile), 1fr);
    gap: 15px;
  }
  /* On desktop, use the desktop column setting */
  @media (min-width: 750px) {
    .shuffling-collection-grid {
      grid-template-columns: repeat(var(--grid-columns-desktop), 1fr);
      gap: 20px;
    }
  }

  .shuffling-collection-card {
    background: #FFFFFF;
    border-radius: 12px;
    transition: transform 0.2s ease;
  }
  .shuffling-collection-card:hover {
    transform: translateY(-5px);
  }
  .shuffling-collection-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 10px 10px 15px;
    text-align: center;
  }
  .shuffling-collection-image-container {
    position: relative;
    aspect-ratio: 1 / 1;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
  }
  .shuffling-collection-placeholder {
    display: grid;
    place-items: center;
    height: 100%;
    background-color: #f4f4f4;
  }
  .shuffling-collection-placeholder .placeholder-svg__image {
    max-width: 70px;
  }

  /* Image shuffling styles */
  .shuffling-collection-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  .shuffling-collection-image.active {
    opacity: 1;
    z-index: 1;
  }

  .shuffling-collection-title {
    font-size: 1rem;
    font-weight: 600;
  }

  /*
  ============================================
  View All Button Styles
  ============================================
  */
  .shuffling-collection-view-all {
    text-align: center;
    margin-top: 30px;
  }
  .shuffling-collection-view-all-link {
    display: inline-block;
    text-decoration: none;
    color: #06366B; /* Dark text color */
    font-size: 0.8rem; /* Reduced size */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em; /* This creates the "S H O W A L L" effect */
    padding-bottom: 4px; /* Space between text and line */
    border-bottom: 2px solid #06366B; /* The underline */
    transition: all 0.2s ease;
  }
  .shuffling-collection-view-all-link:hover {
    color: #5A8C04;
    border-bottom-color: #5A8C04;
  }
/* END_SECTION:shuffling-collection-grid */

/* START_SECTION:trust-badges (INDEX:103) */
.trust-badge-section--{{ section.id }} {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .trust-badge__heading {
    text-align: center;
    margin-bottom: 15px;
    /* You can customize font size, color, etc. here */
  }

  .trust-badge__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Controls spacing between badges */
  }

  .trust-badge__item {
    line-height: 0; /* Helps align images cleanly */
  }

  .trust-badge__image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
/* END_SECTION:trust-badges */