/** Shopify CDN: Minification failed

Line 103:13 Expected identifier but found whitespace
Line 103:15 Unexpected "{"
Line 103:24 Expected ":"
Line 104:8 Expected identifier but found whitespace
Line 104:10 Unexpected "{"
Line 104:19 Expected ":"
Line 109:13 Expected identifier but found whitespace
Line 109:15 Unexpected "{"
Line 109:24 Expected ":"
Line 110:8 Expected identifier but found whitespace
... and 8 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-images-with-text (INDEX:11) */
.collection-grid-container {
  max-width: 1200px;  /* Container max width */
  margin: 0 auto;     /* Center align */
  padding: 0 15px;    /* Left & right padding */
}

.collection-image-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.collection-image-row a {
  display: block;
  text-align: center;
}

.collection-image-row a img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.collection-image-row a img:hover {
  transform: scale(1.05);
}

.collection-image-row a .collection-text {
  margin-top: 10px;
  font-weight: 500;
}

/* Tablet */
@media (max-width: 1024px) {
  .collection-image-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .collection-image-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* END_SECTION:collection-images-with-text */

/* START_SECTION:fake-views (INDEX:18) */
/* Fake Views Container */
.fake-views {
  margin-top: 8px;
  font-size: 14px;
  color: #e63946;
  font-weight: 500;
  text-align: left;
}
/* END_SECTION:fake-views */

/* START_SECTION:tab-collection (INDEX:56) */
/* Container */
.tab-collection-wrapper {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 15px;
}

/* Tabs */
.tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-buttons button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  background: {{ section.settings.tab_bg }};
  color: {{ section.settings.tab_text }};
  border-radius: 6px;
}

.tab-buttons button:hover {
  background: {{ section.settings.tab_hover_bg }};
  color: {{ section.settings.tab_hover_text }};
}

.tab-buttons button.active {
  background: {{ section.settings.tab_active_bg }};
  color: {{ section.settings.tab_active_text }};
}

/* Tab Content */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Product Grid */
.tab-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 25px;
}

/* Product Card */
.tab-product-card {
  position: relative;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: 0.3s;
  text-align: left; /* LEFT ALIGN */
}

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

/* Remove Underline */
.tab-product-card a,
.tab-product-card a:hover {
  text-decoration: none !important;
  color: inherit;
}

.tab-product-card img {
  width: 100%;
  border-radius: 6px;
}

.tab-product-card h4 {
  margin: 10px 0 5px;
  font-size: 16px;
  text-align: left;
}

/* Rating LEFT */
.product-rating {
  margin-top: 5px;
  min-height: 22px;
  text-align: left;
}

/* Force Rating Apps Left */
.AirReviews-Widget,
.jdgm-widget {
  display: block !important;
  text-align: left !important;
}

/* Price LEFT */
.product-price {
  margin-top: 5px;
  font-weight: 600;
  text-align: left;
}

.compare-price {
  text-decoration: line-through;
  opacity: 0.6;
  margin-right: 6px;
}

/* Sale Badge */
.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
}

/* Add To Cart */
.add-to-cart-btn {
  margin-top: 10px;
  padding: 8px 15px;
  border: none;
  background: black;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
}

/* Mobile */
@media (max-width: 768px) {
  .tab-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .tab-product-card {
    padding: 10px;
  }

  .tab-product-card h4 {
    font-size: 14px;
  }
}
/* END_SECTION:tab-collection */