/* =========================================================
   DBM Public CSS (Gold/Black) — ANAND FINAL (REFRACTOR SAFE)
   - Matches NEW markup: .dbm-wrap .dbm-grid .dbm-left + aside.dbm-right
   - Sticky only the RIGHT stack (privacy + summary)
   - Clean, no legacy floats, no .dbm-checkout/.dbm-layout dependencies
   - Tooltips never clip (no overflow hidden on parents)
   ========================================================= */

/* ---------------------------------------------------------
   0) Theme conflict resets (safe)
--------------------------------------------------------- */
.dbm-template-card{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Prevent tooltip / sticky clipping */
html, body,
.dbm-wrap, .dbm-grid, .dbm-left, .dbm-right,
.dbm-form, .dbm-card, .dbm-step, .dbm-pane, .dbm-tabs{
  overflow: visible !important;
}

/* ---------------------------------------------------------
   1) Wrap + Grid (NEW STRUCTURE)
   PublicSite renders:
   <div class="dbm-wrap dbm-wrap-public">
     <div class="dbm-grid">
       <div class="dbm-left">...</div>
       <aside class="dbm-right">...</aside>
     </div>
   </div>
--------------------------------------------------------- */
.dbm-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 14px 36px;
  font-family: inherit;
  color: #121212;
}

.dbm-grid{
  background: #fbfbfc;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  padding: 18px;
}

/* Desktop 2-column */
@media (min-width: 981px){
  .dbm-grid{
    display:flex !important;
    align-items:flex-start !important;
    gap:24px !important;
  }
  .dbm-left{
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 10px 14px 12px 10px;
    box-sizing: border-box;
  }
  .dbm-right{
    flex: 0 0 360px !important;
    width: 360px !important;
    min-width: 320px !important;
    padding: 10px 10px 12px 14px;
    box-sizing: border-box;
    position: relative !important;
  }

  /* Sticky ONLY the cards inside right */
  .dbm-right .dbm-privacy,
  .dbm-right .dbm-summary{
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 110px !important; /* adjust to your header height */
    z-index: 5 !important; /* should sit under header if header z-index is higher */
  }

  /* Make privacy sit above summary when both sticky */
  .dbm-right .dbm-privacy{ top: 110px !important; }
  .dbm-right .dbm-summary{ top: calc(110px + 12px + 140px); } /* privacy height approx */
}

/* Mobile stack (no sticky) */
@media (max-width: 980px){
  .dbm-grid{ display:block !important; }
  .dbm-left, .dbm-right{
    width:100% !important;
    min-width:0 !important;
    padding: 8px 6px !important;
  }
  .dbm-right{ margin-top: 18px !important; }
  .dbm-right .dbm-privacy,
  .dbm-right .dbm-summary{
    position: static !important;
    top: auto !important;
  }
}

