@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body, button, a, h1, h2, h3, p {
  font-family: 'Poppins', sans-serif;
}

:root {
  --brand-dark: #032618;
  --brand-accent: #0fad5e;
  --brand-muted: #566a5b;
  --card-bg: #ffffff;
  --text-strong: #101820;
  --border-soft: rgba(15, 168, 94, 0.25);
  --bhai-accent: #ffc928;
}

* {
  box-sizing: border-box;
}

.hero {
  background: #0d332b;
  padding: 0;
  color: #fff;
  position: relative;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.3rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero {
  background: #0d332b;
  padding: 0;
  color: #fff;
  position: relative;
}

.hero__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4vw 0;
}

.hero__logo {
  font-weight: 700;
  letter-spacing: 0.3rem;
}

.hero__links a {
  color: #e2f0e9;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.hero__links a:hover {
  color: #fff;
}

.hero__split {
  display: flex;
  min-height: 720px;
  margin: 0;
  border-radius: 2rem;
  overflow: visible; /* allows overlap */
  background: transparent; /* remove grey */
  position: relative;
}


.hero__side {
  flex: 1;
  position: relative;
}

.hero__side--text {
  background: #0d332b;
  color: #fff;
  padding: 3rem 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.hero__side--image {
  background: #ffffff;
  position: relative;
  overflow: visible;
  padding: 0;
  z-index: 3;
}



.hero__copy h1 {
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.2;
  margin: 0;
  display: inline-block;
  overflow: hidden;
}

.hero__headline .char {
  display: inline-block;
  white-space: pre;
}

.hero__figure {
  position: absolute;
  top: -10%;
  bottom: 0;
  height: 110%;       /* make BIGGER */
  width: auto;
  right: -1%; 
  z-index: 5;         /* above everything */
  pointer-events: none;
  transform-origin: center bottom;
}

.hero__figure img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transform-origin: bottom center;
}

.hero__walk-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 6;
}

.hero__walk-wrapper .guy-walk {
  position: absolute;
  bottom: 0;
  right: clamp(40px, 4vw, 90px);
  width: clamp(260px, 34vw, 420px);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom center;
}

.hero__glow {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 234, 0.9) 0%, rgba(255, 247, 234, 0.18) 55%, transparent 75%);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  filter: blur(18px);
  mix-blend-mode: screen;
}

.hero__after-text {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(255, 255, 255, 0.9);
  color: #0d332b;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 10px 40px rgba(1, 2, 0, 0.2);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero__figure--delivered {
  pointer-events: none;
}

.hero__figure--delivered img:first-child,
.hero__figure--delivered img:first-child {
  opacity: 0;
  visibility: hidden;
}

.hero__figure--delivered .hero__after-text {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero__figure--delivered + .hero__glow {
  opacity: 0;
  visibility: hidden;
}

.hero-ground--grass {
  position: absolute;
  bottom: -5.3%;            /* LOCK to bottom of white hero image block */
  left: 0;
  width: 100%;
  height: 200px;        /* adjust to your taste */
  background: url('../img/grass-strip.png') repeat-x center bottom;
  background-size: contain; 
  pointer-events: none;
  z-index: 10;          /* above white background, below the walking guy */
}



.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  margin-bottom: 1.25rem;
  align-self: flex-end;
}

.hero__location-icon {
  font-size: 1.4rem;
  transform: translateY(2px);
}

.hero__location-text {
  min-width: 160px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__cta-link {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.hero__cta-link--stack {
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.hero__catalog-trigger {
  max-width: 220px;
  text-transform: lowercase;
}

.ghost-btn {
  border: 1px solid rgba(255, 201, 40, 0.6);
  background: rgba(255, 201, 40, 0.15);
  color: var(--bhai-accent);
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.1rem;
}

.ghost-btn:hover {
  background: rgba(255, 201, 40, 0.35);
  transform: translateY(-1px);
}

.btn {
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn--primary {
  background: #fff;
  color: var(--brand-dark);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.hero__panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .hero__split {
    flex-direction: column;
  }

  .hero__side--text,
  .hero__side--image {
    padding: 2rem 4vw;
    
  }

  .hero__figure {
    position: relative;
    width: 80%;
    max-width: 360px;
    left: 0;
    top: 0;
    margin: 1rem auto 0;
  }
  .product-catalog {
    padding: 2.25rem;
  }
  .catalog-card__image-wrap {
    height: 150px;
  }
  .catalog__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.hero__card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 35px rgba(5, 14, 31, 0.4);
}

.hero__icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(5, 14, 31, 0.2), 0 15px 30px rgba(5, 14, 31, 0.45);
}

.hero__icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero__card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
}

.hero__card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.catalog-page__heading {
  text-align: left;
  color: #032618;
  margin-bottom: 2rem;
  max-width: 760px;
}

.catalog-page__heading h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(2.4rem, 4vw, 3rem);
  color: #032618;
}

.catalog-page__heading p {
  color: rgba(3, 38, 24, 0.9);
}

.catalog-page__back {
  margin-bottom: 0.75rem;
}

.catalog-page__back .btn {
  text-transform: none;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(3, 38, 24, 0.25);
  box-shadow: 0 10px 25px rgba(3, 38, 24, 0.12);
  padding: 0.55rem 1.3rem;
}

.catalog-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem auto 2rem;
  max-width: 760px;
}

