.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--stone);
  margin-bottom: 28px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
}

.tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  border: none;
  background: transparent;
  font-family: inherit;
  position: relative;
  min-height: 52px;
}

.tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--gold);
  transition: transform var(--transition);
  border-radius: 2px 2px 0 0;
}

.tab:hover {
  color: var(--text-primary);
  background: var(--marble-light);
}

.tab.active {
  color: var(--gold-800);
  font-weight: 700;
}

.tab.active::after { transform: translateX(-50%) scaleX(1); }

.tab svg { opacity: 0.6; }
.tab.active svg { opacity: 1; color: var(--gold); }

.tab-content {
  animation: tabIn 0.3s var(--ease-luxury);
}

@keyframes tabIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