/* ---------------------------------------------------------
   2) Generic cards
--------------------------------------------------------- */
.dbm-card{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.dbm-card__title{
  margin: 0 0 10px 0;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -.2px;
  color:#121212;
}

.dbm-muted{
  color: rgba(0,0,0,.55);
  font-size: 12.5px;
  line-height: 1.45;
}

/* ---------------------------------------------------------
   3) Tabs
--------------------------------------------------------- */
.dbm-tabs{ margin: 6px 0 14px 0; }
.dbm-tabs__head{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.dbm-tab{
  appearance:none;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 850;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
}
.dbm-tab:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}
.dbm-tab.is-active{
  border-color: rgba(212,175,55,0.75);
  box-shadow: 0 12px 26px rgba(212,175,55,0.18);
  background: linear-gradient(135deg, rgba(212,175,55,0.16), rgba(212,175,55,0.06));
}

/* ---------------------------------------------------------
   4) Pane + Steps (simple + clean)
--------------------------------------------------------- */
.dbm-pane{
  margin-bottom: 10px;
}
.dbm-pane__title{
  font-weight: 950;
  margin: 0 0 6px 0;
}

.dbm-step{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  padding: 14px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.dbm-step h4{
  margin: 0 0 10px 0;
  font-weight: 950;
  color:#121212;
}

/* ---------------------------------------------------------
   5) Fields + Inputs
--------------------------------------------------------- */
.dbm-field{ margin-bottom: 12px; }
.dbm-field > label{
  display:block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(0,0,0,.72);
  margin-bottom: 6px;
}

.dbm-field input[type="text"],
.dbm-field input[type="email"],
.dbm-field input[type="url"],
.dbm-field select{
  width: 100%;
  height: 46px;
  box-sizing: border-box;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  background:#ffffff;
  padding: 12px 12px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .12s ease;
}

.dbm-field input:focus,
.dbm-field select:focus{
  border-color: rgba(212,175,55,.70);
  box-shadow: 0 0 0 4px rgba(212,175,55,.18);
  transform: translateY(-1px);
}

/* Checks */
.dbm-check{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background:#fff;
  margin: 8px 0;
  cursor:pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .12s ease;
}
.dbm-check:hover{
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  transform: translateY(-1px);
}
.dbm-check input{ margin:0; }

/* ---------------------------------------------------------
   6) Suggest dropdown + chips
--------------------------------------------------------- */
.dbm-suggest{
  margin-top: 8px;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}
.dbm-suggest-item{
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  cursor:pointer;
}
.dbm-suggest-item:hover{ background: rgba(212,175,55,0.14); }

.dbm-chips{ margin-top: 10px; }
.dbm-chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  background:#121212;
  color:#f3d98b;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
  margin: 0 8px 8px 0;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}
.dbm-chip button{
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: rgba(243,217,139,.95);
}
.dbm-chip button:hover{ color:#ffffff; }

/* ---------------------------------------------------------
   7) Buttons
--------------------------------------------------------- */
.dbm-btn{
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background:#ffffff;
  cursor:pointer;
  font-weight: 900;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}
.dbm-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}
.dbm-btn:active{ transform: translateY(0); }

.dbm-btn-primary{
  background:#d4af37;
  color:#111;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(0,0,0,.14);
}
.dbm-btn-primary:hover{
  background:#f2d16b;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}
.dbm-btn[disabled],
.dbm-btn-primary[disabled]{
  opacity: .55;
  cursor: not-allowed;
}

/* submit in summary */
#dbm_submit_btn{
  width: 100%;
  margin-top: 12px;
}

/* ---------------------------------------------------------
   8) Right: Privacy + Summary (premium borders)
--------------------------------------------------------- */
.dbm-privacy,
.dbm-summary{
  border: 2px solid rgba(212,175,55,0.55);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
  overflow: visible !important;
  background:#fff;
}

.dbm-privacy{
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
  padding: 12px 14px;
  margin-bottom: 12px;
}

.dbm-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.dbm-list li{
  position: relative;
  padding-left: 24px;
  margin: 6px 0;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  color: rgba(0,0,0,0.70);
}
.dbm-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #111;
  background: rgba(212,175,55,0.65);
  box-shadow: 0 6px 14px rgba(212,175,55,0.20);
}

/* Summary */
.dbm-summary{ padding: 14px; }
.dbm-summary__rows{ margin-top: 6px; }

.dbm-summary__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.dbm-summary__row span{ color: rgba(0,0,0,.62); font-size: 13px; }
.dbm-summary__row strong{ color:#111; font-weight: 950; font-size: 13px; }

.dbm-hr{
  border: none;
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 10px 0;
}

.dbm-summary__total strong{ font-size: 16px; }
#dbm_sum_total{
  font-size: 22px;
  font-weight: 1000;
}

/* effective + due rows */
#dbm_sum_due_row strong,
#dbm_sum_effective_row strong{
  font-weight: 950;
}

/* ---------------------------------------------------------
   9) Tooltip (gold, no clipping)
--------------------------------------------------------- */
.dbm-info{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  border-radius: 999px;
  border: 1.5px solid #d4af37;
  background: rgba(212,175,55,0.14);
  color: #d4af37;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: help;
  user-select: none;
  position: relative;
  top: -1px;
}
.dbm-info:hover{ background: rgba(212,175,55,0.22); }

