.account-page{
  max-width:1120px;
}

.account-hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:16px;
  margin:16px 0;
}

.account-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.13);
  border-radius:30px;
  padding:18px;
}

.account-card h1{
  font-size:clamp(46px,7vw,84px);
  line-height:.88;
  letter-spacing:-.07em;
  margin:10px 0 12px;
}

.account-card h2{
  font-size:clamp(32px,5vw,54px);
  line-height:.94;
  letter-spacing:-.055em;
  margin:0 0 12px;
}

.account-card p{
  color:#cfe8d5;
  font-size:17px;
  line-height:1.45;
}

.account-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:14px 0;
}

.account-quick{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:14px;
}

.account-quick button,
.account-quick a,
.account-btn{
  min-height:52px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.08);
  color:#f5fff7;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  text-decoration:none;
  font-weight:1000;
  padding:0 16px;
  cursor:pointer;
}

.account-btn.primary,
.account-quick .primary,
button.primary{
  background:#22c55e;
  border-color:#22c55e;
  color:#05210f;
}

.account-note{
  margin-top:12px;
  padding:12px 14px;
  border-radius:18px;
  background:rgba(34,197,94,.11);
  border:1px solid rgba(34,197,94,.28);
  color:#d8ffe3;
  font-weight:900;
}

.account-warning{
  background:rgba(245,158,11,.12);
  border-color:rgba(245,158,11,.32);
  color:#ffe8b8;
}

.account-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.account-card label{
  display:block;
  color:#d8ffe3;
  font-weight:1000;
  font-size:13px;
  margin:8px 0 5px;
}

.account-card input,
.account-card select,
.account-card textarea{
  width:100%;
  min-height:50px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(7,19,13,.58);
  color:#f5fff7;
  padding:12px 13px;
  font-size:16px;
}

.account-card textarea{
  min-height:92px;
}

.account-tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:14px 0;
}

.account-tab{
  min-height:42px;
  border-radius:999px;
  padding:0 13px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.08);
  color:#f5fff7;
  font-weight:1000;
  cursor:pointer;
}

.account-tab.active{
  background:#22c55e;
  border-color:#22c55e;
  color:#05210f;
}

.account-panel{
  display:none;
}

.account-panel.active{
  display:block;
}

.photo-drop{
  border:1px dashed rgba(34,197,94,.45);
  border-radius:24px;
  padding:14px;
  background:rgba(34,197,94,.08);
}

.photo-drop input{
  border-style:dashed;
}

.photo-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:12px;
}

.photo-item{
  border-radius:20px;
  overflow:hidden;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.13);
}

.photo-item img{
  width:100%;
  aspect-ratio:1.2/1;
  object-fit:cover;
  display:block;
  background:#102018;
}

.photo-item div{
  padding:9px;
  color:#d8ffe3;
  font-size:12px;
  font-weight:900;
}

.price-box{
  background:rgba(34,197,94,.10);
  border:1px solid rgba(34,197,94,.26);
  border-radius:20px;
  padding:13px;
  margin-top:10px;
}

.price-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:center;
  margin:8px 0;
}

.price-row strong{
  font-size:26px;
}

input[type=range]{
  accent-color:#22c55e;
}

.slot-list{
  display:grid;
  gap:8px;
  margin-top:10px;
}

.slot{
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.13);
  padding:10px 12px;
  color:#d8ffe3;
  font-weight:900;
}

.account-progress{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  margin-top:12px;
}

.account-progress div{
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.13);
  padding:10px;
  color:#cfe8d5;
  font-weight:900;
}

.account-progress strong{
  display:block;
  color:#f5fff7;
  font-size:20px;
}

@media(max-width:900px){
  .account-page{
    max-width:100%;
    padding:10px 10px 104px!important;
  }

  .account-hero,
  .account-grid,
  .account-form-grid,
  .account-quick,
  .photo-list,
  .account-progress{
    grid-template-columns:1fr;
  }

  .account-card{
    border-radius:22px;
    padding:14px;
  }

  .account-card h1{
    font-size:clamp(38px,13vw,54px);
  }

  .account-card h2{
    font-size:clamp(28px,9vw,38px);
  }

  .account-card input,
  .account-card select,
  .account-card textarea{
    min-height:48px;
    font-size:16px;
  }
}

/* Account tab finish repair */
.account-panel.active{
  display:block!important;
}
.account-panel:not(.active){
  display:none!important;
}
.account-tab{
  touch-action:manipulation;
}
@media(max-width:900px){
  .account-tabs{
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
  }
  .account-tab{
    min-height:46px!important;
    font-size:13px!important;
  }
}

/* Account tab finish repair */
.account-panel.active{
  display:block!important;
}
.account-panel:not(.active){
  display:none!important;
}
.account-tab{
  touch-action:manipulation;
}
@media(max-width:900px){
  .account-tabs{
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
  }
  .account-tab{
    min-height:46px!important;
    font-size:13px!important;
  }
}
