/*
 * Home page styles — verbatim port of the `<style jsx global>` block in the
 * original pages/index.tsx. These were GLOBAL in the Next.js app (styled-jsx
 * `global`), so they are loaded globally here too. All selectors are `.sf-*`
 * prefixed and unique to the home page, so loading them app-wide is harmless
 * and guarantees the home + hero markup renders pixel-identically.
 *
 * ═══ SNAPPYFRESH HOME — from-scratch redesign ═══
 */
:root {
  --sf-green: #1a5c38;
  --sf-green-mid: #236b43;
  --sf-emerald: #2ecc71;
  --sf-emerald-light: #27ae60;
  --sf-emerald-bright: #00d26a;
  --sf-accent: #ff6b35;
  --sf-red: #e74c3c;
  --sf-bg: #f5f6f8;
  --sf-dark: #111a14;
  --sf-text: #222;
  --sf-muted: #6b7c74;
  --sf-border: #e0e6e2;
  --sf-card-shadow: 0 2px 12px rgba(26, 92, 56, 0.08);
  --sf-radius: 14px;
}
.sf-home {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 24px 48px;
}
.sf-section-gap {
  margin-bottom: 36px;
}
.sf-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.sf-section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--sf-dark);
  letter-spacing: -0.3px;
  text-transform: uppercase;
  margin: 0;
}
.sf-view-all {
  color: var(--sf-green);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: none;
}

/* ── Quick Shops Desktop Scroll Carousel ── */
.sf-qs-scroller {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sf-qs-viewport {
  position: relative;
  flex: 1;
  min-width: 0;
}
.sf-qs-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 10px;
}
.sf-qs-track::-webkit-scrollbar { display: none; }
.sf-qs-track .sf-qs-item {
  flex: 0 0 122px;
  scroll-snap-align: start;
}
.sf-qs-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.sf-qs-edge--left  { left:  0; background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, transparent 100%); }
.sf-qs-edge--right { right: 0; background: linear-gradient(to left,  rgba(255,255,255,0.95) 0%, transparent 100%); }
.sf-qs-edge--hidden { opacity: 0; }
.sf-qs-arr {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 92, 56, 0.14);
  background: #fff;
  box-shadow: 0 2px 10px rgba(17, 26, 20, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--sf-green);
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease,
              transform 0.15s ease, opacity 0.22s ease;
}
.sf-qs-arr:hover {
  background: var(--sf-green);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(26, 92, 56, 0.25);
  transform: scale(1.08);
}
.sf-qs-arr:active { transform: scale(0.95); }
.sf-qs-arr--hidden { opacity: 0; pointer-events: none; }

/* ── Quick Shops item (shared desktop + mobile) ── */
.sf-qs-grid {
  gap: 12px;
}
.sf-qs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  border: 1px solid rgba(17, 26, 20, 0.06);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 247, 0.96));
  box-shadow: 0 8px 24px rgba(17, 26, 20, 0.05);
  min-height: 152px;
}
.sf-qs-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(17, 26, 20, 0.1);
  border-color: rgba(26, 92, 56, 0.14);
}
.sf-qs-circle {
  width: 84px;
  height: 84px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 14px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.sf-qs-circle::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.sf-qs-icon {
  position: relative;
  z-index: 1;
  line-height: 1;
}
.sf-qs-fallback {
  display: none;
}
.sf-qs-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sf-qs-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--sf-dark);
  text-align: center;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.sf-qs-hint {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b8a83;
}

