/* =============================================
   FUEL PAGE  |  #fab613 brand yellow
   ============================================= */

.fuel-page {
  --fuel-yellow: #fab613;
  --fuel-dark:   #142435;
}

.fuel-page main {
  background: var(--fuel-yellow);
  color: var(--fuel-dark);
}

/* =============================================
   HERO
   ============================================= */

.fuel-hero {
  position: relative;
  min-height: 92vh;
  background: var(--fuel-yellow);
  overflow: hidden;
}

/* SVG placeholders */
.fuel-svg-ph {
  position: absolute;
  z-index: 4;
  border: 2px dashed rgba(0,0,0,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.fuel-svg-ph--arc {
  top: 2.5rem;
  left: max(1.5rem, calc(50% - 560px));
  width: 220px;
  height: 130px;
}
.fuel-svg-ph--400 {
  bottom: 1.5rem;
  right: max(1.5rem, calc(50% - 560px));
  width: 260px;
  height: 170px;
}

/* Echte SVG-Bilder (ersetzen die Platzhalter) */
.fuel-svg-arc {
  position: absolute;
  top: 2rem;
  left: max(1.5rem, calc(50% - 560px));
  width: clamp(180px, 20vw, 320px);
  height: auto;
  z-index: 4;
  pointer-events: none;
}
.fuel-svg-400 {
  position: absolute;
  bottom: 1rem;
  right: max(1.5rem, calc(50% - 560px));
  width: clamp(200px, 22vw, 380px);
  height: auto;
  z-index: 4;
  pointer-events: none;
}

/* Bottom-left label */
.fuel-hero-label {
  position: absolute;
  bottom: 2.5rem;
  left: max(1.5rem, calc(50% - 560px));
  z-index: 4;
  display: flex;
  flex-direction: column;
  line-height: 1;
  pointer-events: none;
}
.fuel-hero-label__bio {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  color: var(--fuel-dark);
  letter-spacing: 0.02em;
  line-height: 0.9;
}
.fuel-hero-label__sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  color: var(--fuel-dark);
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.fuel-hero-label__made {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 1.1rem);
  color: var(--fuel-dark);
  letter-spacing: 0.2em;
  opacity: 0.65;
  margin-top: 0.3em;
}

/* Stage: full hero area, chips centered */
.fuel-hero-stage {
  position: absolute;
  inset: 0;
}

/* Hero Chips — centered cluster via CSS custom props */
.fuel-hero-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(145px, 18vw, 310px);
  z-index: 2;
  will-change: transform, opacity;
  transform-origin: center center;
  transform: translate(calc(-50% + var(--ox, 0px)), calc(-50% + var(--oy, 0px))) rotate(var(--rot, 0deg));
}

.fuel-hero-chip img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  filter: drop-shadow(6px 12px 22px rgba(160, 80, 0, 0.45));
}

/* USP arc text overlay (behind chips) */
.fuel-hero-usp {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.fuel-usp-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 5px;
  fill: var(--fuel-dark);
  opacity: 0.18;
}
@media (max-width: 767px) {
  .fuel-hero-usp { display: none; }
}

/* Fallback chip (no image yet) */
.chip-ph {
  border-radius: 10px;
  aspect-ratio: 2/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.6rem 0.5rem 0.75rem;
  box-shadow: 6px 12px 30px rgba(160, 80, 0, 0.4);
  overflow: hidden;
  position: relative;
  background: var(--chip-bg, #1a1a2e);
}
.chip-ph::before {
  content: 'ARC400';
  position: absolute;
  top: 0.5rem;
  left: 0.6rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}
.chip-type {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.2rem;
}
.chip-name {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(0.55rem, 0.85vw, 0.7rem);
  color: #fff;
  line-height: 1.25;
}

/* =============================================
   STATEMENT
   ============================================= */

.fuel-statement {
  background: var(--fuel-yellow);
  color: var(--fuel-dark);
  padding: 6rem 2rem;
  text-align: center;
}

.fuel-statement p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  line-height: 1.15;
  max-width: 960px;
  margin: 0 auto;
  letter-spacing: 0.02em;
  color: var(--fuel-dark) !important;
}

/* =============================================
   FACTS STRIP
   ============================================= */

.fuel-facts-strip {
  background: var(--fuel-yellow);
  padding: 2.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  border-bottom: 2px solid rgba(0,0,0,0.1);
}

