/** Shopify CDN: Minification failed

Line 9:9 Unexpected "*"

**/
/* gummies-faq.css */

/* Section spacing helper (inherits Dawn pattern) */
.section-*[class$="padding"] {}

/* Container */
.gummies-faq {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
.gummies-faq__container {
  position: relative;
  z-index: 1; /* above fruit */
  text-align: left;
}

/* Headings & meta */
.gf-kicker {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .06em;
  opacity: .7;
  margin: 0 0 .4rem;
  text-align: center;
}
.gf-heading {
  margin: 0 0 .6rem;
  line-height: 1.05;
  text-align: center;
}
.gf-subheading {
  margin: 0 0 1.6rem;
  opacity: .85;
  text-align: center;
}
.gf-link {
  display: inline-block;
  margin-bottom: 2.2rem;
  font-weight: 600;
  text-decoration: underline;
}

/* Category card */
.gf-group__title {
  margin: 2.2rem 0 .8rem;
  margin-top: 80px;
  font-weight: 800;
}
.gf-group__card {
  border-radius: 16px;
  background: #ffff;
  padding: .6rem 0;
  margin: .8rem 0 2.6rem;
  border: 2px;
  border-bottom: 3px solid #000;
}

/* Accordion rows */
.gf-item {
  border: 0;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.14);
}
.gf-item:last-child { border-bottom: 0; }

/* Summary header */
.gf-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.6rem 2rem;
  position: relative;
}
.gf-question::-webkit-details-marker { display: none; }
.gf-question__text {
  font-weight: 800;
  font-size: clamp(1.1rem, .9rem + .6vw, 1.35rem);
}

/* Plus/close icon */
.gf-question__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex: 0 0 20px;
}
.gf-question__icon::before,
.gf-question__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.gf-question__icon::before {
  height: 2px; width: 20px; left: 0; top: 9px;
}
.gf-question__icon::after {
  height: 20px; width: 2px; left: 9px; top: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.gf-item[open] .gf-question__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* Answer body + JS animation base */
.gf-answer {
  overflow: hidden;
  font-size: 13px;
  height: auto; /* JS sets explicit height during animation */
}
.gf-answer__inner {
  padding: 0 2rem 1.2rem 2rem;
  color: rgba(var(--color-foreground), .9);
  line-height: 1.6;
}

/* Floating fruit décor */
.gf-fruit {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
}
.gf-fruit img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
  animation: gf-floatY 6s ease-in-out infinite;
}
@keyframes gf-floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-18px); }
}

/* Positions (tweak as desired) */
.gf-fruit--left-1  { top: 12%; left: -80px; width: 160px; }
.gf-fruit--left-2  { top: 62%; left: -60px; width: 120px; }
.gf-fruit--right-1 { top: 18%; right: -90px; width: 170px; }
.gf-fruit--right-2 { top: 68%; right: -60px; width: 120px; }
.gf-fruit--back    { bottom: -80px; left: 50%; transform: translateX(-50%); width: 240px; opacity: .3; }

@media (max-width: 749px) {
  .gf-fruit--left-1  { left: -60px; width: 120px; }
  .gf-fruit--left-2  { left: -40px; width: 90px; }
  .gf-fruit--right-1 { right: -60px; width: 120px; }
  .gf-fruit--right-2 { right: -40px; width: 90px; }
  .gf-fruit--back    { width: 200px; bottom: -60px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gf-fruit img { animation: none; }
}
