<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 104:2 Unexpected "{"
Line 104:3 Expected identifier but found "%"
Line 105:11 Expected identifier but found whitespace
Line 105:13 Unexpected "{"
Line 105:22 Expected ":"
Line 105:69 Unexpected "{"
Line 105:78 Expected ":"
Line 106:2 Unexpected "{"
Line 106:3 Expected identifier but found "%"
Line 127:8 Expected identifier but found whitespace
... and 5 more hidden warnings

**/


/* CSS from section stylesheet tags */
.best-sellers-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.best-sellers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.best-seller {
  width: 22%;
  min-width: 160px;
  max-width: 240px;
  background: var(--bg);
  padding: 12px;
  text-align: center;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
}
.best-seller img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 8px;
}
.best-seller h3 {
  font-size: 14px;
  min-height: 40px;
  margin: 6px 0;
  color: var(--text);
}
.best-seller .price {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 6px;
}
.best-seller a.button {
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 8px 12px;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
}
.section-heading {
  font-size: 22px;
  text-align: center;
  margin: 20px 0;
  color: var(--text);
}
@media screen and (max-width: 768px) {
  .best-sellers-grid {
    min-width: 720px;
  }
}
.sale-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.sale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  min-width: 720px;
}
.sale-product {
  background: var(--bg-color);
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  {% if section.settings.enable_product_border %}
    border: {{ section.settings.product_border_thickness }}px solid {{ section.settings.product_border_color }};
  {% endif %}
}
.sale-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.sale-product img {
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0 auto 8px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.sale-product:hover img {
  transform: scale(1.05);
}
.sale-product h3 {
  font-size: 14px;
  min-height: 40px;
  margin: 6px 0;
  color: {{ section.settings.product_title_color }};
}
.sale-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--sale-price-color);
}
.original-price {
  text-decoration: line-through;
  color: var(--original-price-color);
  font-size: 14px;
  opacity: 0.8;
}
.price-block {
  margin-top: auto;
}
.add-cart-form a {
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 10px 14px;
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  min-width: 100px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.2s ease;
}
.add-cart-form a:hover {
  transform: scale(1.05);
  filter: brightness(90%);
}
.weekly-timer {
  font-size: 18px;
  font-weight: 600;
  color: {{ section.settings.timer_text_color }};
  margin-bottom: 10px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 6px;
}
.section-heading {
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.scroll-hint {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  display: none;
  font-style: italic;
  opacity: 0.8;
}
/* Section-level disclaimer */
.section-disclaimer {
  font-size: 12px;
  color: var(--disclaimer-text-color);
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .sale-scroll-wrapper { overflow-x: auto; }
  .sale-grid {
    grid-template-columns: repeat(4, 1fr);
    width: 720px;
  }
  .scroll-hint { display: block; }
}</pre></body></html>