.vsuh{
  display:grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items:start;
  min-height: 70vh;
  padding: 28px 0 10px;
}

.vsuh-sidebar{
  position: sticky;
  top: 110px;
  border: 1px solid #ece7e2;
  background: #fffdfa;
  border-radius: 24px;
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.vsuh-user{
  display:flex;
  align-items:center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #efe9e3;
}

.vsuh-avatar{
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 50%;
  overflow: hidden;
  background: #f2ece7;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}

.vsuh-avatar img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.vsuh-avatar span{
  font-size: 1.25rem;
  font-weight: 800;
  color: #2b211d;
}

.vsuh-user-name{
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1f1714;
  word-break: break-word;
}

.vsuh-user-role{
  margin-top: 4px;
  font-size: .85rem;
  color: #7b6f68;
}

.vsuh-nav{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.vsuh-nav-item{
  display:block;
  padding: 11px 14px;
  border-radius: 14px;
  text-decoration:none;
  color:#2b211d;
  font-weight: 600;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.vsuh-nav-item:hover{
  background:#f5efea;
  color:#111;
  transform: translateY(-1px);
}

.vsuh-nav-item.is-active{
  background:#1f1714;
  color:#fff;
}

.vsuh-main{
  min-width: 0;
}

.vsuh-dashboard{
  display:flex;
  flex-direction:column;
  gap: 24px;
}

.vsuh-hero-card{
  display:grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 20px;
  align-items:center;
  padding: 28px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fffaf6 0%, #f8f1ea 100%);
  border: 1px solid #ede3db;
  box-shadow: 0 14px 34px rgba(31,23,20,.05);
}

.vsuh-hero-eyebrow{
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #8b7a70;
  margin-bottom: 10px;
}

.vsuh-hero-title{
  font-size:1.8rem;
  line-height:1.25;
  font-weight:700;
  margin:0 0 6px 0;
}

.vsuh-hero-text{
  margin: 0;
  max-width: 760px;
  font-size: 1.06rem;
  line-height: 1.6;
  color: #5e524b;
}

.vsuh-hero-side{
  justify-self:end;
  width: 100%;
  max-width: 220px;
  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(31,23,20,.08);
}

.vsuh-profile-label{
  margin-bottom: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #8b7a70;
}

.vsuh-profile-state-value{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
}

.vsuh-state-starter{
  background:#f4efe9;
  color:#6b5c53;
}

.vsuh-state-growing{
  background:#efe7ff;
  color:#5d3ea8;
}

.vsuh-state-rich{
  background:#e7f6ee;
  color:#1f7a4c;
}

.vsuh-stats-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vsuh-stat-card{
  padding: 22px 20px;
  border-radius: 22px;
  background:#fff;
  border: 1px solid #eee7e1;
  box-shadow: 0 8px 24px rgba(0,0,0,.035);
}

.vsuh-stat-num{
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  font-weight: 800;
  color:#1f1714;
  margin-bottom: 10px;
}

.vsuh-stat-label{
  font-size: .98rem;
  color:#655a53;
  line-height: 1.35;
  font-weight: 600;
}

.vsuh-section{
  padding: 24px 24px;
  border-radius: 24px;
  background:#fff;
  border: 1px solid #eee7e1;
  box-shadow: 0 8px 24px rgba(0,0,0,.03);
}

.vsuh-section-head{
  margin-bottom: 18px;
}

.vsuh-section-head h2{
  margin: 0 0 6px;
  font-size: 1.6rem;
  line-height: 1.15;
  color:#1f1714;
}

.vsuh-section-head p{
  margin:0;
  color:#7a6e67;
  line-height:1.5;
}

.vsuh-quick-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vsuh-quick-card{
  display:block;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid #efe7e1;
  background:#fffdfa;
  text-decoration:none;
  color:#1f1714;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.vsuh-quick-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.05);
  border-color:#e4d8cf;
}

.vsuh-quick-title{
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.vsuh-quick-meta{
  font-size: .93rem;
  line-height: 1.5;
  color:#726760;
}

.vsuh-guard{
  max-width: 720px;
  margin: 30px auto;
  padding: 28px;
  border-radius: 24px;
  background: #fffdfa;
  border: 1px solid #eee5dd;
  box-shadow: 0 10px 28px rgba(0,0,0,.04);
}

.vsuh-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 700;
}

.vsuh-btn--primary{
  background:#1f1714;
  color:#fff;
}

@media (max-width: 1024px){
  .vsuh{
    grid-template-columns: 1fr;
  }

  .vsuh-sidebar{
    position: static;
  }

  .vsuh-hero-card{
    grid-template-columns: 1fr;
  }

  .vsuh-hero-side{
    justify-self:start;
    max-width:none;
  }

  .vsuh-stats-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .vsuh{
    gap: 20px;
    padding-top: 20px;
  }

  .vsuh-sidebar{
    padding: 18px 16px;
    border-radius: 20px;
  }

  .vsuh-hero-card{
    padding: 22px 18px;
    border-radius: 22px;
  }

  .vsuh-section{
    padding: 20px 16px;
    border-radius: 20px;
  }

  .vsuh-stats-grid,
  .vsuh-quick-grid{
    grid-template-columns: 1fr;
  }

  .vsuh-main{
    min-width: 0;
  }
}
/* ---------------------------------------
   Dashboard smart: briefing + summary + brands
---------------------------------------- */

.vsuh-section--briefing{
  background: linear-gradient(135deg, #fffaf6 0%, #f8f1ea 100%);
}

.vsuh-briefing-box{
  padding: 22px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(31,23,20,.08);
  box-shadow: 0 10px 26px rgba(31,23,20,.04);
}

.vsuh-briefing-box p{
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.7;
  color: #4f443e;
}

.vsuh-summary-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}

@media (max-width: 1024px){
  .vsuh-summary-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .vsuh-summary-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:14px;
  }
}

.vsuh-summary-card{
  display:block;
  overflow:hidden;
  border-radius: 22px;
  text-decoration:none;
  background:#fff;
  border: 1px solid #eee7e1;
  box-shadow: 0 8px 24px rgba(0,0,0,.035);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.vsuh-summary-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  border-color:#e4d8cf;
}

.vsuh-summary-media{
  position: relative;
  width:100%;
  aspect-ratio: 3 / 4;
  overflow:hidden;
  border-radius:14px 14px 0 0;
  background:#f6f3ef;
}

.vsuh-summary-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.vsuh-summary-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  padding: 20px;
  text-align:center;
  color:#6f645d;
  font-weight:700;
  background:#f7f2ed;
}

.vsuh-summary-body{
  padding: 18px 18px 20px;
}

.vsuh-summary-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background:#f4efe9;
  color:#6c6058;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.vsuh-summary-title,
.vsuh-wishlist-title,
.vsuh-saved-title{
  margin:0;
  font-size:1.06rem;
  line-height:1.4;

  color:#1f1714;
  font-weight:700;

  letter-spacing:0.03em;
  text-wrap:balance;

  text-rendering:optimizeLegibility;
}
.vsuh-brand-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vsuh-brand-card{
  display:grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items:center;
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid #eee7e1;
  background:#fffdfa;
  text-decoration:none;
  box-shadow: 0 8px 24px rgba(0,0,0,.03);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.vsuh-brand-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.05);
  border-color:#e4d8cf;
}

.vsuh-brand-media{
  width: 104px;
  height: 104px;
  border-radius: 20px;
  overflow:hidden;
  background:#fff;
  border: 1px solid #efe7e1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.vsuh-brand-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}

.vsuh-brand-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  padding: 10px;
  text-align:center;
  color:#6f645d;
  font-weight:700;
  background:#f7f2ed;
}

.vsuh-brand-body{
  min-width:0;
}

.vsuh-brand-title{
  margin:0;
  font-size: 1.08rem;
  line-height: 1.3;
  color:#1f1714;
  font-weight: 800;
}

.vsuh-section--stats .vsuh-stats-grid{
  margin-top: 0;
}

@media (max-width: 1024px){
  .vsuh-summary-grid,
  .vsuh-brand-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .vsuh-briefing-box{
    padding: 18px 16px;
    border-radius: 18px;
  }

  .vsuh-summary-body{
    padding: 16px 16px 18px;
  }

  .vsuh-brand-card{
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 16px;
    border-radius: 18px;
  }

  .vsuh-brand-media{
    width: 88px;
    height: 88px;
    border-radius: 16px;
  }
}
.vsuh-dashboard-actions{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:16px;
  flex-wrap:wrap;
}

.vsuh-shake-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid #1f1714;
  background:#1f1714;
  color:#fff;
  font-weight:700;
  cursor:pointer;
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

.vsuh-shake-btn:hover:not(:disabled){
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(31,23,20,.12);
}

.vsuh-shake-btn:disabled{
  opacity:.55;
  cursor:not-allowed;
}

.vsuh-shake-btn.is-loading{
  opacity:.7;
}

.vsuh-shake-meta{
  color:#766a63;
  font-size:.94rem;
  line-height:1.5;
}

.vsuh-summary-card--shop img{
  object-position:center top;
}
.vsuh-briefing-text p{
  margin: 0 0 14px;
}

.vsuh-briefing-text p:last-child{
  margin-bottom: 0;
}
.vsuh-empty-state{
  padding: 28px 22px;
  border-radius: 22px;
  background:#fffdfa;
  border:1px solid #eee7e1;
}

.vsuh-empty-state h2{
  margin:0 0 10px;
  font-size:1.35rem;
  line-height:1.2;
  color:#1f1714;
}

.vsuh-empty-state p{
  margin:0;
  color:#70655e;
  line-height:1.6;
}

.vsuh-wishlist-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.vsuh-wishlist-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border-radius: 22px;
  text-decoration:none;
  background:#fff;
  border:1px solid #eee7e1;
  box-shadow:0 8px 24px rgba(0,0,0,.035);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.vsuh-wishlist-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.06);
  border-color:#e4d8cf;
}

