/** Shopify CDN: Minification failed

Line 1881:19 Unexpected "*"

**/
/* ==========================================================================
   DeliverFresh Custom Styles
   Layers on top of Dawn base.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Brand Palette & Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --df-green: #1a3d2b;
  --df-green2: #2d6649;
  --df-green3: #4a9268;
  --df-lime: #7bc043;
  --df-cream: #f7f3ec;
  --df-orange: #f4a135;
  --df-red: #e53e3e;
  --df-text: #1c1c1c;
  --df-muted: #6b7280;
  --df-border: #e5e7eb;
  --df-badge-bg: #e8f5e9;
  --df-badge-text: #1a3d2b;
  --df-radius-sm: 6px;
  --df-radius-md: 10px;
  --df-radius-lg: 12px;
  --df-radius-pill: 100px;
  --df-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --df-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --df-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --df-transition: 0.25s ease;
}

/* --------------------------------------------------------------------------
   Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes df-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes df-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   1. Price Ticker (.df-ticker)
   -------------------------------------------------------------------------- */
.df-ticker {
  background: var(--df-green);
  color: #ffffff;
  overflow: hidden;
  position: relative;
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

.df-ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--df-orange);
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.df-ticker-label::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(to right, var(--df-orange), transparent);
}

.df-ticker-track {
  display: flex;
  padding-left: 120px;
  overflow: hidden;
}

.df-ticker-content {
  display: flex;
  flex-shrink: 0;
  animation: df-scroll var(--ticker-speed, 30s) linear infinite;
}

.df-ticker:hover .df-ticker-content {
  animation-play-state: paused;
}

.df-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  flex-shrink: 0;
}

.df-ticker-emoji {
  font-size: 15px;
}

.df-ticker-name {
  opacity: 0.85;
  margin-right: 4px;
}

.df-ticker-price {
  font-weight: 700;
}

.df-ticker-comparison {
  font-size: 12px;
  font-weight: 600;
}

.df-ticker-comparison--best {
  color: var(--df-lime);
}

.df-ticker-comparison--down {
  color: var(--df-lime);
}

.df-ticker-comparison--up {
  color: var(--df-red);
}

/* --------------------------------------------------------------------------
   2. Category Strip (.df-cat-strip)
   -------------------------------------------------------------------------- */
.df-cat-strip {
  display: flex;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: #ffffff;
  border-bottom: 1px solid var(--df-border);
  padding: 0 16px;
}

.df-cat-strip::-webkit-scrollbar {
  display: none;
}

.df-cat-strip--sticky {
  position: sticky;
  top: 0;
  z-index: 10;
}

.df-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  color: var(--df-muted);
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.df-cat-item:hover,
.df-cat-item.active {
  border-bottom-color: var(--df-green);
  color: var(--df-green);
}

.df-cat-emoji {
  font-size: 20px;
  line-height: 1;
}

.df-cat-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. Hero Section (.df-hero)
   -------------------------------------------------------------------------- */
.df-hero {
  background: linear-gradient(135deg, var(--df-green) 0%, var(--df-green2) 100%);
  color: #ffffff;
  min-height: 260px;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

.df-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.df-hero-content {
  position: relative;
  z-index: 1;
}

.df-hero-pretitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--df-lime);
  margin-bottom: 12px;
}

.df-hero-heading {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
}

.df-hero-heading em {
  color: var(--df-lime);
  font-style: normal;
}

.df-hero-subheading {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 480px;
}

.df-hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   Buttons (.df-btn)
   -------------------------------------------------------------------------- */
.df-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: var(--df-radius-pill);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--df-transition), transform var(--df-transition), border-color var(--df-transition);
}

.df-btn-primary {
  background: var(--df-orange);
  color: #ffffff;
}

.df-btn-primary:hover {
  background: #e5921f;
  transform: translateY(-1px);
}

.df-btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.df-btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.df-btn-full {
  width: 100%;
  justify-content: center;
}

