/** Shopify CDN: Minification failed

Line 268:0 Unexpected "}"

**/
/* ============================================
   Wickfield Foods — Landing Page Styles
   File: assets/wickfield-landing.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500;600&display=swap');

/* ---- TOKENS ---- */
.wf-page {
  --wf-blue: #3A8FD9;
  --wf-blue-dark: #1C5FA0;
  --wf-blue-light: #D6EAFB;
  --wf-pink: #F472B6;
  --wf-pink-dark: #C2185B;
  --wf-pink-light: #FDE8F3;
  --wf-navy: #0D1B2A;
  --wf-cream: #FDFAF4;
  --wf-cream-dark: #F5F0E4;
  --wf-white: #FFFFFF;
  --wf-display: 'Barlow Condensed', sans-serif;
  --wf-body: 'Barlow', sans-serif;
  font-family: var(--wf-body);
  color: var(--wf-navy);
  background: var(--wf-cream);
  overflow-x: hidden;
}

.wf-hidden { display: none !important; }

/* ---- ANNOUNCEMENT BAR ---- */
.wf-announce {
  background: var(--wf-pink);
  color: var(--wf-white);
  text-align: center;
  padding: 10px 16px;
  font-family: var(--wf-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---- STICKY NAV ---- */
.wf-sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--wf-navy);
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.wf-sticky-nav.wf-sticky-visible { transform: translateY(0); }
.wf-sticky-logo {
  font-family: var(--wf-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--wf-white);
  letter-spacing: 1px;
}
.wf-sticky-logo span { color: var(--wf-pink); }
.wf-sticky-cta {
  background: var(--wf-pink);
  color: var(--wf-white);
  text-decoration: none;
  border-radius: 100px;
  padding: 10px 22px;
  font-family: var(--wf-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.wf-sticky-cta:hover { background: var(--wf-pink-dark); }

/* ---- HERO ---- */
.wf-hero {
  background: var(--wf-blue);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 6% 60px 8%;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.wf-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: var(--wf-blue-dark);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}
.wf-eyebrow-pill {
  display: inline-block;
  background: var(--wf-pink);
  color: var(--wf-white);
  font-family: var(--wf-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.wf-hero-title {
  font-family: var(--wf-display);
  font-size: clamp(52px, 7.5vw, 92px);
  font-weight: 900;
  line-height: 0.92;
  color: var(--wf-white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.wf-cream { color: var(--wf-cream); }
.wf-pink { color: var(--wf-pink); }
.wf-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 420px;
}
.wf-hero-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.wf-stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 20px;
  text-align: center;
  min-width: 80px;
}
.wf-stat-num {
  font-family: var(--wf-display);
  font-size: 30px;
  font-weight: 900;
  color: var(--wf-pink);
  line-height: 1;
}
.wf-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Email forms */
.wf-email-form,
.wf-email-big-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  background: var(--wf-white);
  border-radius: 100px;
  overflow: hidden;
  padding: 5px;
  border: 2px solid rgba(255,255,255,0.25);
}
.wf-email-form input,
.wf-email-big-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 15px;
  font-family: var(--wf-body);
  background: transparent;
  color: var(--wf-navy);
  min-width: 0;
}
.wf-email-form input::placeholder,
.wf-email-big-form input::placeholder { color: #999; }
.wf-email-form button,
.wf-email-big-form button {
  background: var(--wf-pink);
  color: var(--wf-white);
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-family: var(--wf-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.wf-email-form button:hover,
.wf-email-big-form button:hover { background: var(--wf-pink-dark); }

.wf-hero-form-success {
  background: var(--wf-white);
  color: var(--wf-navy);
  border-radius: 100px;
  padding: 14px 24px;
  font-family: var(--wf-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  max-width: 460px;
}
.wf-trust-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* Jar image */
.wf-hero-jar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.wf-jar-img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  transform: rotate(2deg);
  transition: transform 0.35s ease;
}
.wf-jar-img:hover { transform: rotate(0deg) scale(1.02); }
.wf-jar-placeholder {
  width: 100%;
  max-width: 420px;
  height: 400px;
  background: var(--wf-blue-dark);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wf-display);
  font-size: 22px;
  font-weight: 900;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

}

/* ---- TRUST BAR ---- */
.wf-trust-bar {
  background: var(--wf-navy);
  padding: 18px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.wf-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--wf-cream);
  font-family: var(--wf-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.wf-trust-dot {
  width: 6px;
  height: 6px;
  background: var(--wf-pink);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- SHARED SECTION STYLES ---- */
.wf-eyebrow {
  font-family: var(--wf-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wf-blue);
  margin-bottom: 12px;
}
.wf-eyebrow-pink { color: var(--wf-pink) !important; }
.wf-section-title {
  font-family: var(--wf-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--wf-navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.wf-section-title-white { color: var(--wf-white) !important; }
.wf-pink-text { color: var(--wf-pink-dark); }

/* ---- WHAT SECTION ---- */
.wf-what {
  padding: 80px 8%;
  background: var(--wf-cream);
}
.wf-what-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.wf-what-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: #3A4A5A;
  margin-bottom: 20px;
}
.wf-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.wf-pill {
  background: var(--wf-blue-light);
  color: var(--wf-blue-dark);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-block;
}
.wf-pill-pink {
  background: var(--wf-pink-light);
  color: var(--wf-pink-dark);
}

/* ---- FEATURES ---- */
.wf-features {
  background: var(--wf-blue);
  padding: 72px 8%;
}
.wf-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.wf-feature-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background 0.2s;
}
.wf-feature-card:hover { background: rgba(255,255,255,0.17); }
.wf-feature-icon {
  font-family: var(--wf-display);
  font-size: 34px;
  font-weight: 900;
  color: var(--wf-pink);
  line-height: 1;
  margin-bottom: 12px;
}
.wf-feature-title {
  font-family: var(--wf-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--wf-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.wf-feature-body {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

/* ---- COMPARISON ---- */
.wf-compare {
  padding: 80px 8%;
  background: var(--wf-cream-dark);
}
.wf-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.wf-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--wf-white);
  min-width: 480px;
}
.wf-table th {
  padding: 18px 24px;
  font-family: var(--wf-display);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wf-table th:first-child {
  text-align: left;
  color: var(--wf-navy);
  background: var(--wf-cream-dark);
}
.wf-th-blue { background: var(--wf-blue); color: var(--wf-white); }
.wf-th-gray { background: #E8E8E8; color: #666; }
.wf-table td {
  padding: 16px 24px;
  font-size: 15px;
  border-top: 1px solid #F0EDE4;
  text-align: center;
  color: #555;
}
.wf-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--wf-navy);
}
.wf-td-blue { color: var(--wf-blue-dark); font-weight: 600; }
.wf-table tr:hover td { background: #FAFAFA; }
.wf-check { color: #22A862; }
.wf-cross { color: #CCC; }

/* ---- SOCIAL PROOF ---- */
.wf-social {
  padding: 72px 8%;
  background: var(--wf-cream);
}
.wf-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.wf-review {
  background: var(--wf-white);
  border: 1px solid #EBE8DF;
  border-radius: 16px;
  padding: 24px;
}
.wf-stars {
  color: var(--wf-pink);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.wf-review-text {
  font-size: 15px;
  line-height: 1.65;
  color: #3A4A5A;
  margin-bottom: 16px;
  font-style: italic;
}
.wf-reviewer {
  font-family: var(--wf-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--wf-navy);
}

/* ---- EMAIL SECTION ---- */
.wf-email-section {
  background: var(--wf-navy);
  padding: 80px 8%;
  text-align: center;
}
.wf-email-sub {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.wf-email-section .wf-email-big-form {
  margin: 0 auto 0 auto;
}
.wf-main-success {
  background: var(--wf-pink);
  color: var(--wf-white);
  border-radius: 100px;
  padding: 16px 32px;
  font-family: var(--wf-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.wf-email-perks {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.wf-perk {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.wf-perk::before {
  content: '✓ ';
  color: var(--wf-pink);
  font-weight: 700;
}

/* ---- FOOTER ---- */
.wf-footer {
  background: var(--wf-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 36px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.wf-footer-logo {
  font-family: var(--wf-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--wf-white);
  letter-spacing: 1px;
}
.wf-footer-logo span { color: var(--wf-pink); }
.wf-footer-tagline {
  font-family: var(--wf-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--wf-pink);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wf-footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ---- RESPONSIVE ---- */
@media screen and (max-width: 900px) {
  .wf-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 700px) {
  .wf-hero {
    grid-template-columns: 1fr;
    padding: 40px 6%;
    min-height: auto;
    gap: 32px;
  }
  .wf-hero-jar { order: -1; }
  .wf-jar-img { max-width: 280px; }
  .wf-what-grid { grid-template-columns: 1fr; gap: 32px; }
  .wf-features-grid { grid-template-columns: 1fr; }
  .wf-reviews-grid { grid-template-columns: 1fr; }
  .wf-trust-bar {
  background: var(--wf-navy) !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px 18px !important;
  padding: 16px 20px !important;
}
.wf-trust-item {
  color: var(--wf-cream) !important;
  font-size: 10px !important;
  white-space: nowrap !important;
}
  .wf-footer { flex-direction: column; text-align: center; }
  .wf-email-form, .wf-email-big-form { flex-direction: column; border-radius: 16px; }
  .wf-email-form button, .wf-email-big-form button { border-radius: 12px; }
}