.vsuh-wishlist-media{
  position:relative;
  width:100%;
  aspect-ratio: 3 / 4;
  overflow:hidden;
  background:#f7f4f0;
}

.vsuh-wishlist-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  padding:18px;
}

.vsuh-wishlist-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  color:#6f645d;
  font-weight:700;
}

.vsuh-wishlist-body{
  padding:16px 16px 18px;
}

.vsuh-wishlist-title{
  margin:0;
  font-size:1rem;
  line-height:1.4;

  color:#1f1714;
  font-weight:700;

  letter-spacing:0.02em;
  text-wrap:balance;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

@media (max-width: 1200px){
  .vsuh-wishlist-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px){
  .vsuh-wishlist-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:14px;
  }

  .vsuh-wishlist-body{
    padding:14px 14px 16px;
  }
}

.vsuh-wishlist-card{
  position:relative;
}

.vsuh-wishlist-card__link{
  display:flex;
  flex-direction:column;
  height:100%;
  text-decoration:none;
  color:inherit;
}

.vsuh-wishlist-heart{
  position:absolute;
  top:12px;
  right:12px;
  z-index:3;
  width:40px;
  height:40px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  box-shadow:0 8px 18px rgba(0,0,0,.08);
  color:#1f1714;
  font-size:1.05rem;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.vsuh-wishlist-heart:hover{
  transform:scale(1.06);
  box-shadow:0 12px 22px rgba(0,0,0,.12);
}

.vsuh-wishlist-heart.is-active{
  color:#1f1714;
}

.vsuh-wishlist-card.is-removing{
  opacity:.45;
  transform:scale(.985);
  transition:opacity .2s ease, transform .2s ease;
}
.vsuh-wishlist-heart.is-removing{
  animation: vsuh-heart-pop .25s ease forwards;
}

@keyframes vsuh-heart-pop{
  0%{ transform:scale(1); opacity:1; }
  50%{ transform:scale(1.4); }
  100%{ transform:scale(.6); opacity:0; }
}
.vsuh-wishlist-card.is-removing{
  opacity:0;
  transform:scale(.95);
  transition:.2s ease;
}
.vsuh-toast{
  position:fixed;
  left:50%;
  bottom:28px;
  transform:translateX(-50%) translateY(12px);
  z-index:9999;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 16px;
  border-radius:999px;
  background:#1f1714;
  color:#fff;
  font-size:.95rem;
  font-weight:700;
  line-height:1.2;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
}

.vsuh-toast.is-visible{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

.vsuh-wishlist-share-bar{
  margin-top:18px;
}

.vsuh-share-panel{
  margin-top:18px;
  padding:20px;
  border-radius:22px;
  background:#fffdfa;
  border:1px solid #eee7e1;
}

.vsuh-share-panel__inner{
  display:flex;
  flex-direction:column;
  gap:16px;
}

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

.vsuh-share-field span{
  font-size:.95rem;
  font-weight:700;
  color:#1f1714;
}

.vsuh-share-field input,
.vsuh-share-field textarea{
  width:100%;
  border:1px solid #ded6cf;
  border-radius:16px;
  padding:12px 14px;
  font:inherit;
  color:#1f1714;
  background:#fff;
  box-sizing:border-box;
}

.vsuh-share-field textarea{
  resize:vertical;
  min-height:110px;
}

.vsuh-share-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.vsuh-share-meta{
  color:#766a63;
  font-size:.92rem;
  line-height:1.5;
}
.vsuh-share-panel{
  opacity:1;
  transform:translateY(0);
  transition:opacity .22s ease, transform .22s ease;
}

.vsuh-share-panel.is-open{
  opacity:1;
  transform:translateY(0);
}

.vsuh-share-panel.is-closing{
  opacity:0;
  transform:translateY(-6px);
}
.vsuh-saved-tabs{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.vsuh-saved-tab{
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid #ddd3cb;
  background:#fff;
  color:#1f1714;
  font-weight:700;
  cursor:pointer;
}

.vsuh-saved-tab.is-active{
  background:#1f1714;
  color:#fff;
  border-color:#1f1714;
}

.vsuh-saved-grid{
  display:grid;
  gap:20px;
}

.vsuh-saved-grid--shops{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.vsuh-saved-grid--brands{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.vsuh-saved-card{
  position:relative;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border-radius:22px;
  text-decoration:none;
  background:#fff;
  border:1px solid #eee7e1;
  box-shadow:0 8px 24px rgba(0,0,0,.035);
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.vsuh-saved-card.is-removing{
  opacity:.45;
  transform:scale(.985);
}

.vsuh-saved-card__link{
  display:flex;
  flex-direction:column;
  height:100%;
  text-decoration:none;
  color:inherit;
}

.vsuh-saved-heart{
  position:absolute;
  top:12px;
  right:12px;
  z-index:3;
  width:40px;
  height:40px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  box-shadow:0 8px 18px rgba(0,0,0,.08);
  color:#e11d48;
  font-size:1.05rem;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.vsuh-saved-media{
  position:relative;
  width:100%;
  aspect-ratio: 4 / 3;
  overflow:hidden;
  background:#f7f4f0;
}

.vsuh-saved-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.vsuh-saved-media--brand img{
  object-fit:contain;
  padding:20px;
  background:#fff;
}

.vsuh-saved-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  color:#6f645d;
  font-weight:700;
}

.vsuh-saved-body{
  padding:16px 16px 18px;
}

.vsuh-saved-title{
  margin:0;
  font-size:1rem;
  line-height:1.4;
  color:#1f1714;
  font-weight:800;
}

@media (max-width: 1200px){
  .vsuh-saved-grid--shops{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .vsuh-saved-grid--brands{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px){
  .vsuh-saved-grid--shops,
  .vsuh-saved-grid--brands{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
  }
}
.vsuh-profile-layout{
  display:grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap:28px;
  align-items:start;
}

.vsuh-profile-avatar-box{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.vsuh-profile-avatar-preview{
  width:180px;
  height:180px;
  border-radius:28px;
  overflow:hidden;
  background:#f6f1eb;
  border:1px solid #ece3db;
  display:flex;
  align-items:center;
  justify-content:center;
}

.vsuh-profile-avatar-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.vsuh-profile-avatar-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.vsuh-profile-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

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

.vsuh-profile-field label{
  font-size:.95rem;
  font-weight:700;
  color:#1f1714;
}

.vsuh-profile-field input,
.vsuh-profile-field textarea,
.vsuh-profile-field select{
  width:100%;
  border:1px solid #ded6cf;
  border-radius:16px;
  padding:12px 14px;
  font:inherit;
  color:#1f1714;
  background:#fff;
  box-sizing:border-box;
}

.vsuh-profile-field textarea{
  min-height:130px;
  resize:vertical;
}

.vsuh-profile-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.vsuh-profile-meta{
  color:#766a63;
  font-size:.92rem;
  line-height:1.5;
}

@media (max-width: 767px){
  .vsuh-profile-layout{
    grid-template-columns: 1fr;
    gap:22px;
  }

  .vsuh-profile-avatar-preview{
    width:160px;
    height:160px;
  }
}
.vsuh-security-layout{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:22px;
}

.vsuh-security-card{
  padding:22px;
  border-radius:22px;
  background:#fffdfa;
  border:1px solid #eee7e1;
}

.vsuh-security-card__title{
  margin:0 0 8px;
  font-size:1.2rem;
  line-height:1.2;
  color:#1f1714;
}

.vsuh-security-card__text{
  margin:0 0 18px;
  color:#70655e;
  line-height:1.6;
}

.vsuh-security-readonly input,
.vsuh-security-field input{
  width:100%;
  border:1px solid #ded6cf;
  border-radius:16px;
  padding:12px 14px;
  font:inherit;
  color:#1f1714;
  background:#fff;
  box-sizing:border-box;
}

.vsuh-security-field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:14px;
}

.vsuh-security-field label{
  font-size:.95rem;
  font-weight:700;
  color:#1f1714;
}

.vsuh-security-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:8px;
}

.vsuh-security-meta{
  color:#766a63;
  font-size:.92rem;
  line-height:1.5;
}

@media (max-width: 767px){
  .vsuh-security-layout{
    grid-template-columns: 1fr;
  }
}
.vsuh-password-rules{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:10px;
  padding:14px 14px;
  border-radius:16px;
  background:#fffdfa;
  border:1px solid #eee7e1;
}

.vsuh-password-rule{
  font-size:.92rem;
  line-height:1.45;
  color:#8a7d74;
  position:relative;
  padding-left:22px;
}

.vsuh-password-rule::before{
  content:'•';
  position:absolute;
  left:0;
  top:0;
  color:#c7b9ae;
  font-size:1rem;
  line-height:1.2;
}

.vsuh-password-rule.is-valid{
  color:#1f1714;
  font-weight:600;
}

.vsuh-password-rule.is-valid::before{
  content:'✓';
  color:#1f1714;
}
.vsuh-password-wrap{
  position:relative;
}

.vsuh-password-wrap input{
  padding-right:96px;
}

.vsuh-password-toggle{
  position:absolute;
  top:50%;
  right:10px;
  transform:translateY(-50%);
  min-height:34px;
  padding:0 12px;
  border:none;
  border-radius:999px;
  background:#f4efe9;
  color:#1f1714;
  font-size:.86rem;
  font-weight:700;
  cursor:pointer;
  line-height:1;
}

.vsuh-password-toggle:hover{
  background:#ebe3dc;
}
.vsuh-messages-layout{
  display:grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap:22px;
}

.vsuh-messages-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.vsuh-message-item{
  width:100%;
  text-align:left;
  padding:16px;
  border:1px solid #eee7e1;
  background:#fffdfa;
  border-radius:18px;
  cursor:pointer;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.vsuh-message-item:hover{
  border-color:#ddd0c6;
  transform:translateY(-1px);
}

.vsuh-message-item.is-active{
  border-color:#1f1714;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
}

.vsuh-message-item__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}

.vsuh-message-status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:26px;
  padding:4px 10px;
  border-radius:999px;
  background:#f4efe9;
  color:#5c514b;
  font-size:.78rem;
  font-weight:700;
  text-transform:capitalize;
}

.vsuh-message-status--new{ background:#f6efe7; }
.vsuh-message-status--read{ background:#f1efe9; }
.vsuh-message-status--replied{ background:#ecefe8; }
.vsuh-message-status--archived{ background:#f2f2f2; }
.vsuh-message-status--spam{ background:#f8ecec; }

.vsuh-message-date{
  font-size:.8rem;
  color:#8a7d74;
}

.vsuh-message-shop{
  font-size:1rem;
  font-weight:800;
  color:#1f1714;
  margin-bottom:6px;
}

.vsuh-message-preview{
  color:#5f544d;
  line-height:1.55;
  font-size:.95rem;
}

.vsuh-message-detail{
  padding:22px;
  border-radius:22px;
  background:#fffdfa;
  border:1px solid #eee7e1;
}

.vsuh-message-detail__head{
  margin-bottom:18px;
}

.vsuh-message-detail__meta{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.vsuh-message-detail__shop{
  margin:0 0 8px;
  font-size:1.4rem;
  line-height:1.2;
  color:#1f1714;
}

.vsuh-message-detail__shoplink{
  margin:0;
}

.vsuh-message-detail__shoplink a{
  color:#1f1714;
  font-weight:700;
  text-decoration:none;
}

.vsuh-message-detail__from{
  margin-bottom:18px;
  color:#5f544d;
  line-height:1.55;
}

.vsuh-message-detail__body{
  color:#1f1714;
  line-height:1.7;
}

.vsuh-message-detail__body p{
  margin:0 0 14px;
}

.vsuh-message-detail__body p:last-child{
  margin-bottom:0;
}

@media (max-width: 1024px){
  .vsuh-messages-layout{
    grid-template-columns: 1fr;
  }
}

.vsuh-nav-item--logout{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(31,23,20,.10);
  color: #9f2f24;
  font-weight: 700;
}

.vsuh-nav-item--logout:hover{
  background: #fff4f2;
  color: #7f231b;
}