/** Shopify CDN: Minification failed

Line 1191:14 Expected identifier but found whitespace
Line 1191:15 Unexpected "85px"

**/

  .kg-container {
    max-width: 1640px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
}

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --navy: #0A1628;
      --teal: #1B6B6B;
      --gold: #C9A84C;
      --wave-blue: #6B9FBB;
      --wave-purple: #7B5EA7;
      --wave-green: #4A9B7F;
      --cream: #F5F0E8;
      --bg: #f5f0e8;
      --bg-card: #ece6d6;
      --deep-teal: #0e2a2a;
      --teal-mid: #153030;
      --gold-light: #e2c06a;
      --text-dark: #0d1e2c;
      --text-muted: rgba(13, 30, 44, 0.48);
      --border: rgba(13, 30, 44, 0.12);
      --border-gold: rgba(200, 168, 75, 0.3);

    }

    html {
      scroll-behavior: smooth;
    }

    body.kg-site-homepage {
      background: var(--navy) !important;
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
      /* cursor: none; */
    }

    /* CUSTOM CURSOR */
    .kg-cursor {
      width: 12px;
      height: 12px;
      background: var(--gold);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.1s ease;
      mix-blend-mode: difference;
    }

    .kg-cursor-ring {
      width: 36px;
      height: 36px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9998;
      transition: transform 0.25s ease, width 0.2s, height 0.2s;
      mix-blend-mode: difference;
    }

    /* ── HERO ── */
    .kg-hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 60px 0 0;
      /* min-height: 100vh; */
      /* padding: 0 6vw; */
    }

    /* Animated wave SVG background */
    .kg-hero .kg-wave-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .kg-hero .kg-wave-bg .kg-wave-shape {
      position: absolute;
      bottom: -10%;
      left: -5%;
      width: 115%;
      opacity: 0.12;
      animation: waveRise 8s ease-in-out infinite alternate;
    }

    .kg-hero .kg-wave-bg .kg-wave-shape:nth-child(2) {
      bottom: -5%;
      opacity: 0.07;
      animation-delay: -3s;
      animation-duration: 11s;
      filter: hue-rotate(40deg);
    }

    .kg-hero .kg-wave-bg .kg-wave-shape:nth-child(3) {
      bottom: 5%;
      opacity: 0.05;
      animation-delay: -6s;
      animation-duration: 14s;
      filter: hue-rotate(80deg);
    }

    @keyframes waveRise {
      0% {
        transform: translateX(0) scaleY(1);
      }

      100% {
        transform: translateX(-3%) scaleY(1.06);
      }
    }

    /* Grain overlay */
    .kg-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      z-index: 1;
      pointer-events: none;
      opacity: 0.4;
    }

    .kg-hero .kg-hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    /* MARQUEE TICKER */
    .kg-ticker {
      top: 0;
      left: 0;
      right: 0;
      background: var(--gold);
      padding: 8px 0;
      overflow: hidden;
      z-index: 10;
    }

    .kg-ticker .kg-ticker-inner {
      display: flex;
      white-space: nowrap;
      animation: ticker 18s linear infinite;
      gap: 0;
    }

    .kg-ticker .kg-ticker-inner span {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--navy);
      padding: 0 32px;
      flex-shrink: 0;
    }

    @keyframes ticker {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* EYEBROW */
    .kg-hero .kg-hero-content .kg-eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp .8s .3s forwards;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .kg-hero .kg-hero-content .kg-eyebrow::before {
      content: '';
      display: inline-block;
      width: 32px;
      height: 2px;
      background: var(--teal);
    }

    /* BIG HEADLINE */
    .kg-hero .kg-hero-content .kg-headline {
      font-family: 'Syne', sans-serif;
      font-size: clamp(48px, 9vw, 108px);
      font-weight: 800;
      line-height: 0.92;
      color: var(--cream);
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeUp 0.9s 0.5s forwards;
      word-break: unset;
    }

    .kg-hero .kg-hero-content .kg-headline .kg-wave-word {
      display: inline-block;
      position: relative;
      color: transparent;
      -webkit-text-stroke: 2px var(--gold);
      transition: color 0.3s;
    }

    .kg-hero .kg-hero-content .kg-headline .kg-wave-word:hover {
      color: var(--gold);
      -webkit-text-stroke: 0px;
    }

    .kg-hero .kg-hero-content .kg-headline .kg-break-word {
      color: var(--gold);
      display: block;
    }

    /* SUBHEAD */
    .kg-hero .kg-hero-content .kg-subhead {
      font-size: clamp(14px, 1.8vw, 18px);
      line-height: 1.65;
      color: rgba(245, 240, 232, 0.55);
      max-width: 520px;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 0.9s 0.75s forwards;
    }

    .kg-hero .kg-hero-content .kg-subhead strong {
      color: var(--cream);
      font-weight: 500;
    }

    /* CTA ROW */
    .kg-hero .kg-hero-content .kg-cta-row {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.9s 1s forwards;
    }

    .kg-hero .kg-hero-content .kg-cta-row .kg-btn-primary {
      background: var(--gold);
      color: var(--navy);
      font-family: Syne,sans-serif;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 18px 40px;
      border: none;
      text-decoration: none;
      display: inline-block;
      position: relative;
      overflow: hidden;
      transition: transform .2s;
    }

    .kg-hero .kg-hero-content .kg-cta-row .kg-btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: white;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .kg-hero .kg-hero-content .kg-cta-row .kg-btn-primary:hover {
      transform: translateY(-2px);
    }

    .kg-hero .kg-hero-content .kg-cta-row .kg-btn-primary:hover::after {
      opacity: 0.1;
    }

    .kg-hero .kg-hero-content .kg-cta-row .kg-btn-ghost {
      font-size: 13px;
      font-weight: 500;
      color: var(--cream);
      text-decoration: none;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      gap: 8px;
      opacity: 0.7;
      transition: opacity 0.2s, gap 0.2s;
    }

    .kg-hero .kg-hero-content .kg-cta-row .kg-btn-ghost:hover {
      opacity: 1;
      gap: 14px;
    }

    /* FLAVOR WAVE STRIP */
    .kg-hero .kg-flavor-strip {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: clamp(180px, 22vw, 280px);
      display: flex;
      flex-direction: column;
      z-index: 2;
    }

    .kg-hero .kg-flavor-strip .kg-flavor-lane {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 32px;
      position: relative;
      overflow: hidden;
      cursor: none;
      transition: flex 0.4s ease;
    }

    .kg-hero .kg-flavor-strip .kg-flavor-lane:hover {
      flex: 2.2;
    }

    .kg-hero .kg-flavor-strip .kg-flavor-lane::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.22;
      transition: opacity 0.3s;
    }

    .kg-hero .kg-flavor-strip .kg-flavor-lane:hover::before {
      opacity: 0.45;
    }

    .kg-hero .kg-flavor-strip .kg-lane-1::before {
      background: var(--wave-purple);
    }

    .kg-hero .kg-flavor-strip .kg-lane-2::before {
      background: var(--wave-blue);
    }

    .kg-hero .kg-flavor-strip .kg-lane-3::before {
      background: var(--wave-green);
    }

    .kg-hero .kg-flavor-strip .kg-lane-4::before {
      background: #C4854A;
    }

    .kg-hero .kg-flavor-strip .kg-flavor-lane .kg-flavor-name {
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: white;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      opacity: 0.5;
      transition: opacity 0.3s;
    }

    .kg-hero .kg-flavor-strip .kg-flavor-lane:hover .kg-flavor-name {
      opacity: 1;
    }

    .kg-hero .kg-flavor-strip .kg-flavor-lane .kg-flavor-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      position: absolute;
      left: 16px;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .kg-hero .kg-flavor-strip .kg-lane-1 .kg-flavor-dot {
      background: var(--wave-purple);
    }

    .kg-hero .kg-flavor-strip .kg-lane-2 .kg-flavor-dot {
      background: var(--wave-blue);
    }

    .kg-hero .kg-flavor-strip .kg-lane-3 .kg-flavor-dot {
      background: var(--wave-green);
    }

    .kg-hero .kg-flavor-strip .kg-lane-4 .kg-flavor-dot {
      background: #C4854A;
    }

    .kg-hero .kg-flavor-strip .kg-flavor-lane:hover .kg-flavor-dot {
      opacity: 1;
    }

    /* SCROLLING STAT BAR */
    .kg-hero .kg-stat-bar {
      padding: 20px 0 25px;
      display: flex;
      gap: 48px;
      opacity: 0;
      animation: fadeUp .9s 1.3s forwards;
      margin: 0;
    }

    .kg-hero .kg-stat-bar .kg-stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .kg-hero .kg-stat-bar .kg-stat .kg-stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--gold);
    }

    .kg-hero .kg-stat-bar .kg-stat .kg-stat-label {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(245, 240, 232, 0.35);
    }

    /* ── SECTION 2: THE WAVE STATEMENT ── */
    .kg-wave-statement {
      background: var(--cream);
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }

    .kg-wave-statement::before {
      content: 'FIBER';
      position: absolute;
      font-family: 'Syne', sans-serif;
      font-size: clamp(120px, 22vw, 260px);
      font-weight: 800;
      color: rgba(10, 22, 40, 0.04);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: -0.05em;
    }

    .kg-wave-statement .kg-statement-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-left h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.05;
      margin-bottom: 24px;
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-left h2 em {
      font-style: italic;
      color: var(--teal);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-left p {
      font-size: 15px;
      line-height: 1.75;
      color: #444;
      margin-bottom: 32px;
      max-width: 440px;
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-left .kg-crash-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--navy);
      color: var(--gold);
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 12px 20px;
      transition: all .2s ease;
      cursor: pointer;
    }
    .kg-wave-statement .kg-statement-grid .kg-statement-left .kg-crash-badge:hover {
        background: #0e2a2a;
        transform: translateY(-1px);
    }
    .kg-wave-statement .kg-statement-grid .kg-statement-left .kg-crash-badge span {
      font-size: 18px;
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-right .kg-diff-card {
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-right .kg-diff-card.kg-bad {
      background: #F0EDEA;
      border-left: 3px solid #ccc;
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-right .kg-diff-card.kg-good {
      background: var(--navy);
      border-left: 3px solid var(--gold);
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-right .kg-diff-card h4 {
      font-family: 'Syne', sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-right .kg-diff-card.kg-bad h4 {
      color: #999;
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-right .kg-diff-card.kg-good h4 {
      color: var(--gold);
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-right .kg-diff-card p {
      font-size: 13px;
      line-height: 1.6;
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-right .kg-diff-card.kg-bad p {
      color: #888;
    }

    .kg-wave-statement .kg-statement-grid .kg-statement-right .kg-diff-card.kg-good p {
      color: rgba(245, 240, 232, 0.7);
    }

    /* ── TESTIMONIALS ── */
    .kg-testimonials {
      background: var(--navy);
      padding: 60px 6vw;
      overflow: hidden;
    }

    .kg-testimonials .kg-marquee-wrap {
      display: flex;
      gap: 0;
      animation: marquee 22s linear infinite;
      width: max-content;
    }

    .kg-testimonials .kg-marquee-wrap .kg-testi-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      padding: 28px 32px;
      margin-right: 20px;
      min-width: 340px;
      max-width: 340px;
      flex-shrink: 0;
    }

    .kg-testimonials .kg-marquee-wrap .kg-testi-card .kg-testi-quote p {
      font-size: 15px;
      line-height: 1.65;
      color: rgba(245, 240, 232, 0.8);
      margin-bottom: 16px;
      font-style: italic;
    }

    .kg-testimonials .kg-marquee-wrap .kg-testi-card .kg-testi-author {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .kg-hero .kg-flavor-strip {
        display: none;
      }

      .kg-wave-statement .kg-statement-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .kg-hero .kg-stat-bar {
        gap: 24px;
        flex-wrap: wrap;
      }

      .kg-hero .kg-hero-content .kg-headline {
        font-size: clamp(34px, 8vw, 72px);
      }
    }
  

    /* ── SECTION WRAPPER ── */
    .kg-products-section {
      background: #f5f0e8;
      position: relative;
      overflow: hidden;
      padding: 80px 0;
      border-bottom: 1px solid #ddd;
    }

    /* decorative rings — now use navy/gold tones that read on cream */
    .kg-products-section::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -180px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      border: 1px solid rgba(200, 168, 75, 0.12);
      pointer-events: none;
    }

    .kg-products-section::after {
      content: '';
      position: absolute;
      bottom: -200px;
      left: -160px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      border: 1px solid rgba(13, 30, 44, 0.06);
      pointer-events: none;
    }

    /* ── INNER CONTENT ── */
    .kg-products-section .kg-products-inner {
      position: relative;
      z-index: 2;
    }

    /* ── HEADLINE ── */
    .kg-products-section .kg-products-headline {
      text-align: center;
      margin-bottom: 80px;
    }

    .kg-products-section .kg-products-headline .kg-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #c8a84b;
      margin-bottom: 20px;
    }

    .kg-products-section .kg-products-headline .kg-eyebrow::before,
    .kg-products-section .kg-products-headline .kg-eyebrow::after {
      content: '';
      display: block;
      width: 36px;
      height: 1px;
      background: #c8a84b;
      opacity: 0.6;
    }

.kg-products-section .kg-products-headline h2 {
    font-family: 'Syne';
    font-size: clamp(45px,7vw,84px);
    font-weight: 700;
    line-height: .95;
    color: #0d1e2c;
    letter-spacing: -0.84px;
}
.kg-products-section .kg-products-headline h2 em {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 400;
    color: #0e2a2a;
    text-transform: none;
    font-size: clamp(38px, 5vw, 70px);
    display: inline-block;
    position: relative;
    color: transparent;
    -webkit-text-stroke: 2px #0e2a2a;
    transition: color .3s;
}

    /* ── MAIN GRID ── */
    .kg-products-section .kg-products-grid {
      display: flex;
      gap: 30px;
      margin: 0 0 70px;
    }

    /* ── WAITLIST CARD ── (stays dark — intentional anchor) */
    .kg-products-section .kg-waitlist-card {
      max-width: 33.33%;
      width: 100%;
      background: #0d1e2c;
      border-radius: 20px;
      padding: 45px 35px;
      display: flex;
      flex-direction: column;
      gap: 28px;
      position: relative;
      overflow: hidden;
    }

    .kg-products-section .kg-waitlist-card::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(200, 168, 75, 0.06);
      pointer-events: none;
    }

    .kg-products-section .kg-waitlist-card::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -40px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.08);
      pointer-events: none;
    }

.kg-products-section .kg-waitlist-badge {
    display: inline-block;
    background: #c9a84c;
    color: #0d1e2c;
    font-family: DM Sans;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    width: fit-content;
    line-height: 1.8;
}
.kg-products-section .kg-waitlist-card h3 {
    font-family: 'DM Sans';
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f4efe4;
    line-height: 1.3;
    letter-spacing: 1.5px;
}
.kg-products-section .kg-waitlist-card p {
    font-size: 19px;
    line-height: 1.6;
    color: #f4efe4;
    letter-spacing: 0.5px;
    font-family: 'DM Sans';
}

    .kg-products-section .kg-waitlist-perks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

.kg-products-section .kg-waitlist-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 300;
    color: #f4efe4;
    font-family: 'DM Sans';
    line-height: 1.3;
}

.kg-products-section .kg-waitlist-perks li::before {
  content: '✦';
  font-size: 13px;
  color: #c8a84b;
  flex-shrink: 0;
}

    .kg-products-section .kg-btn-gold {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #c8a84b;
      color: #0d1e2c;
      font-family: 'Syne';
      font-size: 13px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 14px 28px;
      border: none;
      cursor: pointer;
      border-radius: 2px;
      transition: background .2s, transform .15s;
      width: 100%;
      margin-top: auto;
      font-weight: 800;
      letter-spacing: .1em;
    }

    .kg-products-section .kg-btn-gold:hover {
      background: #e2c06a;
      transform: translateY(-1px);
    }

    .kg-products-section .kg-btn-gold .kg-arrow {
      font-size: 14px;
      transition: transform 0.2s;
    }

    .kg-products-section .kg-btn-gold:hover .kg-arrow {
      transform: translateX(4px);
    }

    /* ── PRODUCT CARDS ── */
.kg-products-section .kg-product-card {
    background: #ece6d6;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 33.33%;
    width: 100%;
    box-shadow: #0000002b 0px 5px 15px;
    transition: all .25s ease;
}
.kg-products-section .kg-product-card .kg-product-card-content-wrapper {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.kg-products-section .kg-product-card:hover {
    border-color: #000000;
}

.kg-products-section .kg-bar-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}

.kg-products-section .kg-bar-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 6.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.3;
  padding: 0 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kg-products-section .kg-prod-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #c8a84b;
  color: #0d1e2c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  font-family: 'DM Sans';
  line-height: 1.8;
  z-index: 1;
}

