/* tag 487 */


/* Bara ascunsa implicit */
#vt-sticky-bar {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.10);
  transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

/* Bara vizibila */
#vt-sticky-bar.vt-sticky--visible {
  bottom: 0;
}

.vt-sticky__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.vt-sticky__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.vt-sticky__title {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.vt-sticky__price {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.vt-sticky__btn {
  background: #0077C8; /*#111;*/
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.1s;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.vt-sticky__btn:hover {
  background: #0063aa; /*#333;*/
}

.vt-sticky__btn:active {
  transform: scale(0.97);
}

/* Mobile — full width btn */
@media (max-width: 480px) {
  .vt-sticky__inner {
    padding: 10px 14px;
    gap: 10px;
  }
  .vt-sticky__btn {
    padding: 12px 18px;
    font-size: 13px;
  }
  .vt-sticky__price {
    font-size: 16px;
  }
  .vt-sticky__title {
    font-size: 11px;
  }
}

/* Asigura spatiu la baza paginii sa nu acopere continut */
body.vt-pdp-active {
  padding-bottom: 72px;
}
body.vt-pdp-active div.floating-wpp {
  bottom: 135px;
}
body.vt-pdp-active div.floating-wpp:hover {
  bottom: 137px;
}
