/** Shopify CDN: Minification failed

Line 97:13 Expected identifier but found whitespace
Line 97:15 Unexpected "{"
Line 97:24 Expected ":"
Line 140:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
/* Tailwind CSS classes used in this section */
.relative { position: relative; }
.bg-\[\#e9e9e9\] { background-color: #e9e9e9; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.min-h-screen { min-height: 100vh; }
.overflow-hidden { overflow: hidden; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.max-w-\[480px\] { max-width: 480px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.pointer-events-auto { pointer-events: auto; }
.gap-6 { gap: 1.5rem; }
.flex-col { flex-direction: column; }
.gap-2 { gap: 0.5rem; }
.bg-black { 
  background-color: rgba(0, 0, 0, 0.6); /* Black with 60% opacity */
}
.bg-opacity-70 { --tw-bg-opacity: 0.7; }
.p-3 { padding: 0.75rem; }
.rounded-xl { border-radius: 0.75rem; }
.cursor-pointer { cursor: pointer; }
.gap-3 { gap: 0.75rem; }
.m-0 { margin: 0; }
.aspect-square { aspect-ratio: 1 / 1; }
.h-28 { height: 7rem; }
.w-auto { width: auto; }
.rounded-md { border-radius: 0.375rem; }
.bg-white { background-color: #fff; }
.object-contain { object-fit: contain; }
.p-0 { padding: 0; }
.flex-auto { flex: 1 1 auto; }
.flex-shrink { flex-shrink: 1; }
.flex-grow { flex-grow: 1; }
.content-between { align-content: space-between; }
.text-white { color: #fff; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.font-medium { font-weight: 500; }
.capitalize { text-transform: capitalize; }
.leading-6 { line-height: 1.5rem; }
.font-bold { font-weight: 700; }
.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.flex-wrap { flex-wrap: wrap; }
.gap-y-1 { row-gap: 0.25rem; }
.gap-x-2 { column-gap: 0.5rem; }
.rounded-lg { border-radius: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.line-through { text-decoration: line-through; }
.opacity-80 { opacity: 0.8; }
.text-md { font-size: 1rem; line-height: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.shrink-\[2\] { flex-shrink: 2; }
.grow-\[2\] { flex-grow: 2; }
.basis-\[45\%\] { flex-basis: 45%; }
.border { border-width: 1px; }
.border-solid { border-style: solid; }
.text-center { text-align: center; }

/* Updated custom classes for height adjustment and positioning */
.custom-height {
  height: 90vh; /* Reduce height to 90% of viewport height */
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Updated video container class */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: {{ section.settings.background_gradient }};
  overflow: hidden;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Updated class for positioning the bundle box */
.bundle-box-container {
  width: 100%;
  padding-bottom: 1rem;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .custom-height {
    height: 80vh; /* Even smaller on larger screens */
    max-height: 80vh;
  }

  .video-container {
    height: 110%;
  }

  .video-element {
    height: 110%;
    object-fit: contain;
  }
}

/* Additional adjustment for very small screens */
@media (max-height: 600px) {
  .custom-height {
    height: 95vh;
    max-height: 95vh;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

.video-background-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(calc(-1 * var(--video-horizontal-position-mobile)));
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.content-wrapper {
  position: absolute;
  top: var(--desktop-position);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
}
.title {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.scroll-to-section-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #fff;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.scroll-to-section-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .content-wrapper {
    top: var(--mobile-position);
    left: var(--mobile-horizontal-position);
    transform: translate(-50%, -50%);
  }
  
  .title {
    font-size: 2.5rem;
  }
}
.collection-header-custom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: var(--spacing-section-between);
  max-width: 100%;
  padding: 0;
}

.collection-header-custom__banner {
  position: relative;
  min-height: 280px;
  height: auto;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 1.5rem;
}

.collection-header-custom__banner img {
  width: 100%;
  min-height: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.collection-header-custom__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.collection-header-custom__overlay-title {
  color: rgb(255, 255, 255);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.collection-header-custom__info {
  padding: 0 1rem;
  max-width: 100%;
}

.breadcrumb-custom__wrapper {
  margin-bottom: 1rem;
}

.breadcrumbs-custom__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: rgba(var(--color-foreground), 0.6);
}

.breadcrumb-custom__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.breadcrumb-custom__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
  font-weight: 400;
}

.breadcrumb-custom__link:hover {
  color: rgb(var(--color-foreground));
  text-decoration: underline;
}

.breadcrumb-custom__current {
  color: rgb(var(--color-foreground));
  font-weight: 500;
}

.breadcrumb-custom__chevron {
  width: 0.625rem;
  height: 0.625rem;
  color: rgba(var(--color-foreground), 0.4);
}

.collection-custom__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin: 0 0 1rem 0;
  color: rgb(var(--color-foreground));
}

.collection-custom__description {
  margin-bottom: 0.75rem;
}

.collection-custom__description .rte {
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: rgba(var(--color-foreground), 0.7);
}

.collection-custom__description .rte > *:last-child {
  margin-bottom: 0;
}

.collection-custom__rating {
  margin-bottom: 1.5rem;
  padding: 1rem 1rem 1rem 0;
  background: rgba(var(--color-foreground), 0.02);
  border: 1px solid rgba(var(--color-foreground), 0.08);
  border-radius: 0;
}

.store-rating {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.store-rating__stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.store-rating__star {
  width: 1.125rem;
  height: 1.125rem;
  color: rgba(var(--color-foreground), 0.2);
  transition: color 0.15s ease;
}

.store-rating__star--filled {
  color: rgb(var(--color-foreground));
}

.store-rating__star--half {
  color: rgb(var(--color-foreground));
}

.store-rating__score {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  color: rgb(var(--color-foreground));
  margin-left: 0.5rem;
}

.store-rating__reviews {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}

.store-rating__count {
  font-size: 1rem;
  font-weight: 700;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  color: rgb(var(--color-foreground));
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.store-rating__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(var(--color-foreground), 0.6);
  text-decoration: none;
  transition: color 0.15s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.store-rating__link:hover {
  color: rgb(var(--color-foreground));
  text-decoration: underline;
}

.store-rating__external-icon {
  width: 0.75rem;
  height: 0.75rem;
}

.collection-custom__filters {
  margin-bottom: 1rem;
}

.collection-custom__filters-title {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  margin: 0 0 0.75rem 0;
  color: rgb(var(--color-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quick-filters-custom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.quick-filter-group__label {
  font-size: 0.75rem;
  font-weight: 500;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  color: rgba(var(--color-foreground), 0.7);
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.quick-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.quick-filter-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  border: 1px solid rgba(var(--color-foreground), 0.15);
  border-radius: 4px;
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font-size: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

.quick-filter-btn:hover {
  border-color: rgba(var(--color-foreground), 0.4);
  transform: translateY(-1px);
}

.quick-filter-btn[aria-pressed="true"] {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-color: rgb(var(--color-foreground));
}

.quick-filter-btn--color .quick-filter-swatch {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-foreground), 0.2);
  flex-shrink: 0;
}

.quick-filter-btn[aria-pressed="true"] .quick-filter-swatch {
  border-color: rgb(var(--color-background));
}

.quick-filter-remove {
  width: 0.75rem;
  height: 0.75rem;
  display: none;
  opacity: 0.7;
}

.quick-filter-btn[aria-pressed="true"] .quick-filter-remove {
  display: block;
}

.collection-custom__count {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  margin-top: 0.5rem;
}

.collection-count {
  font-size: 0.75rem;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  color: rgba(var(--color-foreground), 0.6);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Tablet styles */
@media screen and (min-width: 750px) {
  .collection-header-custom {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    padding: 0;
  }
  
  .collection-header-custom__banner {
    min-height: 320px;
    height: auto;
    order: 2;
    margin-bottom: 0;
  }
  
  .collection-header-custom__info {
    order: 1;
    padding: 2rem 1.5rem;
  }
  
  .quick-filter-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
  
  .quick-filter-group__label {
    min-width: 3.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .store-rating {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  
  .store-rating__reviews {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
}

/* Desktop styles */
@media screen and (min-width: 990px) {
  .collection-header-custom {
    padding: 0;
    width: 100%;
    max-width: none;
  }
  
  .collection-header-custom__info {
    padding: 2rem;
  }
  
  .collection-header-custom__banner {
    min-height: 400px;
    height: auto;
  }
  
  .collection-custom__title {
    font-size: 2.5rem;
  }
  

  
  .breadcrumbs-custom__list {
    font-size: 0.8125rem;
  }
  
  .collection-custom__filters-title {
    font-size: 0.9375rem;
  }
  
  .store-rating__stars {
    gap: 0.375rem;
  }
  
  .store-rating__star {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .store-rating__score {
    font-size: 1rem;
  }
  
  .store-rating__count {
    font-size: 1.125rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .quick-filter-btn {
    transition: none;
  }
}

/* Mobile viewport height behavior accounting for 75px header */
@media screen and (max-width: 749px) {
  .collection-header-custom__banner {
    min-height: calc(100svh - 75px);
  }

  .collection-header-custom__banner img {
    width: 100%;
    height: calc(100svh - 75px);
    object-fit: cover;
  }

  /* When rating overlay on banner is enabled, position it within the image */
  .collection-banner--mobile-rating-overlay .collection-custom__rating--banner-mobile {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0.75rem 1rem;
    color: #fff;
    z-index: 2;
  }

  /* Create a localized gradient overlay only behind the rating block */
  .collection-banner--mobile-rating-overlay .collection-custom__rating--banner-mobile::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.85) 100%);
    z-index: -1;
    pointer-events: none;
  }

  .collection-banner--mobile-rating-overlay .collection-custom__rating--banner-mobile .store-rating__star,
  .collection-banner--mobile-rating-overlay .collection-custom__rating--banner-mobile .store-rating__star--filled,
  .collection-banner--mobile-rating-overlay .collection-custom__rating--banner-mobile .store-rating__star--half,
  .collection-banner--mobile-rating-overlay .collection-custom__rating--banner-mobile .store-rating__score,
  .collection-banner--mobile-rating-overlay .collection-custom__rating--banner-mobile .store-rating__count,
  .collection-banner--mobile-rating-overlay .collection-custom__rating--banner-mobile .store-rating__link {
    color: #fff;
  }

  /* Hide the default rating block below the banner on mobile if overlay is active */
  .collection-banner--mobile-rating-overlay .collection-header-custom__info > .collection-custom__rating {
    display: none;
  }
}
.section-featured-carousel {
    background: #ffffff !important;
    width: 100%;
    padding: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .carousel-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
  }

  .carousel-heading {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 15px;
  }

  .carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 5px;
    padding: 0;
    margin: 0;
  }

  .carousel-slide {
    flex: 0 0 auto;
    width: calc(50% - 2.5px);
    min-width: 0;
  }

  @media screen and (min-width: 768px) {
    .carousel-slide {
      width: calc(33.333% - 3.33px);
    }
  }

  @media screen and (min-width: 1024px) {
    .carousel-slide {
      width: calc(20% - 4px);
    }
  }

  .product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: transform 0.2s ease;
  }

  .product-card:hover {
    transform: translateY(-2px);
  }

  .product-card--sold-out {
    opacity: 0.6;
  }

  .product-card--sold-out::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 128, 128, 0.3);
    z-index: 1;
    pointer-events: none;
  }

  .product-card--sold-out::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 45%, #888 48%, #888 52%, transparent 55%);
    z-index: 2;
    pointer-events: none;
  }

  .sold-out-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    color: #666;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    border: 1px solid #ccc;
    border-radius: 2px;
  }

  .product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    margin-bottom: 0;
    width: 100%;
  }

  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
  }

  .product-image--primary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
  }

  .product-image--secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }

  .product-card:hover .product-image--primary {
    opacity: 0;
  }

  .product-card:hover .product-image--secondary {
    opacity: 1;
  }

  .product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 1rem !important;
  }

  @media screen and (min-width: 768px) {
    .product-info {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
  }

  .product-info > * + * {
    margin-block-start: 0 !important;
    margin-top: 0 !important;
  }

  .product-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
  }

  .product-title {
    font-size: 0.7rem;
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
  }

  .product-variant-info {
    font-size: 0.65rem;
    color: #666;
    line-height: 1.2;
  }

  .product-variant-color {
    font-weight: 500;
    text-transform: capitalize;
    color: #666;
  }

  .product-variant-count {
    margin-left: 0.25rem;
    color: #666;
  }

  .product-price {
    font-size: 0.7rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: left;
    flex-shrink: 0;
  }

  @media screen and (min-width: 768px) {
    .product-price {
      text-align: right;
    }
  }

  .price-sale {
    color: #000;
  }

  .price-compare {
    text-decoration: line-through;
    color: #999;
    margin-left: 0.5rem;
  }

  .carousel-container {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .carousel-container * {
    --product-info-block-spacing: 0px !important;
  }

  /* Navigation */
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
  }

  .carousel-nav:hover {
    background: #000;
    color: white;
    border-color: #000;
  }

  .carousel-nav--prev {
    left: 10px;
  }

  .carousel-nav--next {
    right: 10px;
  }

  .carousel-nav svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .carousel-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    color: inherit;
    border-color: #ddd;
  }

  /* Hide navigation on small screens */
  @media screen and (max-width: 767px) {
    .carousel-nav {
      display: none;
    }
  }

  /* Dots indicator */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .carousel-dot--active {
    background: #000;
  }

  @media screen and (min-width: 768px) {
    .carousel-dots {
      display: none;
    }
  }
.section-clean-collection {
    background: #ffffff !important;
    width: 100%;
    padding-top: 20px !important;
    padding-block-start: 20px !important;
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .collection-grid {
    display: grid;
    gap: 15px 5px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
  }

  @media screen and (min-width: 768px) {
    .collection-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 15px 5px;
    }
  }

  @media screen and (min-width: 1024px) {
    .collection-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 15px 5px;
    }
  }

  .collection-grid li {
    display: flex;
    min-width: 0;
  }

  .product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    position: relative;
  }

  .product-card--sold-out {
    opacity: 0.6;
  }

  .product-card--sold-out::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 128, 128, 0.3);
    z-index: 1;
    pointer-events: none;
  }

  .product-card--sold-out::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 45%, #888 48%, #888 52%, transparent 55%);
    z-index: 2;
    pointer-events: none;
  }

  .product-card--sold-out .product-title,
  .product-card--sold-out .product-variant-info,
  .product-card--sold-out .product-price {
    color: #888 !important;
  }

  .sold-out-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    color: #666;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    border: 1px solid #ccc;
    border-radius: 2px;
  }

  .product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    margin-bottom: 0;
    width: 100%;
  }

  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-image--primary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
  }

  .product-image--secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }





  .product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 1rem !important;
  }

  @media screen and (min-width: 768px) {
    .product-info {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
  }

  .product-info > * + * {
    margin-block-start: 0 !important;
    margin-top: 0 !important;
  }

  .product-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
  }

  .product-title {
    font-size: 0.7rem;
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
  }

  .product-variant-info {
    font-size: 0.65rem;
    color: #666;
    line-height: 1.2;
  }

  .product-variant-color {
    font-weight: 500;
    text-transform: capitalize;
    color: #666;
  }

  .product-variant-count {
    margin-left: 0.25rem;
    color: #666;
  }

  .product-price {
    font-size: 0.7rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: left;
    flex-shrink: 0;
  }

  @media screen and (min-width: 768px) {
    .product-price {
      text-align: right;
    }
  }

  .price-sale {
    color: #000;
  }

  .price-compare {
    text-decoration: line-through;
    color: #999;
    margin-left: 0.5rem;
  }

  .collection-container {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .collection-container * {
    --product-info-block-spacing: 0px !important;
  }

  .load-more-section {
    margin-top: 3rem;
    text-align: center;
    padding: 0 15px;
  }

  .load-more-button {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
  }

  .load-more-button:hover {
    background: #000;
    color: white;
  }

  .progress-info {
    max-width: 400px;
    margin: 0 auto;
  }

  .progress-bar {
    height: 2px;
    background: rgba(0,0,0,0.1);
    margin-bottom: 0.75rem;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: #000;
    transition: width 0.3s ease;
  }

  .progress-text {
    font-size: 0.875rem;
    color: #666;
  }
.shopify-section.section.usp-banner-section {
    padding: 0 !important;
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
  }
  
  .usp-banner {
    position: relative;
    padding: var(--spacing-3, 0.75rem) var(--spacing-6, 1.5rem);
    width: 100%;
    background: var(--usp-background, var(--background));
    border-top: var(--usp-border-top, none);
    border-bottom: var(--usp-border-bottom, none);
  }
  
  .usp-banner__container {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  
  .usp-banner__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-4, 1rem);
  }
  
  .usp-banner__item {
    text-align: center;
    flex: 1;
    min-width: max-content;
    color: var(--usp-text-color, var(--text));
  }
  
  .usp-banner__content {
    display: flex;
    flex-direction: var(--usp-direction, row);
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2, 0.5rem);
  }
  
  .usp-banner__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--usp-icon-color, currentColor);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  
  .usp-banner__icon svg {
    width: 100%;
    height: 100%;
    color: currentColor;
  }
  
  .usp-banner__text {
    font-size: var(--text-sm, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    color: inherit;
    font-weight: 500;
    line-height: 1.2;
    text-align: var(--usp-text-align, center);
  }
  
  @media screen and (max-width: 767px) {
    .usp-banner {
      padding: var(--spacing-2, 0.5rem) var(--spacing-4, 1rem);
    }
    
    .usp-banner__container {
      padding: 0;
    }
    
    .usp-banner__list {
      display: grid;
      grid-template-columns: repeat(var(--usp-mobile-columns, 2), 1fr);
      gap: var(--spacing-3, 0.75rem);
      justify-content: center;
    }
    
    .usp-banner__item {
      width: 100%;
      flex: initial;
      min-width: 0;
    }
    
    .usp-banner__content {
      gap: var(--spacing-1-5, 0.375rem);
    }
    
    .usp-banner__text {
      font-size: var(--text-xs, 0.6875rem);
      letter-spacing: 0.025em;
      text-align: left;
    }
    
    .usp-banner__icon {
      width: 14px;
      height: 14px;
    }
  }