/** Shopify CDN: Minification failed

Line 17:0 Unexpected "{"
Line 17:1 Unexpected "{"
Line 17:10 Expected ":"
Line 18:0 Unexpected "{"
Line 18:1 Unexpected "{"
Line 18:10 Expected ":"
Line 19:0 Unexpected "{"
Line 19:1 Unexpected "{"
Line 19:10 Expected ":"
Line 21:10 Unexpected "{"
... and 75 more hidden warnings

**/
/* START_SECTION:subcategory-grid (INDEX:60) */
{{ section.settings.collection_title_font | font_face: font_display: 'swap' }}
{{ section.settings.subcategory_title_font | font_face: font_display: 'swap' }}
{{ section.settings.section_font | font_face: font_display: 'swap' }}

.section-{{ section.id }}-padding,
.section-{{ section.id }}-padding * {
  font-family: {{ section.settings.section_font.family }}, {{ section.settings.section_font.fallback_families }};
}

.subcategory-section [hidden] {
  display: none !important;
}

.subcategory-section {
  margin: 0 auto;
  background-color: #FFFDF4;
}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

/* Collection Header */
.collection-header {
  margin-bottom: 3rem;
}

.collection-title {
  font-size: 3.6rem;
  font-weight: {{ section.settings.collection_title_font | font_weight }} !important;
  font-style: {{ section.settings.collection_title_font | font_style }} !important;
  font-variation-settings: "wght" {{ section.settings.collection_title_font | font_weight }};
  color: rgb(var(--color-foreground));
  margin: 0 0 1rem 0;
  letter-spacing: 0.02em;
  font-family: {{ section.settings.collection_title_font | font_family }} !important;
}

.collection-description {
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.7);
  max-width: 80rem;
  font-family: {{ section.settings.section_font.family }}, {{ section.settings.section_font.fallback_families }};
}

/* Description style: Subtitle */
.collection-description--subtitle {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(var(--color-foreground), 0.85);
}

/* Subcategory Horizontal Scroll */
.subcategory-scroll-wrapper {
  margin-bottom: 3rem;
  overflow: hidden;
}

.subcategory-grid-horizontal {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1rem;
}

.subcategory-grid-horizontal::-webkit-scrollbar {
  display: none;
}

.subcategory-card {
  text-decoration: none;
  text-align: center;
  display: block;
  flex: 0 0 auto;
  width: 200px;
  transition: transform 0.2s ease;
}

.subcategory-card:hover {
  transform: translateY(-3px);
}

.subcategory-image {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 1.2rem;
  aspect-ratio: 1;
  background-color: rgba(var(--color-foreground), 0.03);
}

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

.subcategory-title {
  font-size: 1.4rem;
  font-weight: {{ section.settings.subcategory_title_font | font_weight }} !important;
  font-style: {{ section.settings.subcategory_title_font | font_style }} !important;
  font-variation-settings: "wght" {{ section.settings.subcategory_title_font | font_weight }};
  color: rgb(var(--color-foreground));
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  font-family: {{ section.settings.subcategory_title_font | font_family }} !important;
}

/* Breadcrumb */
.breadcrumb-wrapper {
  margin: 0 0 2rem 0;
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.6);
}

.breadcrumb-wrapper a {
  color: rgba(var(--color-foreground), 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-wrapper a:hover {
  color: rgb(var(--color-foreground));
}

.breadcrumb-separator {
  margin: 0 0.5rem;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-button {
  padding: 0.8rem 2rem;
  background: transparent;
  border: 1px solid rgba(var(--color-foreground), 0.15);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  color: rgb(var(--color-foreground));
  border-radius: 0;
}

.filter-button:hover {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-color: rgb(var(--color-foreground));
}

/* Active Filter Chips
   Transparent box, same outline as the filter buttons, square corners.
   Desktop: wraps to a new line when it runs out of room.
   Mobile: stays on one line and scrolls horizontally (swipe). */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: -2rem 0 3rem 0;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
  padding: 0.9rem 1.6rem;
  background: transparent;
  border: 1px solid rgba(var(--color-foreground), 0.15);
  border-radius: 0;
  font-size: 1.3rem;
  line-height: 1;
  color: rgb(var(--color-foreground));
}

.active-filter-chip__label {
  display: block;
  white-space: nowrap;
}

.active-filter-chip__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: rgb(var(--color-foreground));
  line-height: 0;
  transition: opacity 0.2s ease;
}

.active-filter-chip__remove:hover {
  opacity: 0.6;
}

.active-filter-chip__remove svg {
  width: 14px;
  height: 14px;
  display: block;
}

/* Filter Sidebar */
.filter-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

.filter-sidebar.active {
  pointer-events: auto;
}

.filter-sidebar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.filter-sidebar.active .filter-sidebar-overlay {
  opacity: 1;
}

.filter-sidebar-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: #FFFDF4;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.filter-sidebar.active .filter-sidebar-content {
  transform: translateX(0);
}

.filter-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
}

.filter-sidebar-header h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
  color: rgb(var(--color-foreground));
}

.filter-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
}

.filter-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.filter-section {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
  padding: 1.5rem 0;
}

.filter-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgb(var(--color-foreground));
  text-align: left;
}

.filter-accordion-btn svg {
  transition: transform 0.3s ease;
}

.filter-accordion-btn.active svg {
  transform: rotate(180deg);
}

.filter-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-top: 0.4rem;
}

