:root{
  --brand:#bc98e1;
  --brand-dark:#a07cc8;
  --brand-light:#ede5f8;
  --dark:#1a1a2e;
  --gray-bg:#f8f9fa;
  --text-muted:#5c626e;
  --hero-bg: radial-gradient(circle at 80% 50%, #e1ccff 0%, #ecdfff 40%, #f6f0ff 100%);
}

/* SECTION */
.merchant-container{
    margin-top: 80px !important;
  max-width:1200px;
  margin:auto;
  padding:60px 18px;
}

/* HEADER */
.merchant-header{
  text-align:center;
  margin-bottom:40px;
}

.merchant-header-title{
  font-size:42px;
  font-weight:900;
  line-height:1.2;
}

.merchant-header-title span{
  color:var(--brand-dark);
}

.merchant-header-text{
  color:var(--text-muted);
  margin-top:10px;
  font-size:15px;
}

/* GRID */
.merchant-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:22px;
}

/* LEFT CARD */
.merchant-card{
  background:#fff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

/* STEP */
.merchant-step{
  display:flex;
  gap:14px;
  padding:16px 0;
  border-bottom:1px solid #eee;
}

.merchant-step:last-child{
  border:none;
}

.merchant-step-icon{
  width:40px;
  height:40px;
  min-width:40px;
  border-radius:10px;
  background:var(--brand-light);
  color:var(--brand-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.merchant-step-title{
  font-size:17px;
  margin-bottom:4px;
}

.merchant-step-text{
  font-size:14px;
  color:var(--text-muted);
}

/* SUPPORT */
.merchant-support{
  background:#fff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  border-top:4px solid var(--brand);
}

.merchant-support-title{
  font-size:22px;
  margin-bottom:6px;
}

.merchant-support-text{
  font-size:14px;
  color:var(--text-muted);
  margin-bottom:16px;
}

/* BUTTON */
.merchant-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px;
  margin-bottom:10px;
  border-radius:10px;
  background:var(--brand);
  color:#fff;
  font-weight:700;
  border:none;
  cursor:pointer;
  width:100%;
  transition:0.3s;
  font-size:14px;
}

.merchant-btn:hover{
  background:var(--brand-dark);
}

/* INFO */
.merchant-info{
  margin-top:12px;
  font-size:13px;
  color:var(--text-muted);
  line-height:1.6;
  background:var(--gray-bg);
  padding:12px;
  border-radius:10px;
}

/* MODAL */
.merchant-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  justify-content:center;
  align-items:center;
  z-index:999;
  padding:15px;
}

.merchant-modal-box{
  background:#fff;
  width:100%;
  max-width:360px;
  border-radius:16px;
  padding:18px;
}

.merchant-modal-title{
  margin-bottom:12px;
  font-size:20px;
}

.merchant-modal-input{
  width:100%;
  padding:10px;
  margin-bottom:10px;
  border:1px solid #ddd;
  border-radius:8px;
  outline:none;
  font-size:14px;
}

.merchant-modal-actions{
  display:flex;
  gap:10px;
}

.merchant-close,
.merchant-submit{
  flex:1;
  padding:10px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
}

.merchant-close{
  background:#ddd;
}

.merchant-submit{
  background:var(--brand);
  color:#fff;
}

.merchant-submit:hover{
  background:var(--brand-dark);
}

/* RESPONSIVE */
@media(max-width:900px){
  .merchant-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .merchant-header-title{
    font-size:26px;
    max-width:260px;
    margin:auto;
  }
}