/* =========================================================
   VJ Help Card (Vercajk-shop.cz) - CSS
   ========================================================= */

.vj-helpCard {
  box-sizing: border-box;
  width: 100%;
  margin-top: 14px;
  border: 2px solid #1b7f3a;
  border-left-width: 6px;
  background: #f3fbf6;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 14px 16px;
  overflow: hidden;
}

.vj-helpCard * {
  box-sizing: border-box;
}

.vj-helpCard__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* LEFT (foto + text) */
.vj-helpCard__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}

.vj-helpCard__photo {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  border-radius: 999px;
  border: 3px solid #ffffff;
  box-shadow: 0 10px 18px rgba(0,0,0,0.12);
  object-fit: cover;
  object-position: center;
  background: #fff;
}

.vj-helpCard__text {
  min-width: 0;
}

.vj-helpCard__title {
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 4px 0;
  color: #124a25;
}

.vj-helpCard__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: #2b2b2b;
}

/* RIGHT (tlačítka + input) */
.vj-helpCard__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

.vj-helpCard__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.vj-helpCard__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  text-decoration: none;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .08s ease;
  user-select: none;
}

.vj-helpCard__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.vj-helpCard__btn--ghost {
  background: #ffffff;
  color: #1b7f3a;
}

.vj-helpCard__btn--solid {
  background: #1b7f3a;
  color: #ffffff;
  border-color: rgba(0,0,0,0.08);
}

.vj-helpCard__callbackRow {
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: flex-end;
}

.vj-helpCard__input {
  width: 210px;
  height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.18);
  background: #ffffff;
  font-size: 12px;
  outline: none;
}

.vj-helpCard__input:focus {
  border-color: #1b7f3a;
  box-shadow: 0 0 0 3px rgba(27,127,58,0.15);
}

.vj-helpCard__hint {
  font-size: 11px;
  color: #3c3c3c;
  opacity: 0.85;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vj-helpCard__wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .vj-helpCard__right {
    align-items: stretch;
  }

  .vj-helpCard__actions {
    justify-content: flex-start;
  }

  .vj-helpCard__callbackRow {
    justify-content: flex-start;
  }

  .vj-helpCard__input {
    width: 100%;
  }

  .vj-helpCard__hint {
    text-align: left;
  }
}
