/** Shopify CDN: Minification failed

Line 21:14 Unexpected "{"
Line 21:23 Expected ":"
Line 21:30 Unexpected "{"
Line 22:17 Expected identifier but found whitespace
Line 22:19 Unexpected "{"
Line 22:28 Expected ":"
Line 23:23 Expected identifier but found whitespace
Line 23:25 Unexpected "{"
Line 23:34 Expected ":"
Line 24:19 Expected identifier but found whitespace
... and 38 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-ugc-collage (INDEX:16, SCOPED:FALSE) */
#worn-by-you-{{ section.id }} {
    --color-text: {{ section.settings.color_text }};
    --color-background: {{ section.settings.color_background }};
    --color-accent: {{ section.settings.color_accent }};
    color: var(--color-text);
    background-color: var(--color-background);
  }

  #worn-by-you-{{ section.id }} .worn-by-you-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  #worn-by-you-{{ section.id }} .worn-by-you-subtitle {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
  }

  #worn-by-you-{{ section.id }} .worn-by-you-subtitle strong,
  #worn-by-you-{{ section.id }} .worn-by-you-subtitle b {
    color: var(--color-accent);
    font-weight: 600;
  }

  #worn-by-you-{{ section.id }} .carousel-container {
    position: relative;
  }

  #worn-by-you-{{ section.id }} .carousel-button {
    display: none; /* hidden */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 9999px;
    padding: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  @media (min-width: 768px) {
    #worn-by-you-{{ section.id }} .carousel-button {
      display: block; /* md:block */
    }
  }

  #worn-by-you-{{ section.id }} .carousel-button:hover {
    background-color: #f3f4f6;
  }

  #worn-by-you-{{ section.id }} .carousel-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #ffffff;
  }

  #worn-by-you-{{ section.id }} .carousel-button--prev {
    left: 0;
    transform: translateY(-50%) translateX(-50%);
  }

  #worn-by-you-{{ section.id }} .carousel-button--next {
    right: 0;
    transform: translateY(-50%) translateX(50%);
  }
  
  #worn-by-you-{{ section.id }} .carousel-button i {
    font-size: 1rem;
    color: #374151; /* text-gray-700 */
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    line-height: 1.25rem;
  }

  #worn-by-you-{{ section.id }} .carousel-scroll-area {
    display: flex;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  #worn-by-you-{{ section.id }} .carousel-scroll-area::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
  }

  #worn-by-you-{{ section.id }} .carousel-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem; /* space-x-6 */
  }

  #worn-by-you-{{ section.id }} .photo-card {
    flex-shrink: 0;
    width: 30rem;
    background-color: #ffffff;
    border-radius: 0.5rem; /* rounded-lg */
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  #worn-by-you-{{ section.id }} .photo-card img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    display: block;
  }
  
  #worn-by-you-{{ section.id }} .photo-card-placeholder {
    width: 100%;
    height: 30rem;
  }
/* END_SECTION:custom-ugc-collage */