.df-btn-store {
  background: #000000;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
}

.df-btn-store:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.df-btn-store-icon {
  flex-shrink: 0;
}

/* Trust chips (hero) */
.df-trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.df-trust-chip {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.df-trust-chip-icon {
  font-size: 14px;
}

/* Countdown box (hero) */
.df-countdown-box {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--df-radius-lg);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.df-countdown-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px;
  opacity: 0.9;
}

.df-countdown-timer {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.df-countdown-block {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--df-radius-sm);
  padding: 10px 14px;
  text-align: center;
  min-width: 64px;
}

.df-countdown-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.df-countdown-unit {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin-top: 4px;
}

.df-countdown-info {
  font-size: 13px;
  opacity: 0.75;
  margin: 0 0 16px;
}

.df-countdown-features {
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.df-cd-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.9);
}
.df-cd-feat span {
  font-size: 14px;
  flex-shrink: 0;
}
.df-cd-feat strong {
  color: #7bc043;
}

/* --------------------------------------------------------------------------
   4. Social Proof Bar (.df-social-proof)
   -------------------------------------------------------------------------- */
.df-social-proof {
  background: #ffffff;
  border-bottom: 1px solid var(--df-border);
  padding: 14px 24px;
}

.df-sp-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.df-sp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--df-text);
}

.df-sp-icon {
  font-size: 16px;
}

.df-sp-value {
  font-weight: 700;
  color: var(--df-text);
}

.df-sp-label {
  color: var(--df-muted);
}

.df-sp-divider {
  width: 1px;
  height: 20px;
  background: var(--df-border);
  flex-shrink: 0;
}

/* Live badge with blinking dot */
.df-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fee2e2;
  color: #dc2626;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

.df-live-dot {
  width: 6px;
  height: 6px;
  background: #dc2626;
  border-radius: 50%;
  animation: df-blink 1s infinite;
}

/* --------------------------------------------------------------------------
   5. Product Card Enhancements
   -------------------------------------------------------------------------- */

/* Compare badge below price */
.df-compare-badge {
  font-size: 12px;
  color: var(--df-green3);
  font-weight: 600;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.df-compare-badge__icon {
  color: var(--df-green3);
}

/* Product card badges: positioned absolute top-left */
.df-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.df-badge--deal {
  background: var(--df-orange);
  color: white;
}

.df-badge--bestseller {
  background: var(--df-green);
  color: white;
}

.df-badge--hot {
  background: var(--df-red);
  color: white;
}

.df-badge--organic {
  background: var(--df-green);
  color: white;
}

.df-badge--exclusive {
  background: var(--df-red);
  color: white;
}

/* Ensure card wrappers are positioned for badges */
.df-card-wrapper {
  position: relative;
}

/* --------------------------------------------------------------------------
   6. Subscription Box (.df-sub-box)
   -------------------------------------------------------------------------- */
.df-sub-box {
  background: var(--df-green);
  color: #ffffff;
}

.df-sub-box-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--df-radius-lg);
  padding: 28px 32px;
}

.df-sub-emoji {
  font-size: 40px;
  flex-shrink: 0;
}

.df-sub-content {
  flex: 1;
}

.df-sub-heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}

.df-sub-description {
  font-size: 14px;
  opacity: 0.85;
  margin: 0 0 16px;
  line-height: 1.5;
}

.df-sub-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.df-sub-price-current {
  font-size: 28px;
  font-weight: 800;
}

.df-sub-price-was {
  font-size: 14px;
  opacity: 0.6;
}

.df-sub-subscriber-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--df-orange);
  color: #ffffff;
  border-radius: var(--df-radius-pill);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. Loyalty Grid (.df-loyalty)
   -------------------------------------------------------------------------- */
.df-loyalty {
  padding: 48px 24px;
}

.df-loyalty-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 32px;
}

.df-loyalty-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.df-loyalty-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--df-border);
  border-radius: var(--df-radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow var(--df-transition), transform var(--df-transition);
}

