@keyframes v-cta-pulse {
  0% {
    box-shadow: 0 4px 22px rgba(249, 206, 88, 0.15);
  }
  50% {
    box-shadow: 0 4px 22px rgba(249, 206, 88, 0.85);
  }
  to {
    box-shadow: 0 4px 22px rgba(249, 206, 88, 0.15);
  }
}
.v-cta {
  bottom: -600px;
  left: 0;
  opacity: 0;
  padding: 18px 16px;
  position: fixed;
  transition: all 0.65s ease-in;
  width: 100%;
  z-index: 10000;
}

.v-cta.-toggle {
  bottom: 0;
  opacity: 1;
}

.v-cta--container {
  display: grid;
  grid-template-columns: 170px 90px 1fr 210px;
  align-items: center;
  gap: 24px;
  width: 1180px;
  max-width: 100%;
  margin: 0 auto;
  padding: 16px 22px;
  position: relative;

  background: #050505;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.v-cta--logo,
.v-cta--rating,
.v-cta--text-col,
.v-cta--link-col {
  display: flex;
  align-items: center;
  height: 100%;
}

.v-cta--logo {
  justify-content: flex-start;
}

.v-cta--logo img {
  display: block;
  width: 150px;
  height: auto;
  max-width: 100%;
}

.v-cta--rating {
  justify-content: center;
  gap: 0;
  white-space: nowrap;
}

.v-cta--rating-title {
  display: none;
}

.v-cta--rating-info {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  padding-left: 0;
  background: none;
}

.v-cta--rating-info span {
  font-size: 22px;
  font-weight: 900;
  color: #ffd451;
}

.v-cta--text-col {
  justify-content: center;
  text-align: center;
  min-width: 0;
}

.v-cta--title {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
  color: #ffffff;
  white-space: nowrap;
}

.v-cta--link-col {
  justify-content: flex-end;
}

.v-cta--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  position: relative;
  z-index: 2;
  border: none;
  background: initial !important;
  box-shadow: 0 10px 24px rgba(255, 23, 79, 0.34);
}

.v-cta--link:before,
.v-cta--link:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  z-index: -1;
}

.v-cta--link:before {
  background: #b40035;
}

.v-cta--link:after {
  inset: 0 0 2px 0;
  background: linear-gradient(180deg, #ff4b7d 0%, #ff174f 55%, #d8003d 100%);
}

.v-cta--link span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd764 0%, #ffb11b 100%);
  flex-shrink: 0;
}

.v-cta--close {
  position: absolute;
  top: -38px;
  right: 0;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
}

/* mobile */
.v-cta--mobile {
  display: none;
}

@media (max-width: 768px) {
  .v-cta {
    padding: 10px;
  }

  .v-cta--container {
    display: none;
  }

  .v-cta--mobile {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    align-items: center;
    gap: 12px;
    padding: 12px 38px 12px 12px;
    background: #050505;
    border-radius: 14px;
    position: relative;
  }

  .v-cta--mobile-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .v-cta--mobile-logo {
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 10px 14px;
  }

  .v-cta--mobile-logo img {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto;
  }

  .v-cta--mobile-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 0;
  }

  .v-cta--mobile-right .v-cta--rating {
    justify-content: flex-start;
  }

  .v-cta--mobile-right .v-cta--title {
    font-size: 15px;
    line-height: 1.2;
    white-space: normal;
    text-align: left;
  }

  .v-cta--mobile .v-cta--link {
    width: 100%;
    min-width: unset;
    padding: 12px 14px;
  }

  .v-cta--mobile-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}