/* ── Hero Banner ── */
.sf-hero {
  border-radius: var(--sf-radius);
  overflow: hidden;
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  transition: background-image 0.5s ease;
}
.sf-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}
.sf-hero-content {
  padding: 40px;
  z-index: 2;
  position: relative;
}
.sf-hero-tag {
  background: var(--sf-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.sf-hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.sf-hero-title span {
  color: var(--sf-emerald-bright);
}
.sf-hero-cta {
  background: var(--sf-emerald-bright);
  color: var(--sf-dark);
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sf-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.sf-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  z-index: 3;
  transition: background 0.2s;
}
.sf-hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
.sf-hero-arrow-left {
  left: 14px;
}
.sf-hero-arrow-right {
  right: 14px;
}
.sf-hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.sf-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}
.sf-hero-dot.active {
  width: 24px;
  background: #fff;
}
.sf-hero-swipe-hint {
  display: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  z-index: 3;
  pointer-events: none;
  position: absolute;
  bottom: 38px;
  right: 16px;
}
@media (max-width: 768px) {
  .sf-hero-swipe-hint {
    display: block;
  }
}

/* ── Product Grid (5 columns) ── */
.sf-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 1199px) {
  .sf-product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .sf-product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (max-width: 768px) {
  /* Category grid: horizontal scroll on tablet */
  .sf-qs-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 4px;
  }
  .sf-qs-grid::-webkit-scrollbar {
    display: none;
  }
  .sf-qs-item {
    flex: 0 0 80px;
    scroll-snap-align: start;
    min-height: auto;
  }
  .sf-qs-circle {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .sf-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ── Product Carousel ── */
.sf-carousel {
  margin-bottom: 36px;
}
.sf-carousel-wrap {
  position: relative;
}
.sf-carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}
.sf-carousel-track::-webkit-scrollbar {
  display: none;
}
.sf-carousel-track > * {
  flex-shrink: 0;
  width: calc((100% - 14px * 4) / 5);
  min-width: 180px;
}
.sf-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid var(--sf-border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--sf-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  z-index: 5;
  transition: all 0.2s;
}
.sf-carousel-arrow:hover {
  background: var(--sf-green);
  color: #fff;
  border-color: var(--sf-green);
}
.sf-carousel-arrow.left {
  left: -18px;
}
.sf-carousel-arrow.right {
  right: -18px;
}

/* ── Image Promo Banners ── */
.sf-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sf-img-promo {
  position: relative;
  border-radius: var(--sf-radius);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #2d7c4a;
}
.sf-img-promo:nth-child(2) {
  background: #27ae60;
}
.sf-img-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  color: #fff;
}
.sf-img-promo-bg {
  display: none;
}
.sf-img-promo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 60%, transparent 100%);
}
.sf-img-promo-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
}
.sf-img-promo-content h3 {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  color: #fff;
}
.sf-img-promo-content p {
  font-size: 13px;
  opacity: 0.9;
  margin: 0 0 14px;
  color: #fff;
}
.sf-img-promo-cta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s;
}
.sf-img-promo:hover .sf-img-promo-cta {
  background: rgba(255, 255, 255, 0.3);
}

/* ── Other Services ── */
.sf-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 16px;
}
.sf-svc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
}
.sf-svc-item:hover {
  transform: translateY(-3px);
}
.sf-svc-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.sf-svc-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--sf-dark);
  text-align: center;
}