.df-loyalty-card:hover {
  box-shadow: var(--df-shadow-md);
  transform: translateY(-2px);
}

.df-loyalty-emoji {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.df-loyalty-card-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.df-loyalty-card-desc {
  font-size: 13px;
  color: var(--df-muted);
  line-height: 1.5;
  margin: 0;
}

/* --------------------------------------------------------------------------
   8. Reviews (.df-reviews)
   -------------------------------------------------------------------------- */
.df-reviews {
  padding: 48px 24px;
}

.df-reviews-header {
  text-align: center;
  margin-bottom: 32px;
}

.df-reviews-heading {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
}

.df-reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
}

.df-reviews-stars {
  color: var(--df-orange);
  font-size: 18px;
  letter-spacing: 2px;
}

.df-reviews-rating {
  font-weight: 800;
  font-size: 18px;
}

.df-reviews-count {
  color: var(--df-muted);
  font-size: 14px;
}

.df-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.df-review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--df-border);
  border-radius: var(--df-radius-md);
  padding: 24px;
  transition: box-shadow var(--df-transition);
}

.df-review-card:hover {
  box-shadow: var(--df-shadow-sm);
}

.df-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.df-review-star {
  color: var(--df-orange);
  font-size: 16px;
}

.df-review-text {
  font-size: 14px;
  color: var(--df-muted);
  line-height: 1.6;
  margin: 0 0 16px;
  padding: 0;
  border: none;
}

.df-review-author {
  font-size: 14px;
}

.df-review-name {
  display: block;
}

.df-review-location {
  font-size: 12px;
  color: var(--df-muted);
}

/* --------------------------------------------------------------------------
   9. App Download (.df-app-download)
   -------------------------------------------------------------------------- */
.df-app-download {
  color: #ffffff;
  padding: 48px 24px;
}

.df-app-download-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.df-app-emoji {
  font-size: 48px;
  flex-shrink: 0;
}

.df-app-content {
  flex: 1;
}

.df-app-heading {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px;
}

.df-app-description {
  font-size: 15px;
  opacity: 0.85;
  margin: 0 0 20px;
  line-height: 1.5;
}

.df-app-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.df-app-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.df-app-stats-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--df-lime);
}

.df-app-stats-label {
  font-size: 13px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   10. Footer Overrides (color-scheme-3 green bg)
   -------------------------------------------------------------------------- */
.color-scheme-3 .footer-block__heading,
.color-scheme-3 .footer__content-top h2 {
  color: var(--df-lime);
}

.color-scheme-3 .footer-block__details-content a {
  transition: color var(--df-transition);
}

.color-scheme-3 .footer-block__details-content a:hover {
  color: var(--df-lime);
}

.color-scheme-3 .footer__content-bottom-wrapper {
  border-top-color: rgba(255, 255, 255, 0.15);
}

/* --------------------------------------------------------------------------
   11. Collection Page
   -------------------------------------------------------------------------- */

/* Vertical filter sidebar */
.df-collection__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.df-filter-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}

.df-filter-sidebar__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--df-text);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--df-green);
}

.df-filter-group {
  margin-bottom: 20px;
}

.df-filter-group__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--df-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}

.df-filter-group__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--df-text);
  cursor: pointer;
}

.df-filter-group__option input[type="checkbox"] {
  accent-color: var(--df-green);
  width: 16px;
  height: 16px;
}

/* Live badge in breadcrumbs */
.df-breadcrumb .df-live-badge {
  font-size: 12px;
  margin-left: 8px;
}

/* Active filter tags */
.df-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.df-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--df-badge-bg);
  color: var(--df-green);
  border: none;
  border-radius: var(--df-radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--df-transition);
}

.df-filter-tag:hover {
  background: #c8e6c9;
}

.df-filter-tag__remove {
  font-size: 14px;
  line-height: 1;
  opacity: 0.7;
}

