.mt-tip-page{
  font-family:'Inter',sans-serif;
  background:linear-gradient(135deg,#eef2f7,#f8fafc);
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.mt-tip-page .mt-tip-wrap{
  width:100%;
  max-width:420px;
}

.mt-tip-page .mt-tip-card{
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(18px);
  border-radius:26px;
  border:1px solid rgba(0,0,0,.06);
  padding:28px;
  box-shadow:0 30px 60px rgba(0,0,0,.08);
}

/* logo */
.mt-tip-page .mt-tip-card .mt-tip-logo{
  text-align:center;
  margin-bottom:20px;
}



.mt-tip-page .mt-tip-card .mt-tip-logo img{
  height:34px;
  object-fit:contain;
}

/* restaurant line */
.mt-tip-page .mt-tip-card .mt-tip-restaurant{
  text-align:center;
  font-size:14px;
  margin-bottom:12px;
  color:#374151;
}

/* title + subtitle */
.mt-tip-page .mt-tip-card .mt-tip-title{
  text-align:center;
  font-size:22px;
  font-weight:600;
  margin-bottom:6px;
  color:#111827;
}

.mt-tip-page .mt-tip-card .mt-tip-subtitle{
  text-align:center;
  font-size:14px;
  color:#6b7280;
  margin-bottom:24px;
}

/* amounts */
.mt-tip-page .mt-tip-card .mt-tip-amounts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:18px;
}

.mt-tip-page .mt-tip-card .mt-tip-amounts button{
  background:rgba(255,255,255,.9);
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:14px 0;
  font-weight:600;
  color:#111827;
  transition:all .2s ease;
}

.mt-tip-page .mt-tip-card .mt-tip-amounts button:hover{
  background:#f0f9ff;
  border-color:#38bdf8;
  color:#0369a1;
}

.mt-tip-page .mt-tip-card .mt-tip-amounts button.active{
  background:#e0f2fe;
  border-color:#38bdf8;
  color:#0369a1;
}

/* custom input */
.mt-tip-page .mt-tip-card .mt-tip-custom{
  margin-bottom:18px;
}

.mt-tip-page .mt-tip-card .mt-tip-custom input{
  border-radius:14px;
  padding:14px;
  font-size:16px;
}

/* pay button area */
.mt-tip-page .mt-tip-card .mt-tip-pay{
  margin-top:10px;
}

.mt-tip-page .mt-tip-card .mt-tip-pay .btn{
  width:100%;
  padding:14px;
  border-radius:16px;
  font-weight:600;
  font-size:16px;
}

/* note */
.mt-tip-page .mt-tip-card .mt-tip-note{
  text-align:center;
  font-size:12px;
  color:#9ca3af;
  margin-top:18px;
  line-height:1.4;
}

.mt-tip-page .mt-tip-card .mt-tip-input{
  position:relative;
}

.mt-tip-page .mt-tip-card .mt-tip-input i{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  color:#9ca3af;
  font-size:14px;
  pointer-events:none;
}

.mt-tip-page .mt-tip-card .mt-tip-input input{
  padding-left:40px;
}

.mt-tip-page .mt-tip-card .mt-tip-hint{
  margin-top:8px;
  font-size:12px;
  color:#9ca3af;
  display:flex;
  align-items:center;
  gap:8px;
}

.mt-tip-page .mt-tip-card .mt-tip-note{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.mt-tip-page .mt-tip-card .mt-tip-note i{
  margin-top:2px;
  color:#9ca3af;
}

.mt-tip-page .mt-tip-tabs{
  display:flex;
  gap:10px;
  justify-content:center;
  margin:14px 0 18px;
}

.mt-tip-page .mt-tip-tabs .mt-tab{
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.85);
  color:#111827;
  transition:all .2s ease;
}

.mt-tip-page .mt-tip-tabs .mt-tab:hover{
  transform:translateY(-1px);
  border-color:rgba(56,189,248,.7);
}

.mt-tip-page .mt-tip-tabs .mt-tab.is-active{
  background:#e0f2fe;
  border-color:#38bdf8;
  color:#0369a1;
}

.mt-checkout{ max-width:520px; margin:0 auto; }
.mt-checkout .mt-checkout-amount{
  font-size:56px; font-weight:800; text-align:center;
  letter-spacing:-1px; margin:6px 0 18px;
}

.mt-checkout #payment-element{
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius:14px;
  padding:14px;
}

.mt-checkout .mt-checkout-row{
  display:flex; gap:10px; align-items:flex-start;
  margin:14px 0 0;
  font-size:14px; color:#111;
  user-select:none;
}

.mt-checkout .mt-checkout-row input{
  margin-top:3px;
  width:16px; height:16px;
}

.mt-checkout .mt-checkout-row a{ color:#111; text-decoration:underline; }
.mt-checkout .mt-checkout-row i{ opacity:.55; margin-left:auto; margin-top:2px; }

.mt-checkout .mt-checkout-btn{
  width:100%;
  margin-top:16px;
  padding:14px 16px;
  border:0;
  border-radius:10px;
  font-weight:700;
  background:#b7f0c0; /* disabled-ish green */
  color:#fff;
  cursor:not-allowed;
  transition:.15s ease;
}

.mt-checkout .mt-checkout-btn.is-enabled{
  background:#7FE29A; /* your screenshot-ish green */
  cursor:pointer;
}

.mt-checkout .mt-checkout-btn.is-enabled:hover{ filter:brightness(.97); }

.mt-checkout .mt-checkout-error{
  margin-top:12px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(220,38,38,.25);
  background:rgba(220,38,38,.06);
  color:#991b1b;
  font-size:13px;
}
/* Real Estate MVP */
.re-topbar a { color: #243447; text-decoration: none; }
.re-topbar a:hover { text-decoration: underline; }

.re-hero {
  background: radial-gradient(circle at top right, #d7ecff, #eef5fb 40%, #f8fbff 80%);
}

.re-hero h1 {
  font-size: 2.1rem;
  margin-bottom: 0.4rem;
}

.re-search-card {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid #dce5ef;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.re-card {
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid #e5e9ef;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.04);
}

.re-card:hover {
  transform: translateY(-2px);
  transition: .15s ease;
}

.re-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.re-price { font-weight: 700; color: #0f5132; }
.re-price-lg { font-size: 1.75rem; font-weight: 700; color: #0f5132; }
.re-price-lg small { font-size: .95rem; color: #6c757d; font-weight: 500; }
.re-title { font-weight: 600; margin-top: 4px; }
.re-sub { color: #6c757d; font-size: .9rem; }
.re-map-placeholder {
  min-height: 180px;
  background: #f6f8fb;
  border: 1px dashed #c5d4e6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #506176;
  padding: 16px;
}

.re-list-view .re-card {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.re-list-view .re-card img {
  height: 100%;
  min-height: 180px;
}

@media (max-width: 767px) {
  .re-hero h1 { font-size: 1.55rem; }
  .re-list-view .re-card {
    grid-template-columns: 1fr;
  }
}
