.chery-float-contact {
  position: fixed;
  top: 35%;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cfc-item {
  background: #343434;
  color: #c3c4c7;
  font-family: 'p-regular', Arial, sans-serif;
  display: flex;
  align-items: center;
  border-radius: 24px 0 0 24px;
  padding: 5px 6px 5px 10px;
  min-width: 48px;
  max-width: 180px;
  box-shadow: 0 2px 8px rgba(52,52,52,0.08);
  cursor: pointer;
  transition: transform 0.3s, background 0.2s, color 0.2s;
  text-decoration: none;
  overflow: hidden;
  transform: translateX(70%);
}
.cfc-icon {
  color: rgb(164, 158, 151) !important;
  font-size: 24px !important;
  margin-right: 0;
  transition: margin-right 0.3s;
  display: flex;
  align-items: center;
}
.cfc-label {
  opacity: 0;
  margin-left: 0;
  white-space: nowrap;
  transition: opacity 0.3s, margin-left 0.3s;
  font-size: 16px;
  pointer-events: none;
}
.cfc-item:hover, .cfc-item.cfc-active {
  transform: translateX(0);
  background: #c3c4c7;
  color: #343434;
}
.cfc-item:hover .cfc-label,
.cfc-item.cfc-active .cfc-label {
  opacity: 1;
  margin-left: 12px;
}
.cfc-item:hover .cfc-icon,
.cfc-item.cfc-active .cfc-icon {
  margin-right: 8px;
}
@media (max-width: 600px) {
  .chery-float-contact {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    background: #343434;
    padding: 0;
    z-index: 9999;
    min-height: 44px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
  }
  .cfc-item {
    border-radius: 0;
    min-width: 0;
    max-width: none;
    width: 100%;
    flex: 1 1 0;
    padding: 0 0;
    font-size: 13px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    background: transparent;
    color: #c3c4c7;
    box-shadow: none;
    
  }
  .cfc-item:last-child {
    border-right: none;
  }
  .cfc-label {
    opacity: 1;
    margin-left: 6px;
    pointer-events: auto;
    font-size: 13px;
    white-space: nowrap;
  }
  .cfc-icon {
    margin-right: 0;
    font-size: 18px !important;
  }
  body {
    padding-bottom: 48px !important;
  }
} 