.fuel-fact {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  letter-spacing: 0.2em;
  color: var(--fuel-dark);
  border: 2px solid var(--fuel-dark);
  padding: 0.4em 1.3em;
  border-radius: 999px;
}

/* =============================================
   CATEGORY HEADER
   ============================================= */

.fuel-cat-header {
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  margin-top: 4rem;
  z-index: 2;
}

/* Jagged SVG edges top + bottom */
.fuel-cat-header::before,
.fuel-cat-header::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.fuel-cat-header::before { top: -49px; }
.fuel-cat-header::after  { bottom: -49px; }

/* Protein – beige mountains */
.fuel-cat-header--protein::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,50 L0,34 L80,16 L155,28 L235,9 L315,24 L395,13 L475,27 L555,7 L635,21 L715,11 L795,25 L875,5 L950,17 L1030,9 L1110,23 L1185,7 L1270,19 L1360,12 L1440,21 L1440,50 Z' fill='%23f7edd4'/%3E%3C/svg%3E");
}
.fuel-cat-header--protein::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,16 L80,34 L155,22 L235,41 L315,26 L395,37 L475,23 L555,43 L635,29 L715,39 L795,25 L875,45 L950,33 L1030,41 L1110,27 L1185,43 L1270,31 L1360,38 L1440,29 L1440,0 Z' fill='%23f7edd4'/%3E%3C/svg%3E");
}

/* Endurance – dark mountains */
.fuel-cat-header--endurance::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,50 L0,34 L80,16 L155,28 L235,9 L315,24 L395,13 L475,27 L555,7 L635,21 L715,11 L795,25 L875,5 L950,17 L1030,9 L1110,23 L1185,7 L1270,19 L1360,12 L1440,21 L1440,50 Z' fill='%23142435'/%3E%3C/svg%3E");
}
.fuel-cat-header--endurance::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,16 L80,34 L155,22 L235,41 L315,26 L395,37 L475,23 L555,43 L635,29 L715,39 L795,25 L875,45 L950,33 L1030,41 L1110,27 L1185,43 L1270,31 L1360,38 L1440,29 L1440,0 Z' fill='%23142435'/%3E%3C/svg%3E");
}

.fuel-cat-header--protein,
.fuel-cat-header--protein h2,
.fuel-cat-header--protein p {
  background-color: #f7edd4;
  color: var(--fuel-dark) !important;
}
.fuel-cat-header--protein { background: #f7edd4; }

.fuel-cat-header--endurance,
.fuel-cat-header--endurance h2,
.fuel-cat-header--endurance p {
  color: var(--fuel-yellow) !important;
}
.fuel-cat-header--endurance { background: var(--fuel-dark); }

.fuel-cat-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 13vw, 11rem);
  line-height: 0.88;
  margin: 0 0 0.4rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.fuel-page h2::before,
.fuel-page h2::after {
  display: none !important;
  border: none !important;
}
.fuel-page h2::first-letter {
  text-decoration: none !important;
}

.fuel-cat-header p {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0;
}

/* =============================================
   BAR SECTIONS
   ============================================= */

.fuel-bar-section {
  background: var(--fuel-yellow);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.fuel-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.fuel-bar-section--reverse .fuel-bar-packshot { order: 2; }
.fuel-bar-section--reverse .fuel-bar-info     { order: 1; }

.fuel-cat-header + .fuel-bar-section { margin-top: 2rem; }

/* Packshot: flies in from the side with rotation */
.fuel-bar-packshot {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.9s cubic-bezier(0.34, 1.15, 0.64, 1),
              opacity   0.8s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 1rem;
}

/* Inner wrapper handles hover + reveal independently of fly-in */
.fuel-packshot-inner {
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.6, 1),
              opacity   0.4s ease;
}
.fuel-bar-packshot:not(.pack-revealed) .fuel-packshot-inner:hover {
  transform: translateY(-10px) scale(1.04);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reveal: packshot slides out */
.fuel-bar-packshot.pack-revealed .fuel-packshot-inner {
  transform: translateX(-120%) rotate(-18deg);
  opacity: 0;
}
.fuel-bar-section--reverse .fuel-bar-packshot.pack-revealed .fuel-packshot-inner {
  transform: translateX(120%) rotate(18deg);
  opacity: 0;
}

/* Vertical slogan text */
.fuel-packshot-slogan {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  writing-mode: vertical-lr;
  transform: rotate(180deg) translateY(-30px);
  opacity: 0;
  transition: opacity 0.45s ease 0.2s, transform 0.45s ease 0.2s;
  user-select: none;
  pointer-events: none;
}
.fuel-bar-packshot.pack-revealed .fuel-packshot-slogan {
  opacity: 1;
  transform: rotate(180deg) translateY(0);
}
.fuel-bar-section:not(.fuel-bar-section--reverse) .fuel-bar-packshot {
  transform: translateX(-130px) rotate(-20deg);
}
.fuel-bar-section--reverse .fuel-bar-packshot {
  transform: translateX(130px) rotate(20deg);
}

/* Nutrients overlay: hidden behind packshot, revealed on click */
.fuel-ps-hint {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fuel-dark);
  opacity: 0.4;
  padding: 0.5rem 0 0;
  transition: opacity 0.3s;
  user-select: none;
}
.fuel-bar-packshot:hover .fuel-ps-hint { opacity: 0.75; }
.fuel-bar-packshot.pack-revealed .fuel-ps-hint { opacity: 0; }

