.account-page{
padding:40px 0;
}

.account-title{
margin-bottom:30px;
}

.account-layout{
display:grid;
grid-template-columns:220px 1fr;
gap:40px;
}

.account-menu{
display:flex;
flex-direction:column;
gap:10px;
}

.account-menu a{
padding:10px 14px;
border-radius:8px;
text-decoration:none;
color:#aaa;
border:1px solid transparent;
}

.account-menu a:hover{
border-color:#333;
}
.account-menu a.active{
background:#111;
color:#fff;
}

.account-content{
display:flex;
flex-direction:column;
gap:30px;
}

.account-welcome h2{
margin-bottom:8px;
}

.account-cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.account-card{
border:1px solid #333;
padding:20px;
border-radius:10px;
background:#0f0f0f;
display:flex;
flex-direction:column;
gap:12px;
}


.order-layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
margin-top:30px;
}

.order-main{
display:flex;
flex-direction:column;
gap:20px;
}

.order-sidebar{
display:flex;
flex-direction:column;
gap:20px;
}

.order-box{
border:1px solid #333;
border-radius:10px;
padding:20px;
background:#0f0f0f;
}

.order-items{
display:flex;
flex-direction:column;
gap:14px;
}

.order-item{
display:flex;
justify-content:space-between;
align-items:center;
border-bottom:1px solid #222;
padding-bottom:10px;
}

.order-item-name{
font-weight:600;
}

.order-summary p{
display:flex;
justify-content:space-between;
margin-bottom:8px;
}

.order-total{
font-weight:700;
font-size:18px;
}

.order-status{
padding:8px 14px;
display:inline-block;
border-radius:6px;
background:#222;
}

.orders-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.orders-empty{
  min-height:320px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:14px;
  padding:40px 24px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  background:rgba(255,255,255,0.02);
}

.orders-empty-icon{
  font-size:42px;
  line-height:1;
}

.orders-empty h2{
  margin:0;
  font-size:1.8rem;
  color:#fff;
}

.orders-empty p{
  margin:0;
  max-width:480px;
  color:rgba(255,255,255,0.72);
  line-height:1.6;
}

.account-form-card{
  padding:24px;
}

.account-form-card h2{
  margin:0 0 8px;
  color:#fff;
}

.account-form-copy{
  margin:0 0 24px;
  color:rgba(255,255,255,0.72);
}

.account-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.form-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-field label{
  font-size:.95rem;
  color:#fff;
  font-weight:600;
}

.form-field input{
  height:48px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.03);
  color:#fff;
  padding:0 14px;
  outline:none;
}

.form-field input:focus{
  border-color:rgba(255,255,255,0.28);
}

.form-field input:disabled{
  opacity:.7;
  cursor:not-allowed;
}

.form-actions{
  display:flex;
  justify-content:flex-start;
}

.form-message{
  padding:14px 16px;
  border-radius:12px;
  font-size:.95rem;
}

.form-message.success{
  background:rgba(34,197,94,0.12);
  border:1px solid rgba(34,197,94,0.25);
  color:#86efac;
}

.form-message.error{
  background:rgba(239,68,68,0.12);
  border:1px solid rgba(239,68,68,0.25);
  color:#fca5a5;
}

@media (max-width: 768px){
  .form-row{
    grid-template-columns:1fr;
  }
}

.account-form-card {
  padding: 24px;
}