.catalog-header {
  padding: 2rem 4vw 1rem;
  margin-bottom: 1rem;
  text-align: left;
}

.catalog-header__nav {
  margin-bottom: 0.5rem;
  display: inline-flex;
}

.catalog-header__nav .btn--outline {
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-dark);
}

.catalog-header__content h1 {
  font-size: clamp(2.8rem, 5vw, 3.4rem);
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.catalog-header__content p {
  max-width: 760px;
  color: rgba(3, 38, 24, 0.8);
  line-height: 1.6;
}

.catalog-controls__field {
  flex: 1 1 220px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.catalog-controls__field span {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(3, 38, 24, 0.8);
}

.catalog-controls__field input,
.catalog-controls__field select {
  border-radius: 999px;
  border: 1px solid rgba(15, 168, 94, 0.5);
  padding: 0.65rem 1rem;
  background: #fff;
  color: var(--brand-dark);
  font-family: inherit;
  width: 100%;
}

.catalog-controls__field input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.catalog-controls__field input:focus,
.catalog-controls__field select:focus {
  outline: 2px solid rgba(14, 214, 156, 0.9);
  outline-offset: 2px;
}

.product-catalog {
  background: linear-gradient(135deg, #031b15, #0b3d29);
  border-radius: 2rem;
  margin: 0 4vw 2rem;
  padding: 3rem;
  color: #fff;
  box-shadow: 0 35px 70px rgba(1, 10, 6, 0.45);
  position: relative;
  overflow: hidden;
}

.product-catalog__intro {
  max-width: 560px;
}

.product-catalog__intro h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.product-catalog__intro p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.product-catalog__intro code {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.15rem 0.4rem;
  border-radius: 0.35rem;
  font-size: 0.9rem;
}

.product-catalog__refresh {
  margin-top: 0.25rem;
  border-radius: 999px;
  letter-spacing: 0.05rem;
  font-weight: 600;
}

.product-catalog__body {
  margin-top: 2rem;
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.catalog-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

.catalog-card__link {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.catalog-card__image-wrap {
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.catalog-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-card__info {
  padding: 1.25rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.catalog-card__info h3 {
  margin: 0;
  font-size: 1.1rem;
}

.catalog-card__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.catalog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.catalog-card__tags span {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  letter-spacing: 0.05rem;
}

.catalog-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.catalog-card__price {
  font-weight: 600;
  font-size: 1rem;
}

.catalog-card__price--current {
  color: var(--brand-accent);
}

.catalog-card__price--strikethrough {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.6);
}

.catalog-card__price--missing {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.catalog-card__availability {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.catalog__status {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.74);
}

.catalog__status[data-state='error'] {
  color: #ffbaba;
}

.catalog__status[data-state='loading'] {
  color: rgba(255, 255, 255, 0.9);
}

.catalog__status[data-state='success'] {
  color: rgba(255, 255, 255, 0.8);
}

.catalog__empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

main {
  flex: 1;
}

section {
  padding: 4rem 4vw;
}

.role {
  background: #fff;
  border-radius: 2rem;
  margin: 0 4vw 2rem;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.role--alt {
  background: #fef9f2;
}

.role__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  padding: 3rem;
}

.role__media {
  text-align: center;
}

.role__media img {
  width: 500px;
}

.role__content h2 {
  margin: 0.3rem 0;
  font-size: clamp(1.8rem, 2.3vw, 2.6rem);
}

.role__content p {
  color: var(--brand-muted);
  line-height: 1.7;
}

.role__content ul {
  padding-left: 1.25rem;
  color: var(--brand-muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.role__content ul li {
  margin-bottom: 0.5rem;
}

.app-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.app-badge {
  border-radius: 1.2rem;
  overflow: hidden;
  display: inline-flex;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

.app-badge img {
  height: 44px;
  width: auto;
  display: block;
}

.highlights {
  background: #fff;
  border-radius: 2rem;
  margin: 0 4vw 2rem;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.07);
}

.section-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
  font-size: 2.2rem;
}

.section-heading p {
  color: var(--brand-muted);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #f8fbf9;
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid #e1f1e8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.feature-card h3 {
  margin-top: 0;
  color: var(--brand-dark);
}

.feature-card p {
  color: var(--brand-muted);
  line-height: 1.6;
}

.steps {
  margin-bottom: 3rem;
}

.steps__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.steps__grid article {
  background: #fff;
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.steps__grid article span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-accent);
}

.steps__grid article h3 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.steps__grid article p {
  color: var(--brand-muted);
  line-height: 1.5;
}

.footer {
  background: #040710;
  color: #cbd5f5;
  padding: 2.5rem 4vw;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__inner h3 {
  color: #fff;
  margin-bottom: 0.3rem;
}

.footer__links {
  display: flex;
  gap: 1rem;
}

.footer__links a {
  color: #82c0ff;
  text-decoration: none;
  font-weight: 500;
}

.footer__legal {
  text-align: center;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer::before,
.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 240px;
  height: 260px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.12;
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}

.footer::before {
  left: 3vw;
  background-position: left bottom;
  background-image: url('img/grocery-sprig.png');
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1), transparent 70%);
  mix-blend-mode: screen;
}

.footer::after {
  right: 3vw;
  background-position: right bottom;
  background-image: url('img/grocery-basket.png');
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1), transparent 70%);
  mix-blend-mode: screen;
}

.footer * {
  position: relative;
  z-index: 1;
}

.bhai-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.bhai-modal.is-open {
  display: flex;
}

.bhai-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.bhai-modal__content {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 201, 40, 0.95), rgba(255, 236, 163, 0.95));
  border-radius: 1.75rem;
  max-width: 420px;
  width: min(90vw, 420px);
  padding: 2rem;
  color: #0b1f18;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 2;
  overflow: hidden;
}

.bhai-modal__header p {
  color: rgba(11, 31, 24, 0.65);
  margin-top: 0.35rem;
}

.bhai-modal__header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
}

.bhai-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 0.35rem;
}

