/** Shopify CDN: Minification failed

Line 364:15 Expected identifier but found whitespace
Line 364:17 Expected identifier but found "%"
Line 364:74 Expected identifier but found "%"
Line 364:91 Expected identifier but found "%"
Line 367:2 Unexpected "{"
Line 367:3 Expected identifier but found "%"
Line 376:2 Unexpected "{"
Line 376:3 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:deals-grocery-showcase (INDEX:23) */
/* ============================================================
   DEALS GROCERY SHOWCASE — Namespace: dgs-
   ============================================================ */

.dgs-section {
  padding: 40px 20px;
  overflow: hidden;
}

.dgs-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Header ── */
.dgs-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 24px;
  min-height: 40px;
}

.dgs-heading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.dgs-cta-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
  position: relative;
  z-index: 1;
}
.dgs-cta-btn:hover { background: #333; }

/* ── Track Wrapper ── */
.dgs-track-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Track: CSS Grid ── */
.dgs-track {
  display: grid;
  grid-template-columns: repeat(var(--dgs-cols-desktop, 5), minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  overflow: hidden;
}

/* ── Card ── */
.dgs-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
}
.dgs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.13);
}

.dgs-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 16px;
}

.dgs-card__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
}
.dgs-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dgs-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.dgs-card__placeholder-svg {
  width: 60px;
  height: 60px;
  fill: #ccc;
}

.dgs-card__body { text-align: center; }
.dgs-card__badge {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}
.dgs-card__title {
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

/* Hidden cards (JS paging) */
.dgs-card--hidden {
  display: none !important;
}

/* ── Arrows ── */
.dgs-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.dgs-arrow:hover { background: #f5f5f5; }
.dgs-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ── Tablet (576px – 1023px) ── */
@media (min-width: 576px) and (max-width: 1023px) {
  .dgs-track {
    grid-template-columns: repeat(var(--dgs-cols-tablet, 3), minmax(0, 1fr));
  }
}

/* ── Mobile (≤575px) ── */
@media (max-width: 575px) {
  .dgs-section {
    padding: 28px 16px;
  }

  /* 3 cards per row on mobile */
  .dgs-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
  }

  /* Show ALL cards on mobile — no paging */
  .dgs-card--hidden {
    display: block !important;
  }

  /* Hide arrows on mobile */
  .dgs-arrow {
    display: none !important;
  }

  .dgs-track-wrapper {
    gap: 0;
  }

  /* Heading stays centered via absolute positioning — no override needed */
  .dgs-heading {
    font-size: 20px;
    white-space: normal;
    width: 60%;
  }

  /* Smaller card padding on mobile */
  .dgs-card__link {
    padding: 10px;
  }

  .dgs-card__badge {
    font-size: 11px;
  }

  .dgs-card__title {
    font-size: 11px;
  }
}
/* END_SECTION:deals-grocery-showcase */

/* START_SECTION:product-grid-with-banner (INDEX:79) */
.product-grid-section {
  padding: 40px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card,
.banner-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Banner */
.banner-card {
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
}

.banner-content {
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.banner-content h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.banner-content .price {
  font-size: 20px;
  margin-bottom: 12px;
}

.banner-content a {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* Product Card */
.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff5a5f;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 18px;
  cursor: pointer;
}

.product-info {
  padding: 16px;
}

.product-info h4 {
  font-size: 16px;
  margin: 0 0 6px;
}

.price {
  font-size: 15px;
  font-weight: 600;
}

.compare {
  text-decoration: line-through;
  color: #999;
  margin-left: 6px;
}

.reviews {
  font-size: 13px;
  color: #666;
  margin: 6px 0;
}

.add-to-cart {
  margin-top: 12px;
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 30px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    overflow-x: {% if section.settings.mobile_layout == 'carousel' %}auto{% else %}visible{% endif %};
  }

  {% if section.settings.mobile_layout == 'carousel' %}
  .product-grid {
    display: flex;
    gap: 16px;
  }
  .product-card,
  .banner-card {
    min-width: 75%;
  }
  {% endif %}
}
/* END_SECTION:product-grid-with-banner */