.vctb-toolbar {
  box-sizing: border-box;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 0px;
  z-index: 9999;
  background: #ee5aa7;
  color: #fff;
  padding: 18px 26px;
  transform: translateY(120%);
  transition: transform 0.2s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  font-size: 16px;
  line-height: 1.3;
  width: auto;
}

.vctb-toolbar.is-visible {
  transform: translateY(0);
}

.vctb-toolbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.vctb-toolbar__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.vctb-toolbar .vctb-btn {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 190px;
  padding: 12px 22px;
  text-decoration: none;
  background: #ffffff;
  color: #4c4253;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.vctb-toolbar .vctb-btn:hover,
.vctb-toolbar .vctb-btn:focus {
  opacity: 0.92;
}

.vctb-btn--toolbar {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .vctb-toolbar {
    left: 8px;
    right: 8px;
    bottom: 0px;
    padding: 10px 12px;
    max-height: 30vh;
    overflow: auto;
  }

  .vctb-toolbar__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
  }

  .vctb-toolbar__text {
    font-size: 14px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    text-align: center;
  }

  .vctb-toolbar .vctb-btn {
    min-height: 42px;
    min-width: 150px;
    width: 100%;
    max-width: 320px;
    padding: 10px 16px;
    font-size: 18px;
  }

  .vctb-btn--toolbar {
    text-align: center;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .vctb-toolbar {
    left: 12px;
    right: 12px;
    bottom: 0px;
    padding: 14px 16px;
  }

  .vctb-toolbar__inner {
    gap: 12px;
  }

  .vctb-toolbar .vctb-btn {
    min-width: 170px;
    font-size: 18px;
  }
}
