/* ===== RESET ELEMENTOR POPUP ===== */
.dialog-widget-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* ===== ROOT ===== */
#vendgo-root {
  width: 100%;
  display: flex;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

/* ===== INNER WRAPPER ===== */
#vendgo-root .vendgo-inner {
  width: 100%;
  max-width: 480px; /* giữ layout mobile chuẩn */
  margin: 0 auto;
  background: #fff;
}

/* ===== FIX GLOBAL CONFLICT ===== */
#vendgo-root * {
  box-sizing: border-box;
}

/* ===== FIX IMAGE ===== */
#vendgo-root img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== FIX TEXT ===== */
#vendgo-root h1,
#vendgo-root h2,
#vendgo-root h3,
#vendgo-root p {
  margin: 0;
}

/* ===== BUTTON ===== */
#vendgo-root button {
  cursor: pointer;
  border: none;
}

/* ===== INPUT ===== */
#vendgo-root input,
#vendgo-root select {
  width: 100%;
  outline: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  #vendgo-root .vendgo-inner {
    max-width: 100%;
  }
}