/* =========================================================
   SAM PROFILE INTELLIGENCE — ACTION UI
========================================================= */

.sam-list-item{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  border-radius:22px;
  border:1px solid rgba(196,143,86,.18);
  background:
    radial-gradient(circle at top right,rgba(196,143,86,.08),transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035);
}

.sam-list-title{
  color:var(--sam-text,#f5eee5);
  font-size:14px;
  font-weight:950;
  line-height:1.35;
  margin-bottom:5px;
}

.sam-list-sub{
  color:var(--sam-text-soft,#a9a09a);
  font-size:12px;
  font-weight:650;
  line-height:1.65;
  max-width:720px;
}

.sam-action-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex-wrap:wrap;
  flex-shrink:0;
}

.sam-mini-btn,
.sam-score-action-btn{
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(196,143,86,.30);
  background:rgba(196,143,86,.10);
  color:var(--sam-gold-soft,#e2b577);
  font-size:11px;
  font-weight:950;
  letter-spacing:.02em;
  cursor:pointer;
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    color .22s ease,
    box-shadow .22s ease;
}

.sam-mini-btn:hover,
.sam-score-action-btn:hover{
  transform:translateY(-2px);
  border-color:rgba(196,143,86,.65);
  background:linear-gradient(135deg,var(--sam-gold,#C48F56),var(--sam-gold-dark,#8b5a2e));
  color:#120b05;
  box-shadow:0 14px 36px rgba(196,143,86,.18);
}

.sam-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:0 11px;
  border-radius:999px;
  font-size:11px;
  font-weight:950;
  white-space:nowrap;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.07);
  color:var(--sam-text-soft,#a9a09a);
}

.sam-chip.gold{
  background:rgba(196,143,86,.10);
  color:var(--sam-gold-soft,#e2b577);
  border-color:rgba(196,143,86,.34);
}

.sam-chip.green{
  background:rgba(34,197,94,.12);
  color:#8ef0b2;
  border-color:rgba(34,197,94,.24);
}

.sam-chip.blue{
  background:rgba(196,143,86,.10);
  color:var(--sam-gold-soft,#e2b577);
  border-color:rgba(196,143,86,.34);
}

.sam-chip.gray{
  background:rgba(255,255,255,.07);
  color:var(--sam-text-soft,#a9a09a);
  border-color:rgba(255,255,255,.10);
}

.sam-btn{
  min-height:44px;
  padding:0 20px;
  border-radius:999px;
  border:1px solid rgba(196,143,86,.24);
  background:rgba(255,255,255,.04);
  color:var(--sam-text,#f5eee5);
  font-size:13px;
  font-weight:950;
  letter-spacing:.04em;
  cursor:pointer;
  transition:all .22s ease;
}

.sam-btn:hover{
  transform:translateY(-2px);
  border-color:rgba(196,143,86,.60);
  color:var(--sam-gold-soft,#e2b577);
}

.sam-btn.gold{
  background:linear-gradient(135deg,var(--sam-gold,#C48F56),var(--sam-gold-dark,#8b5a2e));
  color:#120b05;
  border-color:rgba(255,255,255,.12);
  box-shadow:0 16px 42px rgba(196,143,86,.22);
}

.sam-btn.gold:hover{
  color:#120b05;
  box-shadow:0 20px 52px rgba(196,143,86,.28);
}

@media (max-width:767px){
  .sam-list-item{
    flex-direction:column;
    padding:16px;
  }

  .sam-action-right{
    width:100%;
    justify-content:flex-start;
  }

  .sam-mini-btn,
  .sam-score-action-btn{
    width:auto;
  }
}

.sam-next-item .sam-action-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-shrink:0;
}

.sam-next-item{
  align-items:center !important;
}

.sam-list-item{
  align-items:center !important;
}

.sam-list-item .sam-list-sub{
  max-width:520px;
}

@media (max-width:767px){
  .sam-next-item .sam-action-right{
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
  }
}

.sam-booking-compact.is-enabled #sam-status-booking-dot{
  background:#22c55e !important;
  box-shadow:0 0 16px rgba(34,197,94,.45) !important;
}

.sam-booking-compact.is-disabled #sam-status-booking-dot{
  background:#ef4444 !important;
  box-shadow:0 0 16px rgba(239,68,68,.38) !important;
}

.sam-booking-compact.is-enabled .sam-toggle-help{
  color:var(--sam-text-soft,#a9a09a) !important;
}

.sam-booking-compact.is-enabled .sam-toggle-help::after{
  content:"";
}