/** Shopify CDN: Minification failed

Line 28:0 All "@import" rules must come first

**/
/* ============================================================
   Shep's Farm — homepage add-on
   All rules scoped under .sf-scope to avoid Horizon conflicts
   ============================================================ */

.sf-scope {
  --sf-green:      #1B3A2A;
  --sf-green-mid:  #2A5A3E;
  --sf-green-br:   #009945;
  --sf-green-lt:   #EEF7F0;
  --sf-cream:      #F4EFE5;
  --sf-cream-dk:   #E4D9C8;
  --sf-tan:        #C8955A;
  --sf-orange:     #D4621A;
  --sf-muted:      #5A7A6A;
  --sf-r:          14px;
  font-family: 'Inter', sans-serif;
  color: var(--sf-green);
  line-height: 1.6;
}

/* ── load fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── utilities ── */
.sf-scope .sf-wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ── mobile description toggle ── */
.sf-scope .sf-desc-short { display: none; }

.sf-scope h1,
.sf-scope h2,
.sf-scope h3,
.sf-scope h4 { font-family: 'Outfit', sans-serif; }

.sf-scope .sf-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sf-muted);
}

.sf-scope .sf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.sf-scope .sf-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.15); }
.sf-scope .sf-btn-orange { background: var(--sf-orange); color: #fff; }
.sf-scope .sf-btn-outline { background: transparent; color: var(--sf-green); border: 2px solid var(--sf-green); }

.sf-scope .sf-sec-head { text-align: center; margin-bottom: 60px; }
.sf-scope .sf-sec-head h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  margin-top: 12px;
  color: var(--sf-green);
}
.sf-scope .sf-sec-head p { font-size: 17px; color: var(--sf-muted); margin-top: 14px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── placeholder image ── */
.sf-scope .sf-ph {
  background: linear-gradient(155deg, #d8c4a4 0%, #a08060 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  gap: 8px;
}
.sf-scope .sf-ph--dark {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.3);
}
.sf-scope .sf-ph img,
.sf-scope .sf-thumb img,
.sf-scope .sf-product-main-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─────────────────────────── HERO ── */
.sf-scope.sf-hero-section { padding: 80px 0 64px; background: var(--sf-cream); }

.sf-scope .sf-hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.sf-scope .sf-hero-eyebrow { margin-bottom: 18px; }
.sf-scope .sf-hero-inner h1 {
  font-size: clamp(46px, 5.5vw, 76px);
  font-weight: 900; line-height: 1.0;
  color: var(--sf-green); margin-bottom: 22px;
}
.sf-scope .sf-hero-inner h1 em { color: var(--sf-orange); font-style: normal; }
.sf-scope .sf-hero-sub { font-size: 17px; color: var(--sf-muted); line-height: 1.75; margin-bottom: 36px; }
.sf-scope .sf-hero-sub strong { color: var(--sf-green); font-weight: 600; }
.sf-scope .sf-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.sf-scope .sf-hero-img-wrap { position: relative; }
.sf-scope .sf-hero-img {
  width: 100%; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
}
.sf-scope .sf-hero-badge {
  position: absolute; top: 22px; right: -10px;
  background: var(--sf-green); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 800;
  padding: 7px 16px; border-radius: 50px; letter-spacing: .04em;
}
.sf-scope .sf-hero-stamp {
  position: absolute; bottom: 22px; left: -10px;
  background: var(--sf-orange); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 800;
  padding: 7px 16px; border-radius: 50px; letter-spacing: .04em;
}

/* ─────────────────────────── MARQUEE ── */
.sf-scope.sf-marquee-section { background: var(--sf-green); overflow: hidden; padding: 13px 0; }
.sf-scope .sf-marquee-track {
  display: flex; white-space: nowrap;
  animation: sf-scroll 24s linear infinite;
}
.sf-scope .sf-marquee-track span {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .07em;
  color: #fff; padding: 0 28px;
}
@keyframes sf-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────────────────── PRODUCT ── */
.sf-scope.sf-product-section { padding: 80px 0; background: #fff; }
.sf-scope .sf-product-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.sf-scope .sf-product-main-img {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--sf-r); overflow: hidden; margin-bottom: 12px;
}
.sf-scope .sf-product-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.sf-scope .sf-thumb {
  aspect-ratio: 1; border-radius: 10px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; transition: border-color .2s;
}
.sf-scope .sf-thumb.active { border-color: var(--sf-green); }
.sf-scope .sf-thumb:hover { border-color: var(--sf-green-mid); }

.sf-scope .sf-prod-brand {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase; color: var(--sf-muted); margin-bottom: 8px;
}
.sf-scope .sf-prod-name { font-size: 34px; font-weight: 900; line-height: 1.1; color: var(--sf-green); margin-bottom: 14px; }
.sf-scope .sf-prod-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.sf-scope .sf-stars { color: #F5A623; font-size: 19px; letter-spacing: 2px; }
.sf-scope .sf-review-ct { font-size: 14px; color: var(--sf-muted); text-decoration: underline; cursor: pointer; }
.sf-scope .sf-prod-price { font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 900; color: var(--sf-green); margin-bottom: 26px; }

.sf-scope .sf-sel-label {
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: var(--sf-muted); margin-bottom: 10px;
}
.sf-scope .sf-size-opts { display: flex; gap: 10px; margin-bottom: 24px; }
.sf-scope .sf-size-btn {
  padding: 10px 24px; border-radius: 50px;
  border: 2px solid var(--sf-cream-dk); background: #fff;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800;
  color: var(--sf-muted); cursor: pointer; transition: all .2s;
}
.sf-scope .sf-size-btn.active { border-color: var(--sf-green); background: var(--sf-green); color: #fff; }
.sf-scope .sf-size-btn:hover:not(.active) { border-color: var(--sf-green); color: var(--sf-green); }

.sf-scope .sf-purch-opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.sf-scope .sf-purch-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: var(--sf-r);
  border: 2px solid var(--sf-cream-dk); cursor: pointer;
  transition: border-color .2s, background .2s;
}
.sf-scope .sf-purch-opt.sel { border-color: var(--sf-green); background: var(--sf-green-lt); }
.sf-scope .sf-radio-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--sf-cream-dk); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.sf-scope .sf-purch-opt.sel .sf-radio-dot { border-color: var(--sf-green); background: var(--sf-green); }
.sf-scope .sf-purch-opt.sel .sf-radio-dot::after { content: ''; width: 6px; height: 6px; background: #fff; border-radius: 50%; }
.sf-scope .sf-purch-lbl { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; flex: 1; }
.sf-scope .sf-purch-pr { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 900; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.sf-scope .sf-pr-old { font-size: 13px; color: var(--sf-muted); text-decoration: line-through; }
.sf-scope .sf-save-pill {
  background: var(--sf-green-br); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 800;
  padding: 3px 9px; border-radius: 50px; letter-spacing: .04em;
}
.sf-scope .sf-atc-row { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; }
.sf-scope .sf-qty-ctrl { display: flex; align-items: center; border: 2px solid var(--sf-cream-dk); border-radius: 50px; }
.sf-scope .sf-qty-btn {
  width: 44px; height: 50px; background: none; border: none;
  font-size: 22px; cursor: pointer; color: var(--sf-green);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.sf-scope .sf-qty-btn:hover { background: var(--sf-cream); }
.sf-scope .sf-qty-num { min-width: 40px; text-align: center; font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 800; }
.sf-scope .sf-btn-atc {
  flex: 1; padding: 15px 20px;
  background: var(--sf-orange); color: #fff;
  border: none; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 900;
  cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.sf-scope .sf-btn-atc:hover { background: #bf5618; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,98,26,.3); }
.sf-scope .sf-btn-atc.loading { opacity: .7; pointer-events: none; }
.sf-scope .sf-prod-trust {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--sf-muted); text-align: center;
}

/* ─────────────────────────── PURITY ── */
.sf-scope.sf-purity-section { padding: 100px 0; background: var(--sf-cream); }
.sf-scope .sf-purity-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.sf-scope .sf-purity-card {
  background: #fff; border-radius: 20px; padding: 32px 26px 28px;
  text-align: center; border: 1.5px solid var(--sf-cream-dk);
  transition: transform .25s, box-shadow .25s;
}
.sf-scope .sf-purity-card:hover { transform: translateY(-7px); box-shadow: 0 24px 64px rgba(0,0,0,.08); }
.sf-scope .sf-p-icon { width: 84px; height: 84px; margin: 0 auto 18px; }
.sf-scope .sf-p-tag {
  display: inline-block; background: var(--sf-green-lt); color: var(--sf-green-br);
  font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px; margin-bottom: 10px;
}
.sf-scope .sf-purity-card h3 { font-size: 19px; font-weight: 900; line-height: 1.2; margin-bottom: 10px; color: var(--sf-green); }
.sf-scope .sf-purity-card p { font-size: 14px; color: var(--sf-muted); line-height: 1.7; }

/* ─────────────────────────── HOW IT'S MADE ── */
.sf-scope.sf-how-section { padding: 100px 0; background: var(--sf-green); }
.sf-scope .sf-how-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.sf-scope .sf-how-photo {
  aspect-ratio: 3/4; border-radius: 24px; overflow: hidden;
}
.sf-scope .sf-how-ey {
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--sf-green-br); margin-bottom: 16px;
}
.sf-scope .sf-how-inner h2 { font-size: clamp(34px, 3.5vw, 52px); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 40px; }
.sf-scope .sf-how-inner h2 em { color: var(--sf-tan); font-style: normal; }
.sf-scope .sf-steps { display: flex; flex-direction: column; gap: 22px; }
.sf-scope .sf-step { display: flex; gap: 18px; align-items: flex-start; }
.sf-scope .sf-step-n {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--sf-green-br); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 900; flex-shrink: 0;
}
.sf-scope .sf-step-b strong { display: block; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.sf-scope .sf-step-b span { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ─────────────────────────── USES ── */
.sf-scope.sf-uses-section { padding: 100px 0; background: var(--sf-cream); }
.sf-scope .sf-uses-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.sf-scope .sf-use-card {
  background: #fff; border-radius: 20px; padding: 36px 26px 30px;
  border: 1.5px solid var(--sf-cream-dk);
  transition: transform .25s, box-shadow .25s;
}
.sf-scope .sf-use-card:hover { transform: translateY(-7px); box-shadow: 0 24px 64px rgba(0,0,0,.08); }
.sf-scope .sf-u-icon { width: 62px; height: 62px; margin-bottom: 18px; }
.sf-scope .sf-use-card h3 { font-size: 21px; font-weight: 900; margin-bottom: 10px; color: var(--sf-green); }
.sf-scope .sf-use-card p { font-size: 14px; color: var(--sf-muted); line-height: 1.7; }
.sf-scope .sf-use-tip {
  display: inline-block; margin-top: 14px;
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 800;
  color: var(--sf-orange); letter-spacing: .04em;
}

/* ─────────────────────────── FOUNDER ── */
.sf-scope.sf-founder-section { padding: 80px 0; background: var(--sf-cream-dk); }
.sf-scope .sf-founder-inner { max-width: 860px; margin: 0 auto; padding: 0 32px; text-align: center; }
.sf-scope .sf-qmark { font-family: 'Outfit', sans-serif; font-size: 90px; line-height: .5; color: var(--sf-tan); opacity: .35; }
.sf-scope .sf-founder-q {
  font-family: 'Outfit', sans-serif; font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800; line-height: 1.45; color: var(--sf-green); margin: 24px 0 20px;
}
.sf-scope .sf-founder-av {
  width: 62px; height: 62px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--sf-tan), var(--sf-green-mid));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 900;
}
.sf-scope .sf-founder-sig { font-size: 14px; color: var(--sf-muted); font-style: italic; }

/* ─────────────────────────── NEWSLETTER ── */
.sf-scope.sf-nl-section { padding: 80px 0; background: var(--sf-green-br); }
.sf-scope .sf-nl-inner { max-width: 580px; margin: 0 auto; padding: 0 32px; text-align: center; }
.sf-scope .sf-nl-inner h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 900; color: #fff; margin-bottom: 10px; }
.sf-scope .sf-nl-inner p { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 26px; }
.sf-scope .sf-nl-form { display: flex; gap: 10px; }
.sf-scope .sf-nl-input {
  flex: 1; padding: 14px 20px; border-radius: 50px;
  border: none; font-size: 15px; outline: none; font-family: 'Inter', sans-serif;
}
.sf-scope .sf-nl-btn {
  padding: 14px 26px; background: var(--sf-green); color: #fff;
  border: none; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 900;
  cursor: pointer; white-space: nowrap; transition: background .2s;
}
.sf-scope .sf-nl-btn:hover { background: #0d2217; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — tablet (≤ 900px) + mobile (≤ 640px)
   ═══════════════════════════════════════════════════ */

/* ── tablet: collapse 4-col grids to 2-col ── */
@media (max-width: 900px) {
  .sf-scope .sf-wrap { padding: 0 20px; }

  /* hero */
  .sf-scope.sf-hero-section { padding: 52px 0 48px; }
  .sf-scope .sf-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .sf-scope .sf-hero-img-wrap { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .sf-scope .sf-hero-badge { right: 0; }
  .sf-scope .sf-hero-stamp { left: 0; }

  /* product */
  .sf-scope.sf-product-section { padding: 52px 0; }
  .sf-scope .sf-product-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }
  .sf-scope .sf-product-main-img { max-width: 480px; margin: 0 auto 12px; }

  /* purity */
  .sf-scope.sf-purity-section { padding: 64px 0; }
  .sf-scope .sf-purity-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }

  /* how it's made */
  .sf-scope.sf-how-section { padding: 64px 0; }
  .sf-scope .sf-how-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .sf-scope .sf-how-photo { display: none; } /* hide photo on tablet/mobile — text-only is cleaner */

  /* uses */
  .sf-scope.sf-uses-section { padding: 64px 0; }
  .sf-scope .sf-uses-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }

  /* founder */
  .sf-scope.sf-founder-section { padding: 56px 0; }
  .sf-scope .sf-founder-q { font-size: clamp(18px, 4vw, 26px); }

  /* newsletter */
  .sf-scope.sf-nl-section { padding: 56px 0; }

  /* section heads */
  .sf-scope .sf-sec-head { margin-bottom: 40px; }
  .sf-scope .sf-sec-head p { font-size: 15px; }
}

/* ── mobile: single-column everything ── */
@media (max-width: 640px) {
  .sf-scope .sf-wrap { padding: 0 16px; }

  /* hero */
  .sf-scope.sf-hero-section { padding: 40px 0 36px; }
  .sf-scope .sf-hero-inner { padding: 0 16px; gap: 28px; }
  .sf-scope .sf-hero-inner h1 { font-size: 40px; margin-bottom: 16px; }
  .sf-scope .sf-hero-sub { font-size: 15px; margin-bottom: 28px; }
  .sf-scope .sf-hero-ctas { flex-direction: column; gap: 10px; }
  .sf-scope .sf-hero-ctas .sf-btn { text-align: center; justify-content: center; }
  .sf-scope .sf-hero-badge { font-size: 11px; padding: 6px 12px; top: 14px; right: 8px; }
  .sf-scope .sf-hero-stamp { font-size: 10px; padding: 6px 12px; bottom: 14px; left: 8px; }

  /* product */
  .sf-scope.sf-product-section { padding: 40px 0; }
  .sf-scope .sf-product-inner { padding: 0 16px; gap: 28px; }
  .sf-scope .sf-prod-name { font-size: 26px; }
  .sf-scope .sf-prod-price { font-size: 26px; margin-bottom: 20px; }
  .sf-scope .sf-purch-opt { padding: 12px 14px; }
  .sf-scope .sf-purch-lbl { font-size: 14px; }
  .sf-scope .sf-purch-pr { font-size: 13px; }
  .sf-scope .sf-btn-atc { font-size: 15px; padding: 14px 16px; }
  .sf-scope .sf-atc-row { gap: 8px; }

  /* purity */
  .sf-scope.sf-purity-section { padding: 48px 0; }
  .sf-scope .sf-purity-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sf-scope .sf-purity-card { padding: 22px 16px 20px; }
  .sf-scope .sf-p-icon { width: 64px; height: 64px; }
  .sf-scope .sf-purity-card h3 { font-size: 16px; }
  .sf-scope .sf-purity-card p { font-size: 13px; }

  /* how it's made */
  .sf-scope.sf-how-section { padding: 48px 0; }
  .sf-scope .sf-how-inner { padding: 0 16px; gap: 28px; }
  .sf-scope .sf-how-inner h2 { font-size: 30px; margin-bottom: 28px; }

  /* uses */
  .sf-scope.sf-uses-section { padding: 48px 0; }
  .sf-scope .sf-uses-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sf-scope .sf-use-card { padding: 24px 16px 20px; }
  .sf-scope .sf-u-icon { width: 48px; height: 48px; margin-bottom: 12px; }
  .sf-scope .sf-use-card h3 { font-size: 17px; margin-bottom: 8px; }
  .sf-scope .sf-use-card p { font-size: 13px; }

  /* founder */
  .sf-scope.sf-founder-section { padding: 48px 0; }
  .sf-scope .sf-founder-inner { padding: 0 16px; }
  .sf-scope .sf-qmark { font-size: 64px; }
  .sf-scope .sf-founder-q { font-size: 18px; margin: 16px 0 16px; }

  /* newsletter */
  .sf-scope.sf-nl-section { padding: 48px 0; }
  .sf-scope .sf-nl-inner { padding: 0 16px; }
  .sf-scope .sf-nl-inner h2 { font-size: 28px; }
  .sf-scope .sf-nl-form { flex-direction: column; gap: 10px; }
  .sf-scope .sf-nl-input { border-radius: 50px; }
  .sf-scope .sf-nl-btn { border-radius: 50px; }

  /* section heads */
  .sf-scope .sf-sec-head { margin-bottom: 32px; padding: 0 4px; }
  .sf-scope .sf-sec-head h2 { font-size: 30px; }
  .sf-scope .sf-sec-head p { font-size: 14px; }

  /* description toggle */
  .sf-scope .sf-desc-full { display: none; }
  .sf-scope .sf-desc-short { display: block; }
}
