/** Shopify CDN: Minification failed

Line 16:16 Expected ")" to end URL token
Line 24:14 Expected ")" to end URL token

**/
/* ============================================================
   GUT Daily product page — shared styles
   Colors: --ep dark green ink · --sf lime (sunflower) · --mh periwinkle (feed)
           --cc coral (balance) · --sd sand/tan (support) · --off cream
   Fonts:  --gd-serif heading serif · --gd-script accent script · --gd-sans body
   ============================================================ */

@font-face {
  font-family: 'Avérique';
    src: url({{ 'Averique-Reglar.otf' | asset_url }}) format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

@font-face {
  font-family: 'Tropical Paradise';
  src: url({{ 'tropical-paradise.woff2' | asset_url }}) format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

  
body {
  color: var(--color-foreground);
  background: var(--color-background);
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
  font-variation-settings: 'slnt' 0;
  -webkit-font-smoothing: antialiased; 
}


.gd-scope {
  --ep: #152b14; 
  --sf: #d4e048; 
  --mh: #8095f0; 
  --cc: #ff5245; 
  --sd: #b69f80;
  --gd-white: #fff; 
  --gd-off: #f7f5f2;
  --gd-serif: 'Avérique', Georgia, serif;
  --gd-script: 'Tropical Paradise', cursive;
  --sans: 'Poppins', sans-serif;
}

.gd-scope img { display: block; max-width: 100%; }
.gd-scope a { color: inherit; text-decoration: none; }
.gd-scope * { box-sizing: border-box; }

/* ── BREADCRUMB ── */
.gd-breadcrumb { padding: 14px 48px; border-bottom: 1px solid rgba(21,43,20,0.07); display: flex; align-items: center; gap: 8px; }
.gd-breadcrumb a, .gd-breadcrumb span { font-size: 13px; color: var(--ep); opacity: 0.45; font-weight: 500; }
.gd-breadcrumb a:hover { opacity: 0.85; }
.gd-breadcrumb .gd-sep { opacity: 0.25; }
.gd-breadcrumb .gd-current { opacity: 0.9; font-weight: 600; }

/* ── PRODUCT HERO ── */
.gd-hero { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.gd-hero__images { background: var(--ep); position: relative; display: flex; flex-direction: column; }
.gd-hero__main-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 60px 48px; position: relative; overflow: hidden; min-height: 480px;
  background: linear-gradient(135deg, #152b14 0%, #1e3d1c 40%, #243d22 100%);
}
.gd-hero__main-wrap::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,224,72,0.18) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.gd-hero__main-wrap::after {
  content: ''; position: absolute; width: 60%; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.35); filter: blur(24px); bottom: 48px; left: 50%;
  transform: translateX(-50%); pointer-events: none;
}
.gd-hero__main-img {
  position: relative; z-index: 2; max-height: 480px; width: auto;
  filter: drop-shadow(0 32px 48px rgba(0,0,0,0.5)) drop-shadow(0 8px 16px rgba(0,0,0,0.3));
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.gd-hero__main-img:hover { transform: scale(1.04) rotate(-1deg); }
.gd-hero__ribbon {
  position: absolute; top: 28px; left: 28px; z-index: 3; background: var(--sf); color: var(--ep);
  padding: 6px 16px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.gd-hero__thumbs { display: flex; gap: 10px; padding: 16px 24px; background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.06); }
.gd-hero__thumb {
  width: 72px; height: 72px; border-radius: 12px; overflow: hidden; cursor: pointer;
  border: 2px solid rgba(255,255,255,0.1); flex-shrink: 0; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; transition: border-color 0.2s;
}
.gd-hero__thumb.is-active { border-color: var(--sf); }
.gd-hero__thumb img { width: 100%; height: 100%; object-fit: cover; }

.gd-hero__info { padding: 60px 56px; display: flex; flex-direction: column; }
.gd-hero__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sd); margin-bottom: 10px; }
.gd-hero__name { font-family: var(--gd-serif, Georgia, serif); font-size: 64px; color: var(--ep); line-height: 1; }
.gd-hero__script { font-family: var(--gd-script, cursive); font-size: 56px; color: var(--ep); line-height: 1; margin-top: -4px; margin-bottom: 20px; }
.gd-hero__tagline { font-size: 17px; font-weight: 400; line-height: 1.75; color: #4a5a4a; margin-bottom: 24px; max-width: 440px; }

.gd-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.gd-pill { padding: 6px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

.gd-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #e8e5e0; border-radius: 16px; overflow: hidden; margin-bottom: 28px; }
.gd-fact { background: var(--gd-white); padding: 16px 14px; text-align: center; }
.gd-fact__val { font-family: var(--gd-serif, Georgia, serif); font-size: 26px; color: var(--ep); line-height: 1; }
.gd-fact__label { font-size: 11px; color: #7a8a7a; margin-top: 4px; font-weight: 500; line-height: 1.3; }

.gd-cta-area { margin-bottom: 24px; }
.gd-btn-main {
  width: 100%; padding: 16px; border-radius: 999px; background: var(--ep); color: var(--gd-white) !important;
  font-size: 16px; font-weight: 700; border: none; cursor: pointer; margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.2s;
}
.gd-btn-main:hover { background: #0a1a09; transform: scale(1.01); }
.gd-cta-note { font-size: 12px; color: #9a9a9a; text-align: center; font-weight: 500; }

.gd-divider { height: 1px; background: #f0ede8; margin: 24px 0; }

.gd-mini-ings { display: flex; flex-direction: column; }
.gd-mini-ing { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid #f5f2ee; }
.gd-mini-ing:last-child { border-bottom: none; }
.gd-mini-ing__left { display: flex; align-items: center; gap: 10px; }
.gd-mini-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.gd-mini-name { font-size: 13px; font-weight: 600; color: var(--ep); }
.gd-mini-right { display: flex; align-items: center; gap: 8px; }
.gd-mini-amt { font-size: 12px; color: #9a9a9a; font-family: monospace; }
.gd-mini-fn { padding: 2px 8px; border-radius: 999px; font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

.gd-guarantee { background: rgba(212,224,72,0.1); border: 1.5px solid rgba(212,224,72,0.3); border-radius: 14px; padding: 16px 18px; display: flex; gap: 12px; align-items: flex-start; }
.gd-guarantee__icon { font-family: var(--gd-serif, Georgia, serif); font-size: 28px; color: var(--ep); flex-shrink: 0; line-height: 1; }
.gd-guarantee__text h4 { font-size: 13px; font-weight: 700; color: var(--ep); margin-bottom: 3px; }
.gd-guarantee__text p { font-size: 12px; color: #5a6a5a; line-height: 1.55; font-weight: 400; }

/* ── SECTION HEADER (shared eyebrow/h2 pattern) ── */
.gd-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sd); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.gd-eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--sd); }
.gd-h2 { font-family: var(--gd-serif, serif); font-size: clamp(36px, 4vw, 52px); color: var(--ep); line-height: 1.05; margin-bottom: 56px; }

/* ── DEEP DIVE: FUNCTIONS GRID ── */
.gd-deep-dive { padding: 100px 48px; background: var(--gd-white); }
.gd-deep-dive__inner { max-width: 1100px; margin: 0 auto; }
.gd-functions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 80px; }
.gd-fn-card { border-radius: 24px; overflow: hidden; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.gd-fn-card:hover { transform: translateY(-4px); }
.gd-fn-card__top { padding: 36px 28px 28px; }
.gd-fn-step { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.gd-fn-num { font-family: var(--gd-serif, Georgia, serif); font-size: 80px; line-height: 1; opacity: 0.1; margin-bottom: -8px; }
.gd-fn-title { font-family: var(--gd-serif, Georgia, serif); font-size: 34px; line-height: 1.05; margin-bottom: 12px; }
.gd-fn-body { font-size: 13px; line-height: 1.7; opacity: 0.75; font-weight: 400; }
.gd-fn-ings { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 20px; padding-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.gd-fn-ing-row { display: flex; justify-content: space-between; }
.gd-fn-ing-name { font-size: 12px; font-weight: 600; opacity: 0.8; }
.gd-fn-ing-amt { font-size: 11px; opacity: 0.45; font-family: monospace; }

/* ── FULL INGREDIENT TABLE ── */
.gd-ing-table-h { font-family: var(--gd-serif, Georgia, serif); font-size: 32px; color: var(--ep); margin-bottom: 8px; }
.gd-ing-table-sub { font-size: 15px; color: #5a6a5a; margin-bottom: 32px; font-weight: 400; max-width: 500px; line-height: 1.65; }
.gd-ing-table { width: 100%; border-collapse: collapse; }
.gd-ing-table thead th { padding: 10px 16px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9a9a9a; text-align: left; border-bottom: 1px solid #e8e5e0; }
.gd-ing-table tbody tr { border-bottom: 1px solid #f5f2ee; transition: background 0.15s; }
.gd-ing-table tbody tr:hover { background: #faf8f5; }
.gd-ing-table tbody tr:last-child { border-bottom: none; }
.gd-ing-table td { padding: 16px; vertical-align: top; }
.gd-td-name { font-size: 14px; font-weight: 700; color: var(--ep); }
.gd-td-function { font-size: 12px; color: #7a8a7a; margin-top: 2px; font-weight: 400; }
.gd-td-dose { font-size: 14px; font-weight: 700; color: var(--ep); font-family: monospace; white-space: nowrap; }
.gd-td-science { font-size: 13px; color: #5a6a5a; line-height: 1.6; font-weight: 400; max-width: 360px; }
.gd-fn-badge { padding: 3px 10px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }

/* ── HOW TO USE ── */
.gd-how-to { background: var(--ep); padding: 100px 48px; }
.gd-how-to__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gd-how-to .gd-eyebrow { color: rgba(212,224,72,0.5); }
.gd-how-to .gd-eyebrow::before { background: rgba(212,224,72,0.5); }
.gd-how-h2 { font-family: var(--gd-serif, Georgia, serif); font-size: clamp(36px, 4vw, 52px); color: var(--gd-white); line-height: 1.05; margin-bottom: 16px; }
.gd-how-sub { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.75; font-weight: 400; margin-bottom: 32px; }
.gd-how-steps { display: flex; flex-direction: column; gap: 16px; }
.gd-how-step { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 24px; display: flex; gap: 18px; transition: background 0.2s; }
.gd-how-step:hover { background: rgba(255,255,255,0.08); }
.gd-how-step__num { width: 38px; height: 38px; border-radius: 10px; background: var(--sf); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 900; color: var(--ep); flex-shrink: 0; }
.gd-how-step__title { font-family: var(--gd-serif, Georgia, serif); font-size: 20px; color: var(--gd-white); margin-bottom: 4px; }
.gd-how-step__body { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; font-weight: 400; }
.gd-how-visual { position: relative; }
.gd-how-main-img { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; }
.gd-how-main-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.gd-how-badge { position: absolute; top: -16px; right: -16px; background: var(--sf); border-radius: 16px; padding: 16px 20px; box-shadow: 0 12px 32px rgba(21,43,20,0.25); }
.gd-how-badge__num { font-family: var(--gd-serif, Georgia, serif); font-size: 32px; color: var(--ep); line-height: 1; }
.gd-how-badge__label { font-size: 10px; font-weight: 700; color: rgba(21,43,20,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* ── SCIENCE CALLOUT ── */
.gd-science { background: var(--sf); padding: 80px 48px; }
.gd-science__inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.gd-science .gd-eyebrow { color: rgba(21,43,20,0.5); }
.gd-science .gd-eyebrow::before { background: rgba(21,43,20,0.5); }
.gd-sci-h2 { font-family: var(--gd-serif, Georgia, serif); font-size: clamp(32px, 4vw, 48px); color: var(--ep); line-height: 1.05; margin-bottom: 16px; }
.gd-sci-body { font-size: 15px; color: rgba(21,43,20,0.7); line-height: 1.75; font-weight: 400; }
.gd-sci-stats { display: flex; flex-direction: column; gap: 16px; }
.gd-sci-stat { background: var(--ep); border-radius: 16px; padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start; }
.gd-sci-stat__num { font-family: var(--gd-serif, Georgia, serif); font-size: 36px; color: var(--sf); line-height: 1; flex-shrink: 0; }
.gd-sci-stat__label { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.55; font-weight: 400; margin-top: 4px; }

/* ── SYSTEM TEASER ── */
.gd-system { background: var(--gd-white); padding: 100px 48px; }
.gd-system__inner { max-width: 1000px; margin: 0 auto; }
.gd-sys-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gd-sys-card { border-radius: 20px; overflow: hidden; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.gd-sys-card:hover { transform: translateY(-3px); }
.gd-sys-card__top { padding: 32px 28px; }
.gd-sys-letter { font-family: var(--gd-serif, Georgia, serif); font-size: 64px; line-height: 1; margin-bottom: 10px; }
.gd-sys-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55; margin-bottom: 6px; }
.gd-sys-title { font-family: var(--gd-serif, Georgia, serif); font-size: 24px; margin-bottom: 10px; line-height: 1.1; }
.gd-sys-body { font-size: 13px; line-height: 1.65; opacity: 0.7; font-weight: 400; }
.gd-sys-img { height: 160px; overflow: hidden; }
.gd-sys-img img { width: 100%; height: 100%; object-fit: cover; }
.gd-sys-foot { padding: 14px 28px; display: flex; justify-content: space-between; align-items: center; }
.gd-sys-cta { font-size: 12px; font-weight: 700; }
.gd-sys-coming { padding: 3px 10px; border-radius: 999px; font-size: 10px; font-weight: 700; background: rgba(0,0,0,0.08); }

/* ── TRIAL CTA BANNER ── */
.gd-trial-banner { background: var(--gd-off); padding: 80px 48px; }
.gd-trial-banner__inner { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.gd-tb-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sd); margin-bottom: 10px; }
.gd-tb-h2 { font-family: var(--gd-serif, Georgia, serif); font-size: clamp(28px, 3.5vw, 44px); color: var(--ep); line-height: 1.05; margin-bottom: 12px; }
.gd-tb-body { font-size: 15px; color: #5a6a5a; line-height: 1.7; font-weight: 400; }
.gd-btn-tb { background: var(--ep); color: #fff; padding: 16px 36px; border-radius: 999px; font-size: 15px; font-weight: 700; border: none; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.gd-btn-tb:hover { background: #0a1a09; transform: scale(1.03); }

/* ── FAQ ── */
.gd-faq { background: var(--gd-white); padding: 100px 48px; }
.gd-faq__inner { max-width: 740px; margin: 0 auto; }
.gd-faq-item { border-bottom: 1px solid #eae7e2; }
.gd-faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; gap: 16px; background: none; border: none; width: 100%; text-align: left; font-family: inherit; }
.gd-faq-q-text { font-size: 15px; font-weight: 600; color: var(--ep); line-height: 1.3; }
.gd-faq-icon { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid #d0cdc8; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s; }
.gd-faq-item.is-open .gd-faq-icon { background: var(--sf); border-color: var(--sf); transform: rotate(45deg); }
.gd-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s; }
.gd-faq-item.is-open .gd-faq-a { max-height: 400px; padding-bottom: 18px; }
.gd-faq-a p { font-size: 14px; color: #5a6a5a; line-height: 1.75; font-weight: 400; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gd-breadcrumb { padding: 12px 24px; }
  .gd-hero { grid-template-columns: 1fr; }
  .gd-hero__main-wrap { padding: 40px 32px; min-height: 320px; }
  .gd-hero__main-img { max-height: 300px; }
  .gd-hero__info { padding: 40px 28px; }
  .gd-hero__name { font-size: 52px; }
  .gd-hero__script { font-size: 44px; }
  .gd-facts { grid-template-columns: repeat(3, 1fr); }
  .gd-deep-dive { padding: 72px 24px; }
  .gd-functions { grid-template-columns: 1fr; }
  .gd-how-to { padding: 72px 24px; }
  .gd-how-to__inner { grid-template-columns: 1fr; gap: 48px; }
  .gd-science { padding: 72px 24px; }
  .gd-science__inner { grid-template-columns: 1fr; }
  .gd-system { padding: 72px 24px; }
  .gd-sys-cards { grid-template-columns: 1fr; }
  .gd-trial-banner { padding: 60px 24px; }
  .gd-trial-banner__inner { grid-template-columns: 1fr; gap: 24px; }
  .gd-faq { padding: 72px 24px; }
}
@media (max-width: 540px) {
  .gd-facts { grid-template-columns: 1fr; }
}