.dbm-info::after{
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(-2px);
  display: block;
  box-sizing: border-box;
  width: 320px;
  max-width: min(380px, 86vw);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,0.65);
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.08));
  color: #111;
  font-size: 12.8px;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  z-index: 99999;
  white-space: normal;
  word-break: break-word;
}
.dbm-info::before{
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(212,175,55,0.14);
  border-left: 1px solid rgba(212,175,55,0.65);
  border-top: 1px solid rgba(212,175,55,0.65);
  opacity: 0;
  pointer-events: none;
  z-index: 99999;
}
.dbm-info:hover::after,
.dbm-info:hover::before{ opacity: 1; }

/* ---------------------------------------------------------
   10) Tiny animation (optional)
--------------------------------------------------------- */
@keyframes dbmPopIn{
  0%{ transform: translateY(6px); opacity: 0; }
  100%{ transform: translateY(0); opacity: 1; }
}
.dbm-step, .dbm-summary, .dbm-privacy{ animation: dbmPopIn .22s ease; }

/* ---------------------------------------------------------
   11) Hard-kill legacy layout selectors (safe)
   (Old system used .dbm-checkout/.dbm-layout; new does not.)
--------------------------------------------------------- */
.dbm-checkout,
.dbm-layout{
  display: none !important;
}

.dbm-right .dbm-summary-wrap{
  position: sticky;
  top: 110px;
}

/* =========================================================
   DBM Tabs Visibility Lock (FINAL)
   - Hide ALL panes/steps by default
   - Show ONLY the one with .is-active
   ========================================================= */

.dbm-wrap .dbm-pane,
.dbm-wrap .dbm-step{
  display: none !important;
}

.dbm-wrap .dbm-pane.is-active,
.dbm-wrap .dbm-step.is-active{
  display: block !important;
}

/* =========================================================
   DBM Public (List / Checkout) Layout + Sticky Summary (FINAL)
   - NO GRID
   - Sticky ONLY .dbm-summary-wrap
   ========================================================= */

