/* --- THE BASE STYLE (The "Skeleton") --- */
.frutiger-button {
  /* Default variables (Green) */
  --hue: 140; 
  --sat: 0.18;
  --glow-intensity: 0.7;
  
  /* Color Logic */
  --fg: oklch(15% calc(var(--sat) * 0.5) var(--hue));
  --bg: oklch(70% var(--sat) var(--hue) / 0.85);
  --bg-dark: oklch(45% var(--sat) var(--hue) / 0.8);
  --bottom-glow: radial-gradient(
    farthest-corner at bottom center,
    rgba(255, 255, 255, var(--glow-intensity)),
    transparent
  );
  
  /* Layout & Typography */
  position: relative;
  cursor: pointer;
  padding: 0.75em 2em;
  border-radius: 9999px;
  border: 1px solid var(--bg);
  background: var(--bottom-glow), linear-gradient(to bottom, var(--bg-dark), var(--bg));
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  color: var(--fg);
  font-family: "Lucida Grande", "Segoe UI", sans-serif;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 300ms ease;
  user-select: none;
}

/* The Glossy Overlay */
.frutiger-button::after {
  content: "";
  position: absolute;
  top: 4%;
  left: 0.75em;
  width: calc(100% - 1.5em);
  height: 40%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.1));
  border-radius: inherit;
  pointer-events: none;
}

/* Interaction States */
.frutiger-button:hover { transform: translateY(-1px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); }
.frutiger-button:active { transform: translateY(1px); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }

/* --- COLOR MODIFIERS --- */
.frutiger-red    { --hue: 25;  --sat: 0.22; }
.frutiger-orange { --hue: 55;  --sat: 0.20; }
.frutiger-yellow { --hue: 95;  --sat: 0.18; }
.frutiger-green  { --hue: 140; --sat: 0.18; }
.frutiger-teal   { --hue: 190; --sat: 0.15; }
.frutiger-blue   { --hue: 245; --sat: 0.20; }
.frutiger-purple { --hue: 290; --sat: 0.18; }
.frutiger-pink   { --hue: 340; --sat: 0.20; }