.fuel-packshot-nutrients {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #f7edd4;
  color: var(--fuel-dark);
  opacity: 0;
  transform: scale(0.96) translateY(8px);
  transition: opacity 0.38s ease, transform 0.38s ease;
  pointer-events: none;
  border-radius: 6px;
}
.fuel-bar-packshot.pack-revealed .fuel-packshot-nutrients {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.fuel-pn-inner {
  overflow-y: auto;
  padding: 1.25rem 1.25rem 2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.15) transparent;
}

.fuel-packshot-nutrients h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin: 1rem 0 0.3rem;
  color: var(--fuel-dark);
}
.fuel-packshot-nutrients h4:first-child { margin-top: 0; }

.fuel-packshot-nutrients .fuel-acc-zutaten {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--fuel-dark);
  opacity: 0.85;
  margin: 0;
}
.fuel-packshot-nutrients .fuel-acc-allergen {
  font-size: 0.68rem;
  opacity: 0.55;
  font-style: italic;
  margin: 0.4rem 0 0;
  color: var(--fuel-dark);
}
.fuel-packshot-nutrients .fuel-acc-table { width: 100%; }
.fuel-packshot-nutrients .fuel-acc-table td {
  padding: 0.28em 0;
  color: var(--fuel-dark);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 0.78rem;
}

.fuel-soon {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fuel-dark);
  opacity: 0.45;
  margin: 0.6rem 0 0;
}

.fuel-pn-close-hint {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.35;
  margin: 1rem 0 0;
  text-align: center;
  color: var(--fuel-dark);
}

/* Resting state: subtle lean — selectors must be >= initial-state specificity */
.fuel-bar-section .fuel-bar-packshot.fa-in {
  opacity: 1;
  transform: translateX(0) rotate(-4deg);
}
.fuel-bar-section--reverse .fuel-bar-packshot.fa-in {
  opacity: 1;
  transform: translateX(0) rotate(4deg);
}

.fuel-bar-packshot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(6px 14px 20px rgba(160, 80, 0, 0.45));
}

/* Section placeholder */
.fuel-packshot-ph {
  aspect-ratio: 2/3;
  background: rgba(0,0,0,0.07);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.25);
  text-align: center;
  padding: 2rem;
  box-shadow: 6px 14px 28px rgba(160, 80, 0, 0.3);
}

.fuel-bar-kategorie {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  padding: 0.25em 1.1em;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.fuel-bar-kategorie::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  background-color: currentColor;
  mask-mode: alpha;
  -webkit-mask-mode: alpha;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
}

/* Dumbbell icon */
.fuel-bar-kategorie--protein::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9v6M8 7v10M16 7v10M18 9v6M8 12h8'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9v6M8 7v10M16 7v10M18 9v6M8 12h8'/%3E%3C/svg%3E");
}

/* Bicycle icon */
.fuel-bar-kategorie--endurance::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5' cy='17' r='3.5'/%3E%3Ccircle cx='19' cy='17' r='3.5'/%3E%3Cpath d='M5 17L12 6l7 11'/%3E%3Cpath d='M9.5 6h5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5' cy='17' r='3.5'/%3E%3Ccircle cx='19' cy='17' r='3.5'/%3E%3Cpath d='M5 17L12 6l7 11'/%3E%3Cpath d='M9.5 6h5'/%3E%3C/svg%3E");
}

