.cb {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,.55);
  z-index: 9999;
}

.cb.is-open { display: flex; }

.cb__box{
  width: min(720px, 100%);
  background: #0f0f10;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 18px 18px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.cb__title{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.cb__text{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
  opacity: .92;
}

.cb__options{
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.cb__opt{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.cb__opt input{ transform: translateY(1px); }

.cb__buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 10px;
}

.cb__btn{
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
}

.cb__btn--primary{
  background: #fff;
  color: #000;
}

.cb__btn--ghost{
  background: transparent;
  color: #fff;
}

.cb__meta{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: .9;
}

.cb__link{
  color: #fff;
  text-decoration: underline;
}

.cb__linkbtn{
  appearance: none;
  background: none;
  border: none;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.cb__sep{ opacity: .65; }

@media (max-width: 520px){
  .cb__buttons .cb__btn{ width: 100%; }
}

/* --- Floating Contact Bar --- */
.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9998;
}

.contact-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
}

.contact-item img {
    width: 26px;
    height: auto;
    z-index: 2;
}

.contact-text {
    position: absolute;
    right: 40px;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all .25s ease;
}

.contact-item:hover .contact-text {
    opacity: 1;
    transform: translateX(0);
}

.contact-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
}

.contact-item img {
    width: 60px;
    height: 60px;
    padding: 12px;
    border-radius: 50%;
    background: #000;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    transition: transform 0.25s ease;
    cursor: pointer;
}

.contact-item img:hover { 
    transform: scale(1.08); 
}

.contact-text {
    position: absolute;
    right: 75px;
    white-space: nowrap;
    padding: 10px 16px;
    background: #fff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-item:hover 
.contact-text {
    opacity: 1;
    transform: translateX(0);
}