/* Outer container */
.dbm-wrap.dbm-wrap-public{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Main layout: left + right */
.dbm-wrap.dbm-wrap-public .dbm-grid{
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

/* Left content */
.dbm-wrap.dbm-wrap-public .dbm-left{
  flex: 1 1 auto;
  min-width: 0;
}

/* Right sidebar */
.dbm-wrap.dbm-wrap-public .dbm-right{
  width: 360px;
  min-width: 360px;
  overflow: visible !important; /* REQUIRED for sticky */
  position: relative;
}

/* Right side cards spacing */
.dbm-wrap.dbm-wrap-public .dbm-right .dbm-card{
  margin-bottom: 14px;
}

/* =========================================================
   Sticky Summary (ONLY .dbm-summary-wrap)
   ========================================================= */

/* Required markup:
   <div class="dbm-summary-wrap">
     <div class="dbm-card dbm-summary">...</div>
   </div>
*/
.dbm-wrap.dbm-wrap-public .dbm-summary-wrap{
  position: sticky;
  top: 110px; /* header-safe offset */
  z-index: 5;
}

/* Safety: never allow other elements to stick */
.dbm-wrap.dbm-wrap-public .dbm-right,
.dbm-wrap.dbm-wrap-public .dbm-card{
  position: static;
}

/* =========================================================
   Mobile — stack + disable sticky
   ========================================================= */
@media (max-width: 991px){
  .dbm-wrap.dbm-wrap-public .dbm-grid{
    flex-direction: column;
  }

  .dbm-wrap.dbm-wrap-public .dbm-right{
    width: 100%;
    min-width: 0;
  }

  .dbm-wrap.dbm-wrap-public .dbm-summary-wrap{
    position: static;
    top: auto;
  }
}
/* =========================================================
   FIX: Sticky works only if RIGHT column has enough height
   - Make .dbm-grid stretch children height
   - Then sticky summary can move
   ========================================================= */

body.page-id-122056 .dbm-wrap.dbm-wrap-public .dbm-grid,
body.page-template-page-dbm-checkout .dbm-wrap.dbm-wrap-public .dbm-grid{
  align-items: stretch !important; /* ✅ THIS is the key fix */
}

/* Right column should stretch full height */
body.page-id-122056 .dbm-wrap.dbm-wrap-public .dbm-right,
body.page-template-page-dbm-checkout .dbm-wrap.dbm-wrap-public .dbm-right{
  align-self: stretch !important;
}

/* Sticky ONLY order summary */
body.page-id-122056 .dbm-wrap.dbm-wrap-public .dbm-summary-wrap,
body.page-template-page-dbm-checkout .dbm-wrap.dbm-wrap-public .dbm-summary-wrap{
  position: sticky !important;
  top: 160px !important;
  z-index: 999 !important;
  align-self: flex-start !important;
}

/* Force Privacy card NOT sticky (in case old css makes it sticky) */
body.page-id-122056 .dbm-wrap.dbm-wrap-public .dbm-privacy,
body.page-template-page-dbm-checkout .dbm-wrap.dbm-wrap-public .dbm-privacy{
  position: static !important;
  top: auto !important;
}
/* =========================================================
   Sticky should go BEHIND the site header (NOT over it)
   ========================================================= */

/* Make sure header stays on top */
.header-area{
  position: relative;
  z-index: 9999 !important;
}

/* Sticky summary stays sticky but below header layer */
.dbm-wrap.dbm-wrap-public .dbm-summary-wrap{
  z-index: 10 !important;   /* was 999 - too high */
}

/* Company match suggest (Create tab) */
.dbm-suggest--company{
  margin-top:10px;
  padding:10px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.dbm-suggest--company .dbm-suggest__head{
  font-weight:800;
  font-size:13px;
  margin-bottom:8px;
}

.dbm-suggest--company .dbm-suggest__item{
  width:100%;
  text-align:left;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.08);
  background:#fafafa;
  cursor:pointer;
  margin-bottom:8px;
}

.dbm-suggest--company .dbm-suggest__item strong{
  display:block;
  font-size:14px;
}

.dbm-suggest--company .dbm-suggest__item span{
  display:block;
  font-size:12px;
  opacity:.75;
  margin-top:2px;
}

.dbm-suggest--company .dbm-suggest__item:hover{
  background:#fff;
}

.dbm-suggest--company .dbm-suggest__foot{
  font-size:12px;
  opacity:.75;
  margin-top:6px;
}

/* =========================================================
   Company match suggest (Create tab) - LimoVibes style
   Uses gold/black brand, clean rows: name (left) + claim (right)
   ========================================================= */

.dbm-suggest{
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.45); /* gold */
  background: #fff;
  box-shadow: 0 14px 36px rgba(0,0,0,.10);
  overflow: hidden; /* keeps rounded corners clean */
}

.dbm-suggest__head{
  padding: 10px 14px;
  font-weight: 800;
  font-size: 13px;
  color: #0d0d0d;
  background: linear-gradient(180deg, rgba(212,175,55,.14), rgba(212,175,55,.06));
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.dbm-suggest__item{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  text-align: left;

  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: #fff;
  cursor: pointer;

  transition: transform .08s ease, background-color .12s ease;
}

.dbm-suggest__item:last-child{
  border-bottom: 0;
}

.dbm-suggest__item:hover{
  background: rgba(212,175,55,.08);
}

.dbm-suggest__item:active{
  transform: translateY(1px);
}

.dbm-suggest__item strong{
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  color: #0d0d0d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Right side "Claim Listing" pill */
.dbm-suggest__item span{
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  color: #0d0d0d;

  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.65);
  background: rgba(212,175,55,.18);
  white-space: nowrap;
}

.dbm-suggest__item:hover span{
  background: rgba(212,175,55,.28);
}

/* Footer note inside box */
.dbm-suggest__foot{
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(0,0,0,.72);
  background: #fafafa;
  border-top: 1px solid rgba(0,0,0,.06);
}

/* Hint line below suggest box */
.dbm-suggest-hint{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(0,0,0,.72);
  padding-left: 2px;
}

/* Mobile: allow wrapping */
@media (max-width: 520px){
  .dbm-suggest__item{
    flex-direction: column;
    align-items: flex-start;
  }
  .dbm-suggest__item strong{
    white-space: normal;
  }
}

/* Step 3 city suggest dropdown */
.dbm-suggest[data-suggest="create"]{
  margin-top:10px;
  border-radius:14px;
  border:1px solid rgba(212,175,55,.35);
  background:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  overflow:hidden;
}

/* dropdown item */
.dbm-suggest__row{
  width:100%;
  text-align:left;
  padding:12px 14px;
  background:#fff;
  border:0;
  border-bottom:1px solid rgba(0,0,0,.06);
  cursor:pointer;
  font-weight:700;
}

.dbm-suggest__row:hover{
  background:rgba(212,175,55,.10);
}

/* Chips wrap */
.dbm-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}

/* ===============================
   City Chips (LimoVibes) - FINAL
=============================== */

.dbm-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

/* the pill */
.dbm-chip{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;

  background: #0b0b0b;            /* premium black */
  color: #d4af37;                  /* LimoVibes gold */
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 999px;

  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;

  box-shadow: 0 6px 18px rgba(0,0,0,.16);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.dbm-chip:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  border-color: rgba(212,175,55,.55);
}

.dbm-chip__label{
  white-space:nowrap;
}

/* the X button */
.dbm-chip__remove{
  all: unset;
  cursor: pointer;

  width: 20px;
  height: 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.40);
  color: #d4af37;

  font-size: 14px;
  line-height: 1;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}