.kg-products-section .kg-product-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kg-products-section .kg-product-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #b6963cfa;
  font-family: 'DM Sans';
}

.kg-products-section .kg-product-title {
  font-family: 'DM Sans';
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0d1e2c;
  line-height: 1.15;
}

.kg-products-section .kg-product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kg-products-section .kg-product-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  color: #0d1e2cb8;
  letter-spacing: 0;
  font-family: 'Syne';
  line-height: 1.5;
}

.kg-products-section .kg-product-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8a84b;
  flex-shrink: 0;
}

.kg-products-section .kg-btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0d1e2c;
  color: #c8a84b;
  font-family: 'Syne';
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  margin-top: auto;
}

.kg-products-section .kg-btn-navy:hover {
  background: #0e2a2a;
  transform: translateY(-1px);
}

    /* ══════════════════════════════════════
       FLAVOR PANEL — Tall vertical right column
       Three stacked panels, each a distinct shelf
    ══════════════════════════════════════ */
.kg-products-section .kg-flavor-panel {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    width: fit-content;
    margin: auto;
    position: relative;
}
    /* individual flavor shelf */
.kg-products-section .kg-fp-shelf {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 10px;
    z-index: 1;
}

    /* flavor name — horizontal */
.kg-products-section .kg-fp-name {
    font-family: 'DM Sans';
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.8px;
    text-align: center;
    color: #7e7e7c;
    font-size: 16px;
    max-width: 155px;
    width: 100%;
}
    /* dot indicator */
