.fingerfood-page {
  width: 100%;
  height: 100svh;
  overflow: hidden;
  position: relative;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,148,58,.13), transparent 35%),
    linear-gradient(180deg, #080808, #050505);
  border: 1px solid rgba(201,148,58,.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.finger-home-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 100;

  padding: 8px 18px;

  background: linear-gradient(
      135deg,
      var(--gold-deep),
      var(--gold-bright),
      var(--gold-deep)
  );

  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .18em;

  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(201,148,58,.35);
  transition: .3s;
}
.finger-home-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201,148,58,.45);
}
.fingerfood-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.fingerfood-center img {
  width: auto;
  height: 95vh;
  max-width: 98vw;
  object-fit: contain;
}


.fingerfood-cta {
    position:absolute;

top:500px;
right:20px;

padding:10px 22px;

background:linear-gradient(
135deg,
var(--gold-deep),
var(--gold-bright),
var(--gold-deep));

color:black;

font-size:.55rem;
font-weight:700;

letter-spacing:.18em;

text-decoration:none;

text-transform:uppercase;

border-radius:10px;

box-shadow:0 10px 25px rgba(201,148,58,.35);

transition:.35s;

z-index:50;
}

.fingerfood-cta:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 28px rgba(201,148,58,.45);
}
@media (max-width: 900px) {

  html,
  body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }

  .fingerfood-page {
    width: 100%;
    height: auto;
    min-height: 100svh;

    padding:
      calc(3.8rem + env(safe-area-inset-top))
      0.55rem
      calc(1.5rem + env(safe-area-inset-bottom));

    overflow-x: hidden;
    overflow-y: visible;

    display: block;
  }

  /* Kleiner Pfeil oben links */

  .finger-home-btn {
    position: fixed;

    top: calc(0.7rem + env(safe-area-inset-top));
    left: 0.7rem;
    right: auto;

    width: 36px;
    height: 36px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 0;
    letter-spacing: 0;

    z-index: 100;
  }

  .finger-home-btn::before {
    content: "←";

    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
  }

  /* Bild und Anfrage-Button untereinander */

  .fingerfood-content {
    position: static;

    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;

    gap: 0.9rem;
  }

  /*
    Wichtig:
    position:absolute und inset:0 vom Desktop zurücksetzen.
  */

  .fingerfood-center {
    position: static !important;
    inset: auto !important;

    width: 100%;
    height: auto;

    display: block;

    padding: 0;
    overflow: visible;
  }

  .fingerfood-center picture {
    width: 100%;
    height: auto;

    display: block;
  }

  .fingerfood-center picture img {
    width: 100%;
    height: auto;

    max-width: 100%;
    max-height: none;

    display: block;

    margin: 0;

    object-fit: contain;

    border: 1px solid rgba(201, 148, 58, 0.4);
    border-radius: 10px;

    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.48);
  }

  /* Anfrage-Button direkt nach dem vollständigen Bild */

  .fingerfood-cta {
    position: static !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    display: block;

    width: fit-content;
    min-width: 140px;

    margin: 20px auto 0;
    padding: 10px 22px;

    text-align: center;

    font-size: 0.52rem;
    letter-spacing: 0.13em;
  }

  .fingerfood-cta:hover {
    transform: translateY(-2px);
  }

  .fingerfood-cta:active {
    transform: scale(0.97);
  }
}