.fuel-bar-kategorie--protein {
  background: #f7edd4;
  color: var(--fuel-dark) !important;
}
.fuel-bar-kategorie--endurance {
  background: var(--fuel-dark);
  color: #fff !important;
}

.fuel-bar-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin: 0 0 1.25rem;
  color: var(--fuel-dark);
}

.fuel-bar-info > p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fuel-dark);
  max-width: 44ch;
  margin-bottom: 1.5rem;
}

.fuel-bar-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.fuel-badge {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--badge-color, var(--fuel-dark));
  color: #fff;
  padding: 0.3em 0.85em;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}
.fuel-badge--cert::before {
  content: '✓';
  font-weight: 900;
  font-size: 0.9em;
  line-height: 1;
}

/* =============================================
   ACCORDION (Zutaten & Nährwerte)
   ============================================= */

.fuel-bar-accordion {
  margin-top: 2rem;
  border-top: 4px solid var(--fuel-dark);
  border-bottom: 4px solid var(--fuel-dark);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.fuel-bar-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 0.75em 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--fuel-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  background: transparent;
}
.fuel-bar-accordion summary::-webkit-details-marker { display: none; }

.fuel-bar-accordion summary::after {
  content: '';
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--fuel-dark);
  border-bottom: 2.5px solid var(--fuel-dark);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.22s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.fuel-bar-accordion[open] summary::after {
  transform: rotate(-135deg) translateY(3px);
}
.fuel-bar-accordion[open] {
  background: rgba(255,255,255,0.15);
  padding: 0 0.75rem;
}

.fuel-acc-body {
  padding: 0.25rem 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.fuel-acc-body h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--fuel-dark);
  margin: 0 0 0.55rem;
}

.fuel-acc-zutaten {
  font-size: 0.78rem;
  line-height: 1.75;
  color: var(--fuel-dark);
  margin: 0 0 0.65rem;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.fuel-acc-allergen {
  font-size: 0.71rem;
  line-height: 1.55;
  color: var(--fuel-dark);
  font-style: italic;
  margin: 0;
}

.fuel-acc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}
.fuel-acc-table tr { border-bottom: 1px solid rgba(0,0,0,0.08); }
.fuel-acc-table tr:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.fuel-acc-table td { padding: 0.42em 0; color: var(--fuel-dark); }
.fuel-acc-table td:last-child { text-align: right; font-weight: 600; }

@media (max-width: 600px) {
  .fuel-acc-body { grid-template-columns: 1fr; }
}

/* =============================================
   SMOOTH SCROLL + CHIP LINKS
   ============================================= */

html { scroll-behavior: smooth; }

a.fuel-hero-chip {
  text-decoration: none;
  cursor: pointer;
}
a.fuel-hero-chip:hover img,
a.fuel-hero-chip:hover .chip-ph {
  transform: scale(1.04);
  transition: transform 0.2s ease;
}

/* =============================================
   BUTTONS
   ============================================= */

.fuel-page .btn-fuel,
.fuel-page .btn-fuel:visited {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  background: var(--fuel-dark);
  color: var(--fuel-yellow) !important;
  padding: 0.7em 2em;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.fuel-page .btn-fuel:hover { opacity: 0.75; color: var(--fuel-yellow) !important; }

.fuel-page .btn-fuel--inverted,
.fuel-page .btn-fuel--inverted:visited {
  background: var(--fuel-yellow);
  color: var(--fuel-dark) !important;
}
.fuel-page .btn-fuel--inverted:hover { color: var(--fuel-dark) !important; }

.fuel-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.fuel-page .btn-fuel--bundle,
.fuel-page .btn-fuel--bundle:visited {
  background: linear-gradient(90deg, #8000cc 0%, #ff4d00 35%, #fab613 50%, #ff4d00 65%, #8000cc 100%);
  background-size: 200% 100%;
  background-position: 0% center;
  color: #fff !important;
  border-radius: 999px;
  transition: background-position 0.6s ease, opacity 0.2s;
}
.fuel-page .btn-fuel--bundle:hover {
  background-position: 100% center;
  opacity: 1;
  color: #fff !important;
}

/* =============================================
   BUNDLE
   ============================================= */

.fuel-bundle {
  background: #f09000;
  color: var(--fuel-dark);
  padding: 5rem 2rem 2.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}

/* Top jagged edge only – no bottom edge (clean transition to footer) */
.fuel-bundle::before {
  content: '';
  position: absolute;
  top: -49px;
  left: 0;
  width: 100%;
  height: 50px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,50 L0,34 L80,16 L155,28 L235,9 L315,24 L395,13 L475,27 L555,7 L635,21 L715,11 L795,25 L875,5 L950,17 L1030,9 L1110,23 L1185,7 L1270,19 L1360,12 L1440,21 L1440,50 Z' fill='%23f09000'/%3E%3C/svg%3E");
}

.fuel-bundle h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.9;
  margin: 0 0 0.5rem;
  color: #142435;
}

/* Fan of all 6 bars */
.fuel-bundle-fan {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 1rem auto 3rem;
  max-width: 740px;
  padding: 2rem 1rem 0;
}

.fuel-bundle-fan img {
  width: clamp(100px, 14vw, 165px);
  flex-shrink: 0;
  margin: 0 -14px;
  transform: rotate(var(--fan-rot, 0deg));
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.35));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.fuel-bundle-fan img:hover {
  transform: rotate(var(--fan-rot, 0deg)) translateY(-18px) scale(1.06);
  filter: drop-shadow(0 20px 36px rgba(0,0,0,0.45));
  position: relative;
  z-index: 2;
}