/* ── Schedule Cards ── */
.sf-sched-card {
  background: #fff;
  border: 1.5px solid var(--sf-border);
  border-radius: var(--sf-radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sf-sched-card:hover {
  box-shadow: 0 8px 28px rgba(26, 92, 56, 0.14);
  transform: translateY(-3px);
}
.sf-sched-header {
  background: linear-gradient(135deg, #1a5c38, #0d3d22);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.sf-sched-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sf-sched-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.sf-sched-meta label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #636363;
  display: block;
  margin-bottom: 3px;
}
.sf-sched-meta span {
  font-size: 12px;
  font-weight: 700;
  color: var(--sf-dark);
}
.sf-sched-meta span.green {
  color: var(--sf-emerald-light);
}
.sf-sched-countdown {
  background: #fffbf0;
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: auto;
  margin-bottom: 12px;
}
.sf-sched-countdown-label {
  font-size: 9px;
  font-weight: 800;
  color: #e59b00;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.sf-sched-digits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  text-align: center;
}
.sf-sched-dv {
  font-size: 16px;
  font-weight: 800;
  color: var(--sf-emerald-light);
  line-height: 1;
  margin-bottom: 2px;
}
.sf-sched-dl {
  font-size: 8px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sf-sched-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #1a5c38;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.sf-sched-cta:hover {
  background: #27ae60;
  color: #fff;
}

/* ── Loading ── */
.sf-loading {
  text-align: center;
  padding: 40px 0;
}
.sf-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--sf-border);
  border-top-color: var(--sf-emerald-light);
  border-radius: 50%;
  animation: sfspin 0.7s linear infinite;
  margin: 0 auto;
}
@keyframes sfspin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Skeleton Cards ── */
.sf-skel-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  padding: 14px;
}
.sf-skel-img {
  width: 100%;
  aspect-ratio: 1;
  background: #f0f0f0;
  border-radius: 10px;
  margin-bottom: 12px;
  animation: sfpulse 1.5s ease-in-out infinite;
}
.sf-skel-line {
  height: 12px;
  background: #f0f0f0;
  border-radius: 6px;
  margin-bottom: 8px;
  animation: sfpulse 1.5s ease-in-out infinite;
}
@keyframes sfpulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sf-hero {
    height: 220px;
  }
  .sf-hero-arrow {
    display: none;
  }
  .sf-promo-grid {
    grid-template-columns: 1fr;
  }
  .sf-img-promo {
    min-height: 160px;
  }
  .sf-img-promo-content h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .sf-hero {
    height: 260px;
    border-radius: 18px;
  }
  .sf-hero-img-overlay {
    background: linear-gradient(105deg, rgba(8, 32, 18, 0.88) 0%, rgba(8, 32, 18, 0.62) 42%, rgba(8, 32, 18, 0.18) 75%, rgba(8, 32, 18, 0.04) 100%);
  }
  .sf-hero-content {
    padding: 24px 22px;
    max-width: 72%;
  }
  .sf-hero-tag {
    font-size: 10px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #fdc040;
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
  }
  .sf-hero-title {
    font-size: 30px;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  }
  .sf-hero-cta {
    background: #3bb77e;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    padding: 12px 24px;
    border-radius: 999px;
    letter-spacing: -0.01em;
    box-shadow: 0 6px 20px rgba(59, 183, 126, 0.45);
  }
  .sf-hero-arrow {
    display: none;
  }
  .sf-hero-dots {
    bottom: 12px;
    gap: 7px;
  }
  .sf-hero-dot {
    width: 7px;
    height: 7px;
  }
  .sf-hero-dot.active {
    width: 22px;
    height: 7px;
  }
  .sf-promo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sf-img-promo {
    min-height: 180px;
    border-radius: 18px;
  }
  .sf-img-promo-content h3 {
    font-size: 20px;
    font-weight: 900;
  }
  .sf-img-promo-content p {
    font-size: 12px;
  }
  .sf-img-promo-cta {
    font-size: 12px;
    padding: 7px 16px;
  }
  .sf-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .sf-section-gap {
    margin-bottom: 28px;
  }
  .sf-services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .sf-svc-item {
    padding: 10px 6px;
    gap: 7px;
  }
  .sf-svc-circle {
    width: 58px;
    height: 58px;
    font-size: 24px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }
  .sf-svc-label {
    font-size: 10px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .sf-home {
    padding: 14px 12px 40px;
  }
  .sf-hero {
    height: 240px;
  }
  .sf-hero-title {
    font-size: 26px;
  }
  .sf-hero-content {
    padding: 20px 18px;
    max-width: 80%;
  }
  .sf-hero-cta {
    font-size: 13px;
    padding: 11px 20px;
  }
  .sf-product-grid {
    gap: 10px;
  }
  .sf-section-gap {
    margin-bottom: 24px;
  }
  .sf-svc-circle {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
  .sf-svc-label {
    font-size: 9px;
  }
}

/* === MOBILE REDESIGN: Color Palette === */
@media (max-width: 991px) {
  :root {
    --sf-dark: #1a1a1a;
    --sf-section-title-color: #1a1a1a;
    --sf-hero-overlay: linear-gradient(160deg, rgba(10, 40, 22, 0.82) 0%, rgba(10, 40, 22, 0.55) 55%, rgba(10, 40, 22, 0.18) 100%);
  }
}

/* === FORMAL MOBILE REDESIGN: Quick Shops === */
/* Angular uses the desktop scroller on all screen sizes (no Swiper dependency) */
.sf-qs-grid-desktop {
  display: flex;
}
.sf-qs-carousel-mobile {
  display: none;
}
@media (max-width: 991px) {
  /* Keep the desktop scroller visible on mobile — Angular has no Swiper fallback */
  .sf-qs-grid-desktop {
    display: flex !important;
  }
  /* Hide the arrow buttons on mobile; touch-scroll handles navigation */
  .sf-qs-arr {
    display: none !important;
  }
  /* Disable edge fade gradients on mobile */
  .sf-qs-edge {
    display: none !important;
  }
  .sf-qs-grid {
    gap: 10px;
  }
  .sf-qs-item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: unset;
    padding: 12px 8px 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7f5 100%);
    box-shadow: 0 6px 18px rgba(17, 26, 20, 0.07);
    border: 1px solid rgba(26, 92, 56, 0.06);
  }
  .sf-qs-circle {
    width: 72px !important;
    height: 72px !important;
    border-radius: 20px !important;
    font-size: 30px !important;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  .sf-qs-circle::before {
    border-radius: 18px;
  }
  .sf-qs-icon {
    font-size: 30px;
  }
  .sf-qs-fallback {
    display: none !important;
  }
  .sf-qs-copy {
    align-items: center;
    gap: 2px;
  }
  .sf-qs-label {
    display: block !important;
    font-size: 11px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.01em;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sf-qs-hint {
    display: none;
  }
  .sf-section-title {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111a14;
    padding-left: 10px;
    border-left: 3px solid #3bb77e;
    line-height: 1.2;
  }
  .sf-section-head {
    margin-bottom: 14px;
    align-items: flex-end;
  }
  .sf-view-all {
    font-size: 12px;
    color: #1a5c38;
    font-weight: 700;
  }
}