.bhai-modal__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bhai-modal__text ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
  line-height: 1.6;
  color: rgba(11, 31, 24, 0.78);
}

.bhai-modal__text--suspense {
  text-align: left;
  color: rgba(11, 31, 24, 0.9);
}

.bhai-modal__text--suspense p {
  font-size: 1rem;
}

.bhai-modal__note {
  font-size: 0.85rem;
  color: rgba(11, 31, 24, 0.55);
  margin-bottom: 1rem;
}

.bhai-modal__visual {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.45);
}

.bhai-modal__screenshot {
  height: 240px;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 201, 40, 0.3), rgba(11, 31, 24, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bhai-modal__screenshot img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.bhai-modal__cta {
  margin-top: 0.5rem;
  background: #fff;
  color: #0b1f18;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.bhai-mockup {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  text-align: center;
}

.phone-frame {
  position: relative;
  width: 100%;
}

.phone-shell {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
}

.bhai-screen {
  position: absolute;
  inset: 9% 12%;
  border-radius: 36px;
  overflow: hidden;
}

.bhai-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bhai-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #0b1f18;
}

.bhai-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero__nav {
    flex-direction: column;
    gap: 1rem;
  }

  .role {
    margin: 0 1.5rem 2rem;
  }

  .product-catalog {
    margin: 0 1.5rem 2rem;
  }

  .highlights,
  .role__inner {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .catalog__grid {
    grid-template-columns: 1fr;
  }
  .product-catalog {
    padding: 1.75rem;
  }
}
.grocery-sparkle-footer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.grocery-sparkle-footer span {
  position: absolute;
  width: 28px;
  height: 28px;
  font-size: 24px;
  opacity: 0.1;
  animation: bobble 8s linear infinite;
  color: rgba(255, 255, 255, 0.7);
}

.grocery-sparkle span:nth-child(odd) {
  color: rgba(255, 245, 195, 0.65);
}

.grocery-sparkle span:nth-child(3n) {
  font-size: 32px;
  opacity: 0.16;
}

@keyframes bobble {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.05;
  }
  50% {
    transform: translateY(-25px) scale(1.1);
    opacity: 0.12;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.05;
  }
}