.fuel-bundle p {
  font-size: 1.1rem;
  max-width: 44ch;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.fuel-bundle p:last-of-type { margin-bottom: 0; }

/* =============================================
   FOREST DIVIDER (fuel-page only)
   ============================================= */

.fuel-forest-divider {
  display: block;
  width: 100%;
  height: clamp(110px, 13vw, 180px);
  margin-top: -1px;
  background: #f09000;
  line-height: 0;
}

/* =============================================
   GENERAL SCROLL REVEAL
   ============================================= */

[data-fa] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-fa="up"]    { transform: translateY(50px); }
[data-fa="left"]  { transform: translateX(-50px); }
[data-fa="right"] { transform: translateX(50px); }
[data-fa].fa-in  { opacity: 1; transform: translate(0); }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
  .fuel-hero { min-height: 100vh; }
  .fuel-svg-ph { display: none; }

  /* Riegel-Cluster auf Mobile: wie Desktop, nur Offsets skaliert */
  .fuel-hero-stage {
    display: block;
    position: absolute;
    inset: 0;
  }
  .fuel-svg-arc {
    top: 0.25rem;
  }
  .fuel-hero-chip {
    position: absolute;
    left: 50%;
    top: 42%;
    width: clamp(129px, 31vw, 167px);
    transform: translate(
      calc(-50% + var(--ox, 0px) * 0.28),
      calc(-50% + var(--oy, 0px) * 0.48)
    ) rotate(var(--rot, 0deg)) !important;
  }
  .fuel-hero-chip img {
    filter: drop-shadow(4px 8px 16px rgba(160,80,0,0.45));
  }
  .fuel-hero-chip[href="#bar-double-chocolate"] {
    width: clamp(141px, 34vw, 183px);
  }
  .fuel-hero-chip[href="#bar-salted-peanut-caramel"] {
    width: clamp(141px, 34vw, 183px);
  }
  .fuel-hero-chip[href="#bar-roasted-hazelnut"] {
    width: clamp(137px, 33vw, 177px);
  }
  .fuel-hero-chip[href="#bar-almond-sour-cherry"] {
    width: clamp(119px, 29vw, 154px);
  }
  .fuel-svg-400 {
    width: clamp(180px, 48vw, 240px);
    bottom: 23%;
    z-index: 10;
  }
  .fuel-hero-label {
    bottom: 25%;
    z-index: 10;
  }

  .fuel-facts-strip {
    margin-top: -22vh;
    position: relative;
    z-index: 5;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem 1.25rem 2rem;
  }
  .fuel-fact {
    border: none;
    border-radius: 0;
    padding: 0.8em 0.25em;
    border-bottom: 1px solid rgba(10,20,5,0.1);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.85em;
    font-size: clamp(1.15rem, 5vw, 1.4rem);
    letter-spacing: 0.12em;
  }
  .fuel-fact:last-child { border-bottom: none; }
  .fuel-fact::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: var(--fuel-dark);
    color: var(--fuel-yellow);
    border-radius: 50%;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .fuel-bar-inner { grid-template-columns: 1fr; gap: 2rem; }
  .fuel-bar-section--reverse .fuel-bar-packshot,
  .fuel-bar-section--reverse .fuel-bar-info { order: unset; }
  .fuel-bar-packshot { opacity: 1 !important; transform: none !important; }
}