.dbm-chip__remove:hover{
  background: #d4af37;
  color: #0b0b0b;
  border-color: rgba(212,175,55,.90);
}

/* =========================================================
   DBM Tabs (Create / Update / Claim)
   - Gold & Black (LimoVibes)
   - URL-based tabs (reload-safe)
   ========================================================= */

.dbm-tabs {
  margin-bottom: 26px;
}

/* Tabs container */
.dbm-tabs__head {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Individual tab */
.dbm-tab {
  appearance: none;
  border: 1px solid #1a1a1a;
  background: #0b0b0b;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Hover */
.dbm-tab:hover {
  background: #151515;
  border-color: #d4af37;
  color: #fff;
}

/* Active tab */
.dbm-tab.is-active {
  background: linear-gradient(135deg,
    #f3e2aa 0%,
    #e6c879 40%,
    #d4af37 70%,
    #cfa42c 100%
  );
  color: #111;
  border-color: #cfa42c;
  box-shadow: 0 6px 20px rgba(212,175,55,.35);
}

/* Active tab hover (keep solid) */
.dbm-tab.is-active:hover {
  color: #000;
}

/* Info icon inside tab */
.dbm-tab .dbm-info {
  background: rgba(0,0,0,.15);
  color: #000;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile stack */
@media (max-width: 640px) {
  .dbm-tabs__head {
    flex-direction: column;
    align-items: stretch;
  }

  .dbm-tab {
    justify-content: center;
    width: 100%;
  }
}

#dbm-toast{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;
  max-width: 420px;
}
#dbm-toast .dbm-toast-inner{
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  display:flex;
  gap:10px;
  align-items:flex-start;
  background:#111;
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
}
#dbm-toast .dbm-toast-inner.success{ border-color: rgba(0,255,160,.35); }
#dbm-toast .dbm-toast-inner.error{ border-color: rgba(255,70,70,.45); }
#dbm-toast .dbm-toast-msg{ line-height: 1.35; font-size: 14px; }
#dbm-toast .dbm-toast-x{
  margin-left:auto;
  border:0;
  background:transparent;
  color:#fff;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  opacity:.8;
}
#dbm-toast .dbm-toast-x:hover{ opacity:1; }

/* Success banner (server-side, guaranteed) */
.dbm-success-banner{
  margin: 12px 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #0f1a14;
  border: 1px solid rgba(0,255,160,.35);
  color: #eafff6;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  font-size: 14px;
}

/* Toast container mount (JS will use this) */
.dbm-toast{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;
  max-width: 420px;
}
/* Force badges clickable (protect against pointer-events locks) */
.dbm-step-4,
.dbm-step-4 * {
  pointer-events: auto !important;
}


/* Inline validation (professional) */
.dbm-wrap-public .dbm-field.dbm-has-error input,
.dbm-wrap-public .dbm-field.dbm-has-error select,
.dbm-wrap-public .dbm-field.dbm-has-error textarea{
  border-color: rgba(200, 0, 0, .45) !important;
  box-shadow: 0 0 0 4px rgba(200,0,0,.10) !important;
}

