.site-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
}

.site-header-actions .hotline-chip,
.site-header-actions .cart-button,
.site-header-actions .account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--accent);
  font-weight: 800;
  padding: 12px 16px;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(24, 32, 51, 0.04);
}

.site-header-actions .cart-button {
  background: #eef4ff;
  border-color: #d6e1ff;
  gap: 6px;
}

.site-header-actions .cart-button strong {
  color: var(--accent);
  font-weight: 800;
}

.site-header-actions .account-button {
  flex-direction: column;
  line-height: 1.05;
  text-align: center;
}

.site-header-actions .account-button small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header-actions {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.18fr 1fr;
    gap: 8px;
  }

  .site-header-actions .hotline-chip,
  .site-header-actions .cart-button,
  .site-header-actions .account-button {
    padding: 10px 8px;
  }
}

@media (max-width: 640px) {
  .site-header-actions .hotline-chip,
  .site-header-actions .cart-button,
  .site-header-actions .account-button {
    min-height: 52px;
    font-size: clamp(13px, 3.8vw, 16px);
  }

  .site-header-actions .cart-button {
    gap: 3px;
  }

  .site-header-actions .cart-button strong {
    font-size: clamp(12px, 3.6vw, 15px);
  }
}