.kg-products-section .kg-fp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
    position: relative;
}
.kg-products-section .kg-fp-shelf-live .kg-fp-dot {
    background: #000000;
}
.kg-products-section .kg-fp-shelf-live .kg-fp-name {
    color: #000;
}
.kg-products-section .kg-fp-shelf-soon .kg-fp-dot {
    background: #7e7e7c;
}

/* ── RESPONSIVE ── */

@media (max-width: 640px) {

  .kg-products-section .kg-products-grid {
    gap: 16px;
  }

  .kg-products-section .kg-waitlist-card,
  .kg-products-section .kg-product-card {
    grid-column: 1;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kg-products-section .kg-products-headline {
  animation: fadeUp 0.65s ease both 0.05s;
}

.kg-products-section .kg-waitlist-card {
  animation: fadeUp 0.65s ease both 0.15s;
}

.kg-products-section .kg-product-card:nth-child(2) {
  animation: fadeUp 0.65s ease both 0.25s;
}

.kg-products-section .kg-product-card:nth-child(3) {
  animation: fadeUp 0.65s ease both 0.33s;
}

.kg-products-section .kg-flavor-panel {
  animation: fadeUp 0.65s ease both 0.40s;
}


/* header css Start*/

.kg-site-header-wrapper header.header {
    max-width: 1640px;
    width: 100%;
    margin: auto;
    padding: 0 20px !important;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 0;
}
.kg-site-header-wrapper::after {
    content: "";
    height: 2.5px;
    background: linear-gradient(90deg, transparent 0%, #c9a44a 20%, #f0d080 50%, #c9a44a 80%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 5s linear infinite;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    width: 100%;
}
.kg-site-header-wrapper .header .header__inline-menu ul.list-menu li a span {
    text-decoration: none;
}
.kg-site-header-wrapper .header .header__inline-menu ul.list-menu li {
    padding: 0;
}
.kg-site-header-wrapper .header .header__inline-menu ul.list-menu li a {
    font-family: Syne, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.5;
    padding: 20px 16px;
    color: #0c182a;
    position: relative;
    z-index: 2;
}
.kg-site-header-wrapper .header .header__heading .header__heading-link {
    padding: 7px 10px 10px;
}
.kg-site-header-wrapper .header .header__heading-link .header__heading-logo
    max-width: 85px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.kg-site-header-wrapper .header .header__icons {
    padding: 0;
    display: flex;
    gap: 5px;
}
.kg-site-header-wrapper .header .header__icons a.header__icon.header__icon--cart .svg-wrapper svg {
    width: 100%;
    height: 100%;
}
.kg-site-header-wrapper .header .header__icons .svg-wrapper {
    width: 35px;
    height: 35px;
}
.kg-site-header-wrapper .header .header__icons .header__icon {
    height: 35px;
    width: 35px;
    border-radius: 5px;
    margin: 0;
    transition: all .3s ease;
}
.kg-site-header-wrapper .header .header__icons .header__icon:hover .icon {
    transform: unset;
}
.kg-site-header-wrapper .header .header__icons .header__icon:hover {
    background: #c9a44ae0;
}
.kg-site-header-wrapper .header .header__icons .svg-wrapper svg {
    width: 18px;
    height: 18px;
}
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
/* hover */
.kg-site-header-wrapper .header .header__inline-menu ul.list-menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 100%;
    background-color: #1d5a6c;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    border-bottom: 2px solid #c9a84c;
}
.kg-site-header-wrapper .header .header__inline-menu ul.list-menu li a:hover::before {
    opacity: 1;
    bottom: 0;
}
.kg-site-header-wrapper .header .header__inline-menu ul.list-menu li a:hover,
.kg-site-header-wrapper .header .header__inline-menu ul.list-menu li a:hover span {
   color: #f5f0e8;
}
.kg-site-header-wrapper header.header header-drawer .header__icon svg.icon path {
    stroke: #0c1829;
    stroke-width: 0.8;
}
.kg-site-header-wrapper header.header header-drawer .header__icon svg.icon {
    width: 17px;
    height: 18px;
    transition: unset;
}
.kg-site-header-wrapper header.header header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__navigation {
    padding: 0;
}
.kg-site-header-wrapper header.header header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__navigation .menu-drawer__menu li {
    margin: 0;
}
.kg-site-header-wrapper header.header header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__navigation .menu-drawer__menu li a {
    font-family: Syne, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.5;
    padding: 18px 20px;
    color: #0c182a;
}
.kg-site-header-wrapper header.header header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__utility-links a {
    padding: 0;
    font-family: Syne, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.5;
    color: #0c182a;
    display: flex;
    width: 100%;
}
.kg-site-header-wrapper header.header header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__utility-links {
    display: flex;
}
.kg-site-header-wrapper header.header header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__utility-links a .svg-wrapper svg path {
    stroke: #0c1829;
    stroke-width: 0.7;
}
.kg-site-header-wrapper header.header header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__navigation .menu-drawer__menu li a.menu-drawer__menu-item--active {
    background-color: #1d5a6c;
    color: #f5f0e8;
}
.kg-site-header-wrapper header.header .header__inline-menu ul.list-menu {
    width: 100%;
    justify-content: center;
}
.kg-site-header-wrapper .header .header__icons .svg-wrapper svg path {
    stroke: #0c1829;
    stroke-width: 0.8;
}
.kg-hero .kg-stat-bar-wrapper {
    margin: 40px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    position: relative;
}

.kg-products-section .kg-product-card:nth-child(2) {
    transform: translateY(0) scaleY(1.09) !important;
}
.kg-products-section .kg-bar-wrap figure {
    display: block;
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
    vertical-align: middle;
}
.kg-products-section .kg-bar-wrap figure img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    display: inline-block;
}
.kg-products-section .kg-bar-wrap figure::after {
    content: "";
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 50%;
}
.kg-products-section .kg-fp-dot::after {
    height: 8px;
    content: "";
    position: absolute;
    background: #f5f0e8;
    width: 16px;
    z-index: -1;
    left: -4px;
    right: -4px;
}
.kg-products-section .kg-flavor-panel::after {
    position: absolute;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #151515;
    content: "";
    bottom: 3.5px;
}
footer.footer {
    padding: 25px 0;
}
footer.footer .footer__content-bottom {
    padding: 0;
    padding: 0;
    transform: unset;
    opacity: 1;
}
footer.footer .footer__content-bottom .footer__content-bottom-wrapper .footer__copyright {
    margin: 0;
}
footer.footer .footer__content-bottom .footer__content-bottom-wrapper .footer__copyright .copyright__content {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    font-family: 'Syne';
}

@media screen and (max-width: 1199px) {
  .kg-products-section .kg-waitlist-card {
      padding: 30px 25px;
      gap: 20px;
  }
  .kg-products-section .kg-waitlist-card p {
      font-size: 16px;
      line-height: 1.5;
  }
  .kg-products-section .kg-btn-gold {
      gap: 8px;
      padding: 12px 15px;
      letter-spacing: 0;
  }
  .kg-products-section .kg-waitlist-card h3 {
      font-size: 28px;
  }
  .kg-products-section .kg-waitlist-badge {
      font-size: 11px;
  }
  .kg-products-section .kg-product-card .kg-product-card-content-wrapper {
      padding: 18px;
      gap: 15px;
  }
  .kg-products-section .kg-product-title br {
      display: none;
  }
  .kg-products-section .kg-product-title {
      font-size: 18px;
  }
  .kg-products-section .kg-bar-wrap figure:after {
      padding-bottom: 60%;
  }
}
@media screen and (max-width: 900px) and (min-width: 769px) {
    .kg-wave-statement .kg-statement-grid .kg-statement-right {
        grid-template-columns: 1fr;
    }
} 
@media screen and (max-width: 545px) {
    .kg-wave-statement .kg-statement-grid .kg-statement-right {
        grid-template-columns: 1fr;
    }
}  
@media screen and (min-width: 990px) {
  .kg-site-header-wrapper header.header .header__inline-menu {
      grid-column: 2;
  }
  .kg-site-header-wrapper header.header .header__heading {
      grid-column: 1;
      text-align: left;
      width: 100%;
  }
  .kg-site-header-wrapper .header .header__icons {
      grid-column: 3;
  }
  .kg-site-header-wrapper header.header {
      grid-template-columns: .2fr 1fr .2fr;
  }
}
@media screen and (max-width: 991px) {
  .kg-products-section .kg-products-grid {
      gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .kg-site-header-wrapper header.header {
      grid-template-columns: 1fr 1fr 1fr
  }
  .kg-site-header-wrapper .header .header__icons .header__icon {
      height: 32px;
      width: 32px;
  }
  .kg-site-header-wrapper .header .header__icons .svg-wrapper {
      width: 32px;
      height: 32px;
  }
  .kg-site-header-wrapper .header .header__icons .svg-wrapper svg {
      width: 17px;
      height: 17px;
  }
  .kg-site-header-wrapper .header .header__icons {
      gap: 2px;
  }
  .kg-site-header-wrapper .header .header__heading-link .header__heading-logo {
      max-width: 75px;
  }
  .kg-site-header-wrapper header.header header-drawer {
      margin: 0;
  }
  .kg-site-header-wrapper header.header header-drawer .header__icon {
      width: 35px;
      height: 35px;
  }
  .kg-hero .kg-hero-content .kg-cta-row .kg-btn-primary {
      padding: 15px 20px;
      letter-spacing: 1px;
  }
  .kg-hero .kg-stat-bar-wrapper {
      margin: 30px 0 0;
  }
  .kg-testimonials {
      padding: 50px 20px;
  }
  .kg-wave-statement {
      padding: 50px 20px;
  }
}
@media screen and (max-width: 767px) {
  .kg-products-section .kg-products-grid {
      flex-direction: column;
  }
  .kg-products-section .kg-product-card ,
  .kg-products-section .kg-waitlist-card {
      max-width: 100%;
  }
  .kg-products-section .kg-product-card:nth-child(2) {
      transform: translateY(0) !important;
  }
  .kg-products-section {
      padding: 50px 0;
  }
  .kg-products-section .kg-flavor-panel {
      gap: 20px;
  }
  .kg-products-section .kg-products-headline {
      margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .kg-products-section .kg-flavor-panel {
      flex-direction: row;
  }
  .kg-products-section .kg-products-grid {
      margin: 0 0 30px;
  }
  .kg-products-section .kg-flavor-panel::after {
        display: block;
        bottom: 2.5px;
  }
}


/* header css End*/


@media screen and (max-width: 767px) {
    .kg-products-section .kg-flavor-panel:after {
        left: 16%;
        right: 16%;
    }
}
@media screen and (max-width: 575px) {
    .kg-products-section .kg-fp-name {
        font-size: 12px;
    }
}

@media screen and (min-width: 990px) {
    .kg-site-header-wrapper header.header a.header__heading-link {
        grid-column: 1;
        text-align: left;
        width: 100%;
    }
}