.o_delifit_help_fab {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #12b24a, #0a7f3a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  z-index: 1080;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.o_delifit_cart_open .o_delifit_help_fab {
  display: none !important;
}

.o_delifit_help_fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.o_delifit_help_modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  z-index: 1079;
  pointer-events: none;
}

.o_delifit_help_modal.is-open {
  pointer-events: auto;
}

.o_delifit_help_backdrop {
  flex: 1;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.o_delifit_help_modal.is-open .o_delifit_help_backdrop {
  opacity: 1;
}

.o_delifit_help_panel {
  width: 420px;
  max-width: 95vw;
  background: #fff;
  box-shadow: -16px 0 30px rgba(0, 0, 0, 0.12);
  transform: translateX(110%);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.o_delifit_help_modal.is-open .o_delifit_help_panel {
  transform: translateX(0);
}

.o_delifit_help_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 10px;
  border-bottom: 1px solid #f0f0f0;
}

.o_delifit_help_title {
  font-weight: 700;
  font-size: 18px;
}

.o_delifit_help_subtitle {
  color: #6b6b6b;
  font-size: 13px;
}

.o_delifit_help_close {
  border: none;
  background: #f3f3f3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.o_delifit_help_search {
  margin: 14px 18px;
  padding: 10px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fafafa;
}

.o_delifit_help_search input {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
  font-size: 14px;
}

.o_delifit_help_list {
  padding: 0 18px 18px;
  overflow-y: auto;
  max-height: calc(100vh - 140px);
}

.o_delifit_help_item {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.o_delifit_help_q {
  font-weight: 700;
  margin-bottom: 6px;
  color: #1f1f1f;
}

.o_delifit_help_a {
  color: #555;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .o_delifit_help_panel {
    width: 100%;
  }
  .o_delifit_help_modal {
    justify-content: center;
  }
}
