/** Shopify CDN: Minification failed

Line 360:0 Unexpected "}"

**/
/* Collection Custom Grid Styles */

.collection-custom-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.collection-header {
  margin-bottom: 2rem;
}

.collection-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
  margin: 0;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media (min-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Card Wrapper */
.product-card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-link {
  text-decoration: none;
  color: inherit;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-link:hover .product-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Product Image Container */
.product-image-container {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
  background: #f5f5f5;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-link:hover .product-image {
  transform: scale(1.05);
}

.product-image.placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: auto;
  opacity: 0.3;
}

/* Product Badges */
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.promo-badge {
  background: #1976d2;
  color: #fff;
}

.out-of-stock-badge {
  background:rgb(0, 0, 0);
  color: #fff;
}

/* Product Info */   
.product-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-content {
  flex: 1;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-description {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.product-price-container {
  margin-top: auto;
}

.product-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
}

.product-price .compare-price {
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 0.5rem;
}

/* Product Actions */
.product-actions {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
}

.add-to-cart-form {
  margin: 0;
}

.add-to-cart-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #1976d2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  padding: 0;
}

.add-to-cart-btn:hover:not(.disabled) {
  background: #1976d2;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.add-to-cart-btn:active:not(.disabled) {
  transform: scale(0.95);
}

.add-to-cart-btn.disabled {
  background: #e0e0e0;
  color: #9e9e9e;
  cursor: not-allowed;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn svg {
  width: 20px;
  height: 20px;
}

/* No Products */
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}

/* Pagination */
.pagination {
  margin-top: 3rem;
  text-align: center;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  text-decoration: none;
  color: #1976d2;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background: #1976d2;
  color: #fff;
  border-color: #1976d2;
}

.pagination .current {
  background: #1976d2;
  color: #fff;
  border-color: #1976d2;
}

/* =========================================
   Responsive Adjustments (Mobile)
   ========================================= */
@media (max-width: 599px) {
  .collection-custom-grid {
    padding: 1rem 0.5rem;
  }

  .collection-title {
    font-size: 1.25rem;
  }

  .product-info {
    padding: 0.75rem;
  }

  .product-title {
    font-size: 0.9rem;
  }

  .product-description {
    font-size: 0.8rem;
  }

  .product-price {
    font-size: 0.9rem;
  }

  .add-to-cart-btn {
    width: 36px;
    height: 36px;
  }
} /* <--- This closing bracket was missing! */


/* =========================================
   Z-Index Fix for Sticky Header
   (Keeps animations enabled)
   ========================================= */

/* 1. Force the Website Header to be the absolute ceiling (Top Layer) */
.header-wrapper,
.site-header,
.header-sticky,
header[class*="header"],
#shopify-section-header {
    z-index: 9999 !important;
    position: relative;
}

/* 2. Reset the Product Grid to be a lower layer */
.collection-custom-grid {
    position: relative;
    z-index: 1;
}

.product-card-wrapper {
    z-index: 1;
    position: relative;
}

/* 3. Ensure buttons don't fight the header */
.product-actions,
.product-badge {
    z-index: 2; /* Sits above product image, but below Site Header */
}

/* 1. Only fade the image container, keep text sharp */
.product-card-wrapper.sold-out .product-image-container {
  opacity: 0.4; /* Slight fade */
  /*filter: grayscale(100%); /* Turns image black and white */
}

/* 2. Optional: Disable clicking on the image if you want */
/* .product-card-wrapper.sold-out .product-link {
   pointer-events: none;
} */

/* 3. Ensure the 'Out of Stock' badge stays fully visible */
.product-card-wrapper.sold-out .out-of-stock-badge {
  opacity: 1; /* Force badge to stay bright */
  filter: none;
}


}