.filter-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  cursor: pointer;
  font-size: 1.3rem;
  color: rgb(var(--color-foreground));
  line-height: 1.4;
}

.filter-option-link {
  text-decoration: none;
}

.filter-option-link:hover {
  opacity: 0.75;
}

.filter-option input {
  margin: 0.2rem 0 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.filter-option span {
  display: block;
  word-break: break-word;
}

.filter-empty-message {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.6);
  margin: 1rem 0 0;
}

.filter-sidebar-footer {
  padding: 2rem;
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
}

.filter-apply-btn {
  width: 100%;
  padding: 1.5rem;
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: opacity 0.2s ease;
}

.filter-apply-btn:hover {
  opacity: 0.8;
}

/* Product Grid */
.collection-products {
  margin-top: 3rem;
}

/* Full width products */
.collection-products--full {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  margin-bottom: 4rem;
  transition: opacity 0.2s ease;
}

.product-grid.is-loading {
  opacity: 0.4;
  pointer-events: none;
}

.product-card-wrapper {
  position: relative;
}

.product-card {
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease;
}

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

/* ── Product image zoom on hover ── */
.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: rgba(var(--color-foreground), 0.02);
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Product Badges */
.product-badges {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  display: flex;
  gap: 0.3rem;
  flex-direction: row;
  align-items: flex-start;
  z-index: 1;
}

.badge {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 8px;
  white-space: nowrap;
}

.badge-bestseller {
  background-color: #7D7D7D;
  color: #FFFFFF;
}

.badge-new {
  background-color: #7D7D7D;
  color: #FFFFFF;
}

/* Product Info */
.product-info {
  text-align: left;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgb(var(--color-foreground));
  margin: 0 0 0.3rem 0;
  letter-spacing: 0.03em;
  font-family: {{ section.settings.section_font.family }}, {{ section.settings.section_font.fallback_families }};
}

.product-subtitle {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.6);
  margin: 0 0 0.5rem 0;
  font-family: {{ section.settings.section_font.family }}, {{ section.settings.section_font.fallback_families }};
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgb(var(--color-foreground));
  margin: 0;
  font-family: {{ section.settings.section_font.family }}, {{ section.settings.section_font.fallback_families }};
}

/* Temporary filter debug readout */
.filter-debug {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #b00;
  word-break: break-all;
  margin: 0.4rem 0 0;
}

/* Quick Add Button */
.quick-add-btn {
  position: absolute;
  bottom: calc(1.5rem + 1px);
  right: 1rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0;
  background: #FFFDF4;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0.4rem;
  z-index: 2;
}

.quick-add-btn svg:not(.spinner) {
  color: rgb(var(--color-foreground));
  width: 20px;
  height: 20px;
}

.quick-add-btn:hover {
  background: rgb(var(--color-foreground));
  border: none;
}

.quick-add-btn:hover svg:not(.spinner) {
  color: white;
}

.quick-add-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Loading Spinner */
.add-to-cart-loading {
  display: none;
}

.spinner {
  animation: rotate 1s linear infinite;
}

.spinner .path {
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

@keyframes dash {
  0%   { stroke-dasharray: 1, 150;  stroke-dashoffset: 0;    }
  50%  { stroke-dasharray: 90, 150; stroke-dashoffset: -35;  }
  100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* View all button */
.view-all-wrapper {
  text-align: center;
  padding: 1rem 0 3rem;
}

.view-all-btn {
  display: inline-block;
  padding: 1.4rem 4rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-all-btn--solid {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border: 1px solid rgb(var(--color-foreground));
}

.view-all-btn--solid:hover {
  opacity: 0.85;
}

.view-all-btn--outline {
  background: transparent;
  color: rgb(var(--color-foreground));
  border: 1px solid rgb(var(--color-foreground));
}

.view-all-btn--outline:hover {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

.view-all-btn--link {
  background: transparent;
  color: rgb(var(--color-foreground));
  border: none;
  padding: 0.8rem 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.view-all-btn--link:hover {
  opacity: 0.7;
}

/* Pagination — simple "< 1 / N >" layout */
.pagination-wrapper {
  padding: 3rem 0;
}

.pagination-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}

.pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.pagination-arrow:hover {
  opacity: 0.55;
}

.pagination-arrow.is-disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.pagination-count {
  font-size: 1.4rem;
  font-weight: 400;
  color: #000;
  min-width: 4.5rem;
  text-align: center;
}

/* Mobile Responsive */
@media screen and (max-width: 749px) {
  .collection-title {
    font-size: 2.4rem;
  }

  .subcategory-card {
    width: 150px;
  }

  .subcategory-title {
    font-size: 1.2rem;
  }

  .filter-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    gap: 0.8rem;
  }

  .filter-button {
    white-space: nowrap;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
  }

  /* Active filters: single horizontal line, swipeable on mobile */
  .active-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .active-filters::-webkit-scrollbar {
    display: none;
  }

  .active-filter-chip__label {
    white-space: nowrap;
  }

  .product-grid {
    gap: 2rem 1.5rem;
  }

  /* ── MOBILE ONLY: align cart icon parallel with product title ── */
  .quick-add-btn {
    bottom: 5rem;
    right: 0;
    width: 3rem;
    height: 3rem;
  }

  .quick-add-btn svg:not(.spinner) {
    width: 17px;
    height: 17px;
  }

  .filter-sidebar-content {
    max-width: 100%;
  }
}
/* END_SECTION:subcategory-grid */
