/* V43 Customer profile and header avatar */
.header-profile-link{
  margin-left:auto;
  width:42px;height:42px;
  display:none;
  align-items:center;justify-content:center;
  border-radius:50%;
  border:1px solid rgba(183,138,90,.5);
  background:rgba(10,9,8,.7);
  color:#d8a15f;
  text-decoration:none;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.25);
}
.header-profile-link.active{display:flex}
.header-profile-link img{
  width:100%;height:100%;object-fit:cover;
}
.header-profile-monogram{
  font:700 14px/1 system-ui,sans-serif;
  letter-spacing:.04em;
}
body.customer-signed-in .header-account-actions{display:none!important}

.profile-shell{
  min-height:100vh;
  padding:120px 6vw 80px;
  background:
    radial-gradient(circle at 80% 10%,rgba(183,138,90,.12),transparent 30%),
    #080808;
  color:#f4ede5;
}
.profile-wrap{width:min(980px,100%);margin:auto}
.profile-grid{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:20px;
}
.profile-card{
  border:1px solid rgba(183,138,90,.3);
  border-radius:24px;
  padding:24px;
  background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.012));
}
.profile-avatar-wrap{
  width:150px;height:150px;
  margin:0 auto 18px;
  position:relative;
}
.profile-avatar{
  width:100%;height:100%;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(183,138,90,.55);
  background:#14110e;
}
.profile-avatar-fallback{
  position:absolute;inset:0;
  display:grid;place-items:center;
  border-radius:50%;
  background:linear-gradient(145deg,#1c1712,#0d0c0b);
  color:#d8a15f;
  font:700 42px/1 system-ui,sans-serif;
}
.profile-upload-label{
  display:flex;
  justify-content:center;
  margin-top:12px;
}
.profile-upload-label span{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:40px;padding:9px 15px;
  border:1px solid rgba(183,138,90,.4);
  border-radius:999px;
  color:#e9dfd4;
  background:rgba(10,9,8,.5);
  font-size:12px;
}
.profile-upload-label input{display:none}
.profile-code{
  margin-top:16px;
  padding:16px;
  border-radius:16px;
  background:rgba(183,138,90,.1);
  border:1px solid rgba(183,138,90,.28);
  text-align:center;
}
.profile-code b{
  display:block;
  margin-top:6px;
  color:#d8a15f;
  font-family:ui-monospace,monospace;
  font-size:22px;
  letter-spacing:.07em;
}
.profile-form{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.profile-form label{display:grid;gap:7px;font-size:12px}
.profile-form .full{grid-column:1/-1}
.profile-input{
  width:100%;
  padding:14px 15px;
  border-radius:14px;
  border:1px solid rgba(183,138,90,.3);
  background:#0e0e0e;
  color:#fff;
}
.profile-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.profile-button{
  min-height:44px;padding:11px 17px;
  border:1px solid #b78a5a;
  border-radius:999px;
  background:#b78a5a;color:#090909;
  font-weight:750;
}
.profile-button.secondary{background:transparent;color:#eee5dc}
.profile-status{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(183,138,90,.25);
  color:#aaa299;
}
@media(max-width:800px){
  .profile-grid{grid-template-columns:1fr}
  .profile-form{grid-template-columns:1fr}
  .profile-form .full{grid-column:auto}
  .header-profile-link{width:39px;height:39px}
}