/* 3-column product grid on collection */
.df-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --------------------------------------------------------------------------
   12. Product Page
   -------------------------------------------------------------------------- */

/* Delivery info card */
.df-delivery-info {
  background: var(--df-badge-bg);
  border: 1px solid #c8e6c9;
  border-radius: var(--df-radius-md);
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.7;
  margin: 16px 0;
}

.df-del-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.df-del-icon {
  font-size: 16px;
}

/* Freshness indicator */
.df-freshness {
  margin: 16px 0;
}

.df-freshness-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--df-green);
  margin-bottom: 8px;
}

.df-freshness-scale {
  display: flex;
  gap: 3px;
  align-items: center;
}

.df-fresh-dot {
  width: 16px;
  height: 8px;
  border-radius: 4px;
  background: var(--df-border);
}

.df-fresh-dot.active {
  background: var(--df-green3);
}

.df-freshness-label {
  font-size: 11px;
  color: var(--df-muted);
  margin-left: 8px;
}

/* Farm source badge */
.df-farm-badge {
  background: var(--df-badge-bg);
  border: 1px solid #c8e6c9;
  border-radius: var(--df-radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  margin: 12px 0;
}

/* Price comparison table */
.df-price-comp {
  background: white;
  border: 1px solid var(--df-border);
  border-radius: var(--df-radius-md);
  padding: 16px;
  margin: 16px 0;
}

.df-price-comp-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--df-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.df-price-comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--df-border);
}

.df-price-comp-row:last-child {
  border-bottom: none;
}

.df-price-comp-row.highlight {
  background: #f0fdf4;
  padding: 6px 10px;
  border-radius: 6px;
  margin: 0 -10px;
}

.df-store-name {
  font-size: 13px;
}

.df-store-price {
  font-size: 14px;
  font-weight: 700;
}

.df-store-price.best {
  color: var(--df-green3);
}

.df-store-price.high {
  color: var(--df-red);
}

/* Bulk quantity pills */
.df-bulk-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.df-bulk-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 2px solid var(--df-border);
  border-radius: var(--df-radius-md);
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color var(--df-transition), background var(--df-transition);
  text-decoration: none;
  min-width: 80px;
  text-align: center;
}

.df-bulk-pill:hover {
  border-color: var(--df-green3);
}

.df-bulk-pill.active {
  border-color: var(--df-green);
  background: var(--df-badge-bg);
}

.df-bulk-pill__qty {
  font-size: 15px;
  font-weight: 700;
  color: var(--df-text);
}

.df-bulk-pill__price {
  font-size: 12px;
  color: var(--df-muted);
  margin-top: 2px;
}

.df-bulk-pill__save {
  font-size: 10px;
  font-weight: 700;
  color: var(--df-green3);
  margin-top: 4px;
}

/* Product page tab navigation */
.df-tab-nav {
  display: flex;
  border-bottom: 2px solid var(--df-border);
  gap: 0;
  margin: 32px 0 0;
}

.df-tab-nav__item {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--df-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color var(--df-transition), border-color var(--df-transition);
  white-space: nowrap;
}

.df-tab-nav__item:hover {
  color: var(--df-text);
}

.df-tab-nav__item.active {
  color: var(--df-green);
  border-bottom-color: var(--df-green);
}

.df-tab-panel {
  padding: 24px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--df-text);
}

.df-tab-panel[hidden] {
  display: none;
}

/* Frequently Bought Together */
.df-fbt {
  background: var(--df-cream);
  border-radius: var(--df-radius-lg);
  padding: 32px;
  margin: 40px 0;
}

.df-fbt__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--df-text);
  margin: 0 0 20px;
  text-align: center;
}

.df-fbt__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.df-fbt__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  width: 120px;
}

.df-fbt__item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--df-radius-sm);
  object-fit: cover;
  border: 1px solid var(--df-border);
  background: #ffffff;
}

.df-fbt__item-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--df-text);
  line-height: 1.3;
}

.df-fbt__item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--df-green);
}

