/* =========================
   MIRANO Contact Bubble
   FINAL – schwarz / rot
   ========================= */

:root{
  --mirano-red: #FFFFFF;
  --mirano-red-2: #ff3b30;
  --mirano-black: rgba(0,0,0,.75);
}

/* Container */
#contact-circle{
  position: fixed;
  right: 22px;
  bottom: 22px;

  width: 160px;
  padding: 10px 12px;

  background: var(--mirano-black);
  border: 1px solid var(--mirano-red);
  border-radius: 999px;

  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  z-index: 99999;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Links */
#contact-circle .contact-item{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

/* ICONS – explizit rot erzwingen */
#contact-circle .contact-icon{
  color: var(--mirano-red) !important;
  font-size: 18px;
  min-width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* TEXT – explizit rot erzwingen */
#contact-circle .contact-label{
  color: var(--mirano-red) !important;
  font-size: .95rem;
  line-height: 1.2;
}

/* Hover */
#contact-circle .contact-item:hover .contact-icon{
  color: var(--mirano-red-2) !important;
  filter: drop-shadow(0 0 8px rgba(227,6,19,.35));
}
#contact-circle .contact-item:hover .contact-label{
  text-decoration: underline;
}

/* Close Button */
#contact-close{
  position: absolute;
  top: -10px;
  right: -10px;

  width: 26px;
  height: 26px;
  border-radius: 50%;

  background: #000;
  border: 1px solid var(--mirano-red);
  color: var(--mirano-red);

  cursor: pointer;
  font-size: 14px;
}

/* =========================
   MOBILE – wie bei dir ✔
   ========================= */
@media (max-width: 576px){

  #contact-circle{
    width: auto;
    padding: 10px 12px;
    gap: 8px;
  }

  /* ✅ NUR Text weg */
  #contact-circle .contact-label{
    display: none !important;
  }

  /* ✅ Icons bleiben */
  #contact-circle .contact-icon{
    font-size: 26px;
    min-width: 26px;
  }

  #contact-circle .contact-item{
    gap: 0;
  }

  #contact-close{
    top: -18px;
    right: -8px;
  }
}
@media (max-width: 576px){
  #contact-circle .label{
    display: none !important;
  }

  #contact-circle span[class^="icon-"]{
    font-size: 35px;
    min-width: 35px;
    display: inline-block;
  }
}

/* Bubble links unten */
#payment-circle{
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0,0,0,.78);
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  cursor: pointer;
}

#payment-circle span[class^="icon-"]{
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

/* Kleines Overlay */
#payment-overlay{
  position: fixed;
  left: 22px;
  bottom: 92px;
  z-index: 100000;

  opacity: 0;
  transform: translateY(10px) scale(.96);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

#payment-overlay.show{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.payment-overlay-box{
  min-width: 220px;
  max-width: 260px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0,0,0,.88);
  border: 1px solid #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  color: #fff;
}

.payment-title{
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.payment-methods{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  font-size: .85rem;
  line-height: 1;
  background: rgba(255,255,255,.08);
}

/* Mobile etwas kompakter */
@media (max-width: 576px){
  #payment-circle{
    width: 54px;
    height: 54px;
    left: 14px;
    bottom: 14px;
  }

  #payment-overlay{
    left: 14px;
    bottom: 78px;
  }

  .payment-overlay-box{
    min-width: 200px;
    max-width: calc(100vw - 28px);
    padding: 12px 14px;
  }

  .payment-title{
    font-size: .9rem;
  }

  .payment-pill{
    font-size: .8rem;
    padding: 6px 9px;
  }
}