:root{
  --bg:#1a1612;
  --bg-2:#2a2218;
  --surface:#ffffff;
  --border:rgba(255,255,255,0.08);
  --text:#1a1612;
  --text-light:rgba(255,255,255,0.92);
  --text-mute:rgba(255,255,255,0.55);
  --accent:#F5C518;
  --accent-2:#FFD54A;
  --male:#2196f3;
  --female:#e91e63;
  --shadow:0 20px 60px rgba(0,0,0,0.5);
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{min-height:100%}
body{
  font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",sans-serif;
  background:var(--bg);color:var(--text-light);
  position:relative;overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
body.page-app{background:#0f0d0a}
button{font-family:inherit;cursor:pointer}
input,textarea,select{font-family:inherit}

/* ===== 登录页 ===== */
.hero-bg{
  position:fixed;inset:0;z-index:-2;
  background:
    radial-gradient(ellipse at 50% 25%, #3a2e1f 0%, transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(245,197,24,0.08) 0%, transparent 50%),
    linear-gradient(180deg,#1a1612 0%,#0e0c08 100%);
}
.hero-bg::after{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 15% 70%, rgba(255,255,255,0.04) 0%, transparent 25%),
    radial-gradient(circle at 75% 35%, rgba(245,197,24,0.06) 0%, transparent 20%);
  pointer-events:none;
}
.auth-brand{padding:calc(env(safe-area-inset-top) + 20px) 20px 0;position:relative;z-index:5}
.brand-row{
  display:flex;align-items:center;gap:12px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(12px);
  padding:10px 14px;border-radius:14px;max-width:480px;
}
.brand-logo{
  width:44px;height:44px;border-radius:12px;
  background:linear-gradient(135deg,#F5C518,#FFD54A);
  display:flex;align-items:center;justify-content:center;
  font-size:22px;flex-shrink:0;
  box-shadow:0 4px 14px rgba(245,197,24,0.4);
}
.brand-name{font-size:17px;font-weight:600;flex:1}
.contact-btn{
  background:transparent;border:1.5px solid var(--accent);
  color:var(--accent);padding:6px 14px;border-radius:999px;
  font-size:13px;font-weight:500;white-space:nowrap;
}
.contact-btn:hover{background:rgba(245,197,24,0.12)}
.auth-hero{padding:36px 20px 8px;position:relative;z-index:5}
.company-tag{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  padding:6px 14px;border-radius:999px;
  font-size:12px;color:var(--text-mute);margin-bottom:20px;
}
.company-tag .dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--accent);box-shadow:0 0 8px var(--accent);
}
.hero-title{
  font-size:40px;font-weight:700;color:var(--text-light);
  letter-spacing:1px;margin-bottom:4px;
  text-shadow:0 2px 16px rgba(0,0,0,0.5);
}
.hero-sub{
  font-size:48px;font-weight:800;
  background:linear-gradient(135deg,#F5C518,#FFD54A,#FFB300);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
  letter-spacing:3px;margin-bottom:18px;
  filter:drop-shadow(0 0 18px rgba(245,197,24,0.28));
}
.hero-desc{font-size:14px;color:var(--text-mute);line-height:1.75;max-width:480px}
.auth-card{
  margin:24px 20px 60px;
  background:var(--surface);border-radius:20px;
  padding:30px 24px;color:var(--text);
  box-shadow:var(--shadow);position:relative;z-index:5;
}
.card-title{text-align:center;font-size:22px;font-weight:700;margin-bottom:24px;color:#222}
.hero-slogan{
  text-align:center;font-weight:600;
  font-size:clamp(15px,4.2vw,20px);letter-spacing:3px;line-height:1.6;
  margin:18px 0 14px;
  background:linear-gradient(135deg,#F5C518,#FFD54A,#FFB300);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:drop-shadow(0 0 8px rgba(245,197,24,0.18));
}
.field{margin-bottom:16px}
.field label{display:block;font-size:13px;color:#666;margin-bottom:8px;font-weight:500}
.field input{
  width:100%;padding:14px 16px;background:#f3f3f3;
  border:none;border-radius:12px;font-size:15px;color:var(--text);outline:none;
  transition:background .2s;
}
.field input:focus{background:#e8e8e8}
.field input::placeholder{color:#aaa}
.btn{border:none;border-radius:12px;font-size:16px;font-weight:600;cursor:pointer;transition:transform .1s,box-shadow .2s}
.btn-yellow{
  width:100%;padding:15px;margin-top:6px;
  background:linear-gradient(135deg,#F5C518,#FFD54A);
  color:#1a1612;
  box-shadow:0 6px 20px rgba(245,197,24,0.45);
}
.btn-yellow:hover{transform:translateY(-1px);box-shadow:0 8px 26px rgba(245,197,24,0.55)}
.btn-yellow:active{transform:translateY(0)}
.msg{margin-top:14px;text-align:center;font-size:13px;min-height:18px}
.msg.err{color:#e53935}.msg.ok{color:#43a047}
.hint{
  margin-top:20px;padding-top:18px;
  border-top:1px dashed #eee;text-align:center;
  font-size:12px;color:#999;line-height:1.6;
}

/* ===== 主页（参考小柠檬风采展风格） ===== */
.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(15,13,10,0.96);backdrop-filter:blur(20px);
  display:flex;align-items:center;justify-content:space-between;
  padding:8px;border-bottom:1px solid rgba(255,255,255,0.06);
}
.tb-btn{
  background:none;border:none;color:#fff;
  width:40px;height:40px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;cursor:pointer;
  font-size:20px;
}
.tb-btn:hover{background:rgba(255,255,255,0.08)}
.tb-title{font-size:16px;font-weight:600;color:#fff;letter-spacing:1px;margin:0}
.tb-search{
  flex:1;height:38px;padding:0 18px;border-radius:19px;
  font-size:14px;gap:8px;justify-content:flex-start;
  background:rgba(255,255,255,0.06);border:1px solid rgba(245,197,24,0.5);
  color:#F5C518;letter-spacing:1px;
}

.search-bar{
  background:rgba(15,13,10,0.98);
  padding:8px 14px 12px;border-bottom:1px solid rgba(255,255,255,0.06);
}
.search-inner{
  display:flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.08);border-radius:10px;padding:8px 12px;
}
.search-inner input{
  flex:1;background:none;border:none;outline:none;color:#fff;font-size:14px;
}
.search-inner input::placeholder{color:rgba(255,255,255,0.4)}
.search-close{
  background:none;border:none;color:rgba(255,255,255,0.6);font-size:20px;cursor:pointer;padding:0;line-height:1;
}

.brand-strip{padding:10px 14px 4px}
.brand-inner{
  display:flex;align-items:center;gap:10px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;padding:10px 12px;
}
.brand-inner .brand-logo{
  width:36px;height:36px;border-radius:11px;
  background:linear-gradient(135deg,#F5C518,#FFD54A);
  display:flex;align-items:center;justify-content:center;font-size:19px;flex-shrink:0;
}
.brand-inner .brand-name{flex:1;font-size:15px;font-weight:600;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.brand-actions{display:flex;align-items:center;gap:6px;flex-shrink:0}
.user-pill{
  font-size:11px;color:rgba(255,255,255,0.55);
  padding:4px 8px;background:rgba(255,255,255,0.06);border-radius:999px;white-space:nowrap;
}
.brand-add,.brand-exit{
  border:none;border-radius:8px;padding:6px 10px;
  font-size:12px;font-weight:600;cursor:pointer;
}
.brand-add{background:linear-gradient(135deg,#F5C518,#FFD54A);color:#1a1612}
.brand-add:hover{filter:brightness(1.05)}
.brand-exit{background:transparent;border:1px solid rgba(255,255,255,0.15);color:#fff}
.brand-exit:hover{background:rgba(255,255,255,0.06)}

/* 管理员工具条（独立显眼横条） */
.admin-tool-strip{
  display:flex;gap:10px;justify-content:center;flex-wrap:wrap;
  padding:10px 16px;border-top:1px solid rgba(245,197,24,0.25);
  background:rgba(245,197,24,0.07);
}
.ts-btn{
  font-size:13px;font-weight:700;padding:9px 16px;border-radius:999px;cursor:pointer;
  border:1px solid rgba(245,197,24,0.7);background:transparent;color:#F5C518;
}
.ts-btn.solid{background:linear-gradient(135deg,#F5C518,#FFD54A);color:#1a1612;border:none}
.ts-btn:hover{filter:brightness(1.06)}
@media(max-width:420px){
  .admin-tool-strip{padding:8px 10px}
  .ts-btn{font-size:12px;padding:8px 12px}
}

.filter-bar{
  display:flex;gap:8px;padding:10px 14px 14px;
  overflow-x:auto;-webkit-overflow-scrolling:touch;
}
.filter-bar::-webkit-scrollbar{display:none}
.filter-chip{
  border:none;border-radius:10px;
  padding:8px 14px;font-size:13px;font-weight:600;cursor:pointer;
  display:inline-flex;align-items:center;gap:4px;white-space:nowrap;
  transition:transform .15s;
}
.filter-chip.active{
  background:linear-gradient(135deg,#F5C518,#FFD54A);color:#1a1612;
}
.filter-chip:not(.active){background:#fff;color:#1a1612}
.filter-chip:not(.active):hover{background:#f0f0f0}
.filter-chip .caret{font-size:10px;opacity:0.7}

.wall{
  padding:0 12px 80px;
  display:grid;grid-template-columns:repeat(2,1fr);gap:10px;
}

/* 客服微信底部条（访客可见） */
.wechat-bar{
  position:fixed;left:0;right:0;bottom:0;z-index:40;
  display:flex;flex-direction:column;align-items:center;gap:8px;
  padding:12px 16px 16px;
  background:linear-gradient(90deg,#2a2218,#3a2e1f);
  border-top:1px solid rgba(245,197,24,0.35);
  box-shadow:0 -6px 20px rgba(0,0,0,0.4);
}
.wechat-bar .wx-title{color:#f3e6c0;font-size:14px;font-weight:600}
.wechat-bar .wx-qrs{display:flex;gap:18px;justify-content:center;flex-wrap:wrap}
.wechat-bar .wx-qr{display:flex;flex-direction:column;align-items:center;gap:5px}
.wechat-bar .wx-qr img{
  width:96px;height:96px;border-radius:10px;background:#fff;
  padding:5px;object-fit:contain;box-shadow:0 4px 12px rgba(0,0,0,0.35);
}
.wechat-bar .wx-qr span{color:rgba(255,255,255,0.72);font-size:12px}
.tip{color:#999;font-size:12px;line-height:1.6;margin-top:10px}
.guest-card{
  background:rgba(255,255,255,0.03);
  border-radius:14px;overflow:hidden;cursor:pointer;
  position:relative;
  transition:transform .15s,box-shadow .15s;
}
.guest-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,0.5)}
.guest-photo{
  width:100%;aspect-ratio:3/4;position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.guest-photo.male{background:linear-gradient(135deg,#1e3a5f,#0e1c2f)}
.guest-photo.female{background:linear-gradient(135deg,#5f1e3a,#2f0e1c)}
.guest-photo img{width:100%;height:100%;object-fit:cover;display:block}
.guest-photo .init{
  font-size:60px;font-weight:700;color:rgba(255,255,255,0.85);
}
.watermark{
  position:absolute;left:0;right:0;top:50%;transform:translateY(-50%);
  background:rgba(230,50,90,0.85);color:#fff;
  padding:7px 0;text-align:center;
  font-size:13px;font-weight:700;letter-spacing:3px;
  text-shadow:0 1px 4px rgba(0,0,0,0.4);
  pointer-events:none;
}
.gender-chip{
  position:absolute;top:8px;left:8px;
  width:28px;height:28px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:700;color:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,0.3);
}
.gender-chip.male{background:rgba(33,150,243,0.92)}
.gender-chip.female{background:rgba(233,30,99,0.92)}
.guest-info{
  padding:8px 10px;background:#fff;color:#1a1612;
  display:flex;align-items:center;gap:4px;
  font-size:12px;
}
.guest-info::before{content:"📍";font-size:11px;margin-right:2px}
.guest-info .city{font-weight:600}
.guest-info .area{color:#666}
.guest-info .wealth-badge{
  margin-left:6px;background:#F5C518;color:#1a1a1a;
  font-weight:700;font-size:11px;line-height:1;
  padding:3px 7px;border-radius:6px;letter-spacing:.5px;
}
.guest-info .cup-badge{
  margin-left:6px;background:rgba(245,197,24,0.16);color:#F5C518;
  font-weight:700;font-size:11px;line-height:1;
  padding:3px 7px;border-radius:6px;letter-spacing:.5px;
}
.guest-info .attr-badge{
  margin-left:6px;background:#ff5b7f;color:#fff;
  font-weight:700;font-size:11px;line-height:1;
  padding:3px 7px;border-radius:6px;letter-spacing:.5px;
}
.empty{
  grid-column:1/-1;text-align:center;
  color:rgba(255,255,255,0.4);padding:60px 20px;font-size:14px;
}

/* ===== 弹窗 ===== */
.overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,0.7);backdrop-filter:blur(8px);
  display:none;align-items:center;justify-content:center;
  z-index:100;padding:20px;
}
.overlay.show{display:flex}
.modal{
  background:#fff;border-radius:20px;width:100%;max-width:520px;
  max-height:88vh;overflow:hidden;display:flex;flex-direction:column;
  color:var(--text);box-shadow:0 24px 60px rgba(0,0,0,0.6);
}
.modal-head{
  padding:18px 24px;border-bottom:1px solid #f0f0f0;
  display:flex;justify-content:space-between;align-items:center;
}
.modal-head h3{font-size:18px}
.modal-close{background:none;border:none;font-size:24px;cursor:pointer;color:#999;line-height:1}
.modal-body{padding:22px 24px;overflow-y:auto}
.modal-body .field label{color:#555}
.modal-body .field input,
.modal-body .field select,
.modal-body .field textarea{
  width:100%;background:#f3f3f3;border:none;border-radius:10px;
  padding:12px 14px;font-size:14px;color:var(--text);outline:none;
}
.modal-body .field textarea{resize:vertical}
.form-actions{display:flex;gap:10px;margin-top:18px}
.form-actions .btn{flex:1;padding:12px;width:auto}
.form-actions .btn-ghost{background:#f3f3f3;color:#555;border:none}
.form-actions .btn-yellow{margin-top:0}
.link-danger{background:none;border:none;color:#e53935;margin-top:14px;cursor:pointer;font-size:13px}
#detailHead{
  background:linear-gradient(135deg,#2a2218,#1a1612);
  color:#fff;padding:24px;
  border-bottom:none;display:flex;gap:18px;align-items:center;
}
#detailHead .avatar.lg{
  width:88px;height:88px;border-radius:16px;
  background:rgba(255,255,255,0.06);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;flex-shrink:0;
}
#detailHead h3{color:#fff;font-size:22px;margin-bottom:4px}
#detailHead .sub{color:rgba(255,255,255,0.6);font-size:13px}
#detailHead .modal-close{color:#fff;font-size:26px;margin-left:0}
#detailHead > div[style*="flex:1"]{flex:1}
#detailHead #editBtn{
  background:var(--accent);color:#1a1612;
  border:none;border-radius:8px;padding:6px 14px;
  font-size:13px;font-weight:600;cursor:pointer;margin-right:8px;
}
.info-row{
  display:flex;gap:10px;font-size:14px;
  padding:10px 0;border-bottom:1px dashed #f0f0f0;
}
.info-row:last-of-type{border-bottom:none}
.info-row .k{color:#999;width:84px;flex:none;font-size:13px}
.info-row .v{color:#222;flex:1}
.info-row .wealth-val{color:#C99700;font-weight:700}
.section-title{font-size:13px;font-weight:700;color:#888;margin:18px 0 8px}
#detailBody .tag{background:#fff5d6;color:#a07900}

@media(max-width:720px){
  .hero-title{font-size:30px}
  .hero-sub{font-size:36px;letter-spacing:2px}
}
@media(max-width:420px){
  .wall{grid-template-columns:repeat(2,1fr);gap:8px;padding:0 10px 60px}
  .brand-actions .user-pill{display:none}
}

/* ===== 后台管理页 ===== */
.admin-page{background:#0f0d0a;min-height:100vh}
.admin-toolbar{
  display:flex;align-items:center;gap:12px;padding:14px 16px;
}
.admin-toolbar .brand-add{
  flex:0 0 auto;padding:10px 18px;border-radius:10px;font-size:14px;font-weight:600;
  display:inline-block;cursor:pointer;border:none;
}
.admin-toolbar .brand-add.ghost{
  background:transparent;color:#F5C518;border:1px solid rgba(245,197,24,0.6);
}
.admin-toolbar .brand-add.ghost:hover{background:rgba(245,197,24,0.12)}
.admin-search{
  flex:1;display:flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;padding:0 14px;color:rgba(255,255,255,0.5);
}
.admin-search input{
  flex:1;background:none;border:none;outline:none;
  padding:11px 0;font-size:14px;color:#fff;
}
.admin-list{padding:0 16px 80px;display:flex;flex-direction:column;gap:10px}
.admin-row{
  display:flex;align-items:center;gap:14px;
  background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.06);
  border-radius:14px;padding:12px 14px;
}
.row-photo{
  width:52px;height:52px;border-radius:12px;flex-shrink:0;
  object-fit:cover;background:rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;font-weight:700;color:#fff;
}
.row-main{flex:1;min-width:0}
.row-name{font-size:15px;font-weight:600;color:#fff;display:flex;align-items:center;gap:8px}
.row-sub{font-size:12.5px;color:rgba(255,255,255,0.55);margin-top:3px;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.row-tag{font-size:11px;padding:1px 7px;border-radius:8px;font-weight:600}
.row-tag.male{background:rgba(33,150,243,0.18);color:#64b5f6}
.row-tag.female{background:rgba(233,30,99,0.18);color:#f06292}
.row-tag.admin{background:rgba(245,197,24,0.18);color:#F5C518}
.row-tag.viewer{background:rgba(255,255,255,0.1);color:#cfcfcf}
.row-tag.expired{background:rgba(229,57,53,0.2);color:#ff8a80}
.mini-note{font-size:12px;color:#888;align-self:center}
.account-list .admin-row{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.06)}
.account-row{padding:16px 18px}
.account-row .row-name{font-size:16px}
.account-row .row-photo.init{width:56px;height:56px;font-size:22px}
.acct-stats{font-size:13px;color:#F5C518;padding:2px 2px 10px;font-weight:600}
.row-sub2{font-size:11.5px;color:rgba(255,255,255,0.4);margin-top:3px;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.row-tag.ok{background:rgba(76,175,80,0.18);color:#81c784}
.row-tag.off{background:rgba(255,255,255,0.1);color:#bdbdbd}
.field-row{display:flex;gap:10px}
.field-row .field{flex:1;margin-bottom:0}
.row-actions{display:flex;gap:8px;flex-shrink:0}
.mini-btn{
  background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);
  color:#fff;border-radius:8px;padding:6px 12px;font-size:13px;cursor:pointer;
}
.mini-btn:hover{background:rgba(255,255,255,0.14)}
.mini-btn.danger{color:#ff8a80;border-color:rgba(255,138,128,0.3)}
.upload-row{display:flex;align-items:center;gap:10px}
.upload-row input[type=file]{
  flex:1;color:#555;font-size:13px;background:#f3f3f3;border:none;
  border-radius:10px;padding:10px 12px;max-width:60%;
}
.upload-hint{font-size:12px;color:#999}
.photo-preview{margin-top:10px}
.photo-preview img{width:80px;height:80px;border-radius:10px;object-fit:cover;border:1px solid #eee}

/* ===== 移动端 / H5 适配（手机浏览器、微信内打开） ===== */
@media (max-width: 768px){
  /* 弹窗手机上铺满全屏，方便单手操作 */
  .overlay{padding:0}
  .modal{
    max-width:100%;width:100%;
    max-height:100vh;height:100vh;
    border-radius:0;
  }
  .modal-head{padding:16px;padding-top:calc(16px + env(safe-area-inset-top))}
  .modal-body{padding:18px 16px;padding-bottom:calc(20px + env(safe-area-inset-bottom))}
  /* 账号表单双列堆叠为单列 */
  .field-row{flex-direction:column;gap:0}
  .field-row .field{margin-bottom:16px}
  /* 图片/二维码上传行堆叠 */
  .upload-row{flex-direction:column;align-items:stretch;gap:8px}
  .upload-row input[type=file]{max-width:100%}
  /* 后台工具条自动换行 */
  .admin-toolbar{flex-wrap:wrap;gap:10px}
  /* 详情弹窗头适配 */
  #detailHead{flex-wrap:wrap;padding:20px 16px;padding-top:calc(20px + env(safe-area-inset-top))}
  #detailHead .avatar.lg{width:72px;height:72px}
  #detailHead h3{font-size:20px}
  /* 按钮触摸友好：最小可点击高度 44px，居中 */
  .btn,.ts-btn,.brand-add,.brand-exit,.mini-btn,.contact-btn,.modal-close{
    min-height:44px;display:flex;align-items:center;justify-content:center;
  }
  .tb-btn{width:44px;height:44px}
}
@media (max-width: 480px){
  .hero-title{font-size:26px}
  .hero-sub{font-size:30px;letter-spacing:1px}
  .hero-desc{font-size:13px}
  .auth-card{margin:18px 14px 50px;padding:24px 18px}
  .card-title{font-size:20px}
  .brand-strip{padding:8px 12px 2px}
  .topbar{padding:6px 8px}
  .admin-list{padding:0 12px 96px}
  .admin-toolbar{padding:12px}
  .filter-bar{padding:8px 12px 12px}
  .guest-card:hover{transform:none}
  .wechat-bar .wx-qr img{width:84px;height:84px}
}
/* iPhone 安全区：底部客服条、顶部状态栏 */
.wechat-bar{padding-bottom:calc(16px + env(safe-area-inset-bottom))}

/* 你想找（可多选） */
.check-group{display:flex;flex-wrap:wrap;gap:8px;margin-top:6px}
.chk{display:inline-flex;align-items:center;gap:6px;padding:7px 14px;border:1px solid rgba(245,197,24,0.35);border-radius:999px;font-size:13px;color:#e8dcc0;cursor:pointer;user-select:none;background:rgba(255,255,255,0.03)}
.chk input{accent-color:#f5c518;width:15px;height:15px;cursor:pointer;margin:0}
.chk:has(input:checked){border-color:var(--accent);background:rgba(245,197,24,0.12);color:var(--accent)}
.look-badge{font-size:11px;color:#1a1612;background:linear-gradient(135deg,#f5c518,#ffd84d);padding:2px 8px;border-radius:999px;font-weight:700}
.look-tag{background:rgba(245,197,24,0.15);color:var(--accent);border:1px solid rgba(245,197,24,0.35)}