.df-fbt__plus {
  font-size: 20px;
  font-weight: 700;
  color: var(--df-muted);
}

.df-fbt__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--df-border);
}

.df-fbt__total {
  font-size: 18px;
  font-weight: 800;
  color: var(--df-text);
}

.df-fbt__total small {
  font-size: 13px;
  font-weight: 400;
  color: var(--df-muted);
}

.df-fbt__add-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--df-green);
  color: #ffffff;
  border: none;
  border-radius: var(--df-radius-pill);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--df-transition);
}

.df-fbt__add-all:hover {
  background: var(--df-green2);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.df-section-spacing {
  padding-top: 48px;
  padding-bottom: 48px;
}

.df-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.df-text-center {
  text-align: center;
}

.df-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Animation Helpers
   -------------------------------------------------------------------------- */
.df-fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.df-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Dawn Override Helpers
   -------------------------------------------------------------------------- */

/* Ensure product cards can hold absolute badges */
.card-wrapper {
  position: relative;
}

/* Tighten card spacing for grocery layout */
.card__content {
  padding: 12px;
}

/* Green accent on add-to-cart buttons */
.product-form__submit.button--primary,
.df-atc-btn {
  background: var(--df-green);
  color: #ffffff;
  border: none;
  border-radius: var(--df-radius-sm);
  transition: background var(--df-transition);
}

.product-form__submit.button--primary:hover,
.df-atc-btn:hover {
  background: var(--df-green2);
}

/* Override Dawn announcement bar for ticker */
.df-ticker .announcement-bar__message {
  padding: 0;
}

/* Price styling overrides */
.df-price-was {
  text-decoration: line-through;
  color: var(--df-muted);
  font-size: 13px;
}

.df-price-now {
  color: var(--df-green);
  font-weight: 700;
}

.df-price-unit {
  font-size: 12px;
  color: var(--df-muted);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   13. Responsive -- Mobile First
   -------------------------------------------------------------------------- */

/* Small screens (below 750px) */
@media screen and (max-width: 749px) {

  /* Ticker */
  .df-ticker {
    font-size: 12px;
  }

  .df-ticker-label {
    padding: 0 10px;
    font-size: 10px;
  }

  .df-ticker-track {
    padding-left: 100px;
  }

  /* Category strip stays horizontal scroll */
  .df-cat-item {
    padding: 8px 12px;
  }

  .df-cat-emoji {
    font-size: 18px;
  }

  .df-cat-label {
    font-size: 9px;
  }

  /* Hero stacks vertically */
  .df-hero {
    padding: 32px 16px;
    min-height: auto;
  }

  .df-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .df-hero-heading {
    font-size: 28px;
  }

  .df-hero-subheading {
    font-size: 14px;
  }

  .df-hero-cta-row {
    flex-direction: column;
  }

  .df-hero-cta-row .df-btn {
    width: 100%;
    justify-content: center;
  }

  .df-countdown-box {
    order: -1;
  }

  .df-countdown-timer {
    gap: 8px;
  }

  .df-countdown-block {
    padding: 8px 10px;
    min-width: 48px;
  }

  .df-countdown-value {
    font-size: 22px;
  }

  /* Social proof bar wraps */
  .df-sp-row {
    gap: 12px;
    justify-content: flex-start;
  }

  .df-sp-divider {
    display: none;
  }

  .df-sp-item {
    font-size: 12px;
  }

  /* Subscription box stacks */
  .df-sub-box-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .df-sub-price {
    align-items: center;
  }

  /* Loyalty grid: 2 columns */
  .df-loyalty {
    padding: 32px 16px;
  }

  .df-loyalty-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .df-loyalty-card {
    padding: 20px 14px;
  }

  .df-loyalty-heading {
    font-size: 22px;
  }

  /* Reviews grid: 1 column */
  .df-reviews {
    padding: 32px 16px;
  }

  .df-review-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .df-reviews-heading {
    font-size: 22px;
  }

  /* App download stacks */
  .df-app-download {
    padding: 32px 16px;
  }

  .df-app-download-inner {
    flex-direction: column;
    text-align: center;
  }

  .df-app-buttons {
    justify-content: center;
  }

  .df-app-heading {
    font-size: 22px;
  }

  /* Collection page: sidebar hidden, full-width grid */
  .df-collection__layout {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
  }

  .df-filter-sidebar {
    position: static;
    display: none;
  }

  .df-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Product page */
  .df-bulk-pills {
    gap: 6px;
  }

  .df-bulk-pill {
    padding: 8px 14px;
    min-width: 70px;
  }

  .df-tab-nav {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .df-tab-nav::-webkit-scrollbar {
    display: none;
  }

  .df-tab-nav__item {
    padding: 10px 16px;
    font-size: 13px;
  }

  .df-fbt {
    padding: 24px 16px;
    margin: 24px 0;
  }

  .df-fbt__items {
    flex-direction: column;
    gap: 16px;
  }

  .df-fbt__item {
    width: auto;
    flex-direction: row;
    gap: 12px;
    text-align: left;
  }

  .df-fbt__plus {
    display: none;
  }

  .df-fbt__summary {
    flex-direction: column;
    gap: 12px;
  }

  .df-fbt__add-all {
    width: 100%;
    justify-content: center;
  }

  .df-delivery-info {
    padding: 16px;
  }
}

/* Medium screens (750px - 989px) */
@media screen and (min-width: 750px) and (max-width: 989px) {

  /* Hero adjustments */
  .df-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .df-hero-heading {
    font-size: 32px;
  }

  /* Loyalty: 2 columns */
  .df-loyalty-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reviews: 2 columns */
  .df-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Collection grid: 2 columns */
  .df-collection__layout {
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }

  .df-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large screens (990px and up) */
@media screen and (min-width: 990px) {

  .df-hero {
    padding: 56px 40px;
  }

  .df-hero-heading {
    font-size: 48px;
  }

  .df-hero-subheading {
    font-size: 17px;
  }

  .df-loyalty-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .df-review-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .df-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   FORCE OVERRIDES — Header, Footer, Announcement Bar, Product Cards
   These override Dawn defaults since settings_data.json doesn't sync
   ========================================================================== */

/* --- HEADER: Force dark green --- */
.header-wrapper,
.section-header,
#shopify-section-header,
#shopify-section-header .header-wrapper {
  background: var(--df-green) !important;
  color: #fff !important;
}

.header-wrapper .header {
  background: var(--df-green) !important;
}

.header .header__heading-link,
.header .header__heading-link:hover {
  color: #fff !important;
}

/* Logo "Fresh" in lime */
.header__heading-link {
  font-weight: 700 !important;
}

.header a,
.header .header__icon,
.header summary,
.header details summary .icon-caret,
.header .list-menu__item,
.header .header__menu-item,
.header nav a {
  color: #fff !important;
}

.header a:hover,
.header nav a:hover {
  color: var(--df-lime) !important;
}

.header .header__icon::after,
.header details[open] > summary .icon-caret {
  color: #fff !important;
}

.header .cart-count-bubble {
  background: var(--df-lime) !important;
  color: #fff !important;
}

.header .header__search input,
.header .search__input {
  background: rgba(255,255,255,0.15) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 25px !important;
}

.header .header__search input::placeholder,
.header .search__input::placeholder {
  color: rgba(255,255,255,0.6) !important;
}

.header .header__inline-menu .list-menu {
  gap: 4px;
}

.header .header__inline-menu .list-menu__item {
  padding: 8px 14px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}

/* --- ANNOUNCEMENT BAR: Force dark background --- */
.announcement-bar-section,
#shopify-section-announcement-bar,
.utility-bar,
.announcement-bar {
  background: #1c1c1c !important;
  color: #fff !important;
}

.announcement-bar .announcement-bar__message,
.announcement-bar a,
.announcement-bar p,
.announcement-bar span {
  color: #fff !important;
}

/* --- FOOTER: Force dark green --- */
.footer,
.section-footer,
#shopify-section-footer,
.footer-block,
footer,
.footer .footer__content-top {
  background: var(--df-green) !important;
  color: #fff !important;
}

.footer h2,
.footer h3,
.footer h4,
.footer .footer-block__heading {
  color: var(--df-lime) !important;
}

.footer a,
.footer .footer__list-social a,
.footer .copyright__content a,
.footer span,
.footer p,
.footer label,
.footer .footer-block__details-content {
  color: rgba(255,255,255,0.8) !important;
}

.footer a:hover {
  color: #fff !important;
}

.footer .newsletter-form__field-wrapper input {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.3) !important;
  color: #fff !important;
  border-radius: 25px !important;
}

.footer .newsletter-form__button {
  color: #fff !important;
}

.footer .copyright,
.footer .footer__content-bottom {
  border-color: rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.5) !important;
}

.footer .list-payment .payment-icon {
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

/* --- PRODUCT CARDS: Green Add to Cart, better styling --- */
.card .button,
.card .quick-add__submit,
.card-wrapper .button,
.quick-add__submit,
button.quick-add__submit {
  background: var(--df-green) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

.card .button:hover,
.card .quick-add__submit:hover,
button.quick-add__submit:hover {
  background: var(--df-green2) !important;
}

.card .price .price-item--regular,
.card .price .price-item--sale {
  color: var(--df-green) !important;
  font-weight: 700 !important;
}

/* Card hover */
.card-wrapper:hover .card {
  border-color: var(--df-green) !important;
}

/* --- BUTTONS: Global green/orange overrides --- */
.button:not(.df-btn):not(.quick-add__submit),
.shopify-challenge__button,
.customer button {
  border-radius: 25px !important;
}

.button--primary:not(.df-btn) {
  background: var(--df-green) !important;
  color: #fff !important;
}

.button--primary:not(.df-btn):hover {
  background: var(--df-green2) !important;
}

/* --- SECTION SPACING: Remove Dawn's default spacing --- */
.section-template--*-padding,
.shopify-section {
  --spacing-sections-desktop: 0px;
  --spacing-sections-mobile: 0px;
}

/* --- "Featured collection" title styling --- */
.section-header .title,
.collection .title {
  font-size: 22px !important;
  font-weight: 700 !important;
}

/* --- Social proof force styling --- */
.df-social-proof {
  border-bottom: 1px solid var(--df-border);
  background: #fff !important;
}

.df-sp-row {
  padding: 12px 0 !important;
}

/* --- Category strip force visibility --- */
.df-cat-strip {
  background: #fff !important;
  border-bottom: 1px solid var(--df-border) !important;
  padding: 0 20px !important;
}

.df-cat-item {
  padding: 12px 16px !important;
  min-width: auto !important;
}

/* --- Ticker force visibility --- */
.df-ticker {
  background: #1c1c1c !important;
  min-height: 36px;
}

/* --- Subscription box refinement --- */
.df-sub-box {
  background: var(--df-green) !important;
}

/* --- Loyalty cards force white bg --- */
.df-loyalty {
  background: #fff !important;
}

.df-loyalty-card {
  background: #fff !important;
  border: 1px solid var(--df-border) !important;
}

/* --- Reviews force cream bg --- */
.df-reviews {
  background: var(--df-cream) !important;
}

.df-review-card {
  background: #fff !important;
  border: 1px solid var(--df-border) !important;
  border-radius: 10px !important;
  padding: 20px !important;
}

/* --- App download force green --- */
.df-app-download {
  background: var(--df-green2) !important;
  color: #fff !important;
}

/* --- Prediction search styling --- */
.predictive-search {
  border-radius: 12px !important;
}

/* --- Remove Dawn section borders --- */
.shopify-section + .shopify-section {
  border: none !important;
}