.dbm-wrap-public .dbm-inline-error{
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(180, 0, 0, .90);
}

/* Continue disabled look */
.dbm-right button[disabled],
.dbm-right .is-disabled{
  opacity: .55;
  cursor: not-allowed !important;
  filter: grayscale(10%);
}

/* =========================================================
   LimoVibes Premium Gold Button Override
   ========================================================= */

.dbm-btn.dbm-btn--primary {
  background: #d4af37 !important;
  color: #000 !important;
  border: 2px solid #d4af37 !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

/* Hover */
.dbm-btn.dbm-btn--primary:hover {
  background: #000 !important;
  color: #d4af37 !important;
  border: 2px solid #d4af37 !important;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

/* Active */
.dbm-btn.dbm-btn--primary:active {
  transform: translateY(1px);
}

/* Disabled look (if needed later) */
.dbm-btn.dbm-btn--primary:disabled {
  background: #c9b458 !important;
  color: #111 !important;
  border-color: #c9b458 !important;
  opacity: 0.7;
  cursor: not-allowed;
}

/* =========================================================
   LimoVibes Luxury Select (Plan + Billing) — FINAL
   - Black/Gold premium
   - FIX: hover list styling
   - FIX: weird corner/arrow artifact
   ========================================================= */

/* Main select */
.dbm-wrap-public .nice-select{
  background: linear-gradient(145deg, #111 0%, #000 100%) !important;
  border: 2px solid #d4af37 !important;
  color: #d4af37 !important;
  font-weight: 600 !important;
  border-radius: 14px !important;
  box-shadow:
    0 4px 14px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(212,175,55,0.3) !important;
  transition: all 0.3s ease !important;
}

/* Ensure selected text stays gold */
.dbm-wrap-public .nice-select .current{
  color:#d4af37 !important;
}

/* Hover effect */
.dbm-wrap-public .nice-select:hover{
  box-shadow:
    0 6px 20px rgba(212,175,55,0.3),
    inset 0 1px 0 rgba(212,175,55,0.4) !important;
}

/* -------------------------
   FIX: Dropdown arrow corner issue
   Replace default border arrow with clean chevron
   ------------------------- */
.dbm-wrap-public .nice-select:after{
  content:"" !important;
  border: none !important;

  width: 10px !important;
  height: 10px !important;
  right: 16px !important;
  top: 50% !important;
  margin-top: -6px !important;

  background: transparent !important;
  border-right: 2px solid #d4af37 !important;
  border-bottom: 2px solid #d4af37 !important;
  transform: rotate(45deg) !important;
}

/* Flip chevron when open */
.dbm-wrap-public .nice-select.open:after{
  margin-top: -2px !important;
  transform: rotate(-135deg) !important;
}

/* -------------------------
   Dropdown list panel
   ------------------------- */
.dbm-wrap-public .nice-select .list{
  background: #000 !important;
  border: 2px solid #d4af37 !important;
  border-radius: 14px !important;
  color: #d4af37 !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6) !important;

  /* FIX: prevents the “big gold slab” look */
  padding: 6px !important;
  overflow: hidden !important;
}

/* Each item row */
.dbm-wrap-public .nice-select .option{
  padding: 12px 16px !important;
  color: #d4af37 !important;
  background: transparent !important;

  /* FIX: nice clean rows */
  border-radius: 10px !important;
  margin: 2px 0 !important;
  line-height: 1.2 !important;
}

/* Hover / focus (keyboard) — premium gold highlight */
.dbm-wrap-public .nice-select .option:hover,
.dbm-wrap-public .nice-select .option.focus{
  background: #d4af37 !important;
  color: #000 !important;
}

/* Selected option should NOT permanently look hover-gold */
.dbm-wrap-public .nice-select .option.selected{
  background: rgba(212,175,55,.20) !important;
  color: #d4af37 !important;
}

/* Selected + hover should still become gold */
.dbm-wrap-public .nice-select .option.selected:hover,
.dbm-wrap-public .nice-select .option.selected.focus{
  background: #d4af37 !important;
  color: #